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.
- package/README.md +55 -0
- package/esm2022/geonetwork-ui.mjs +5 -0
- package/esm2022/index.mjs +24 -0
- package/esm2022/libs/api/metadata-converter/src/index.mjs +5 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +20 -0
- package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +19 -0
- package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +40 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +265 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +29 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +12 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +4 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +11 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +48 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +122 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +329 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +366 -0
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +300 -0
- package/esm2022/libs/api/repository/src/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +63 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +25 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +4 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +31 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +444 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +66 -0
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +69 -0
- package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +103 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +185 -0
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +23 -0
- package/esm2022/libs/api/repository/src/lib/metadata-language.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/repository-url.mjs +10 -0
- package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +9 -0
- package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/index.mjs +4 -0
- package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/index.mjs +5 -0
- package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +7 -0
- package/esm2022/libs/common/domain/src/lib/user.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +61 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +5 -0
- package/esm2022/libs/data-access/gn4/src/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +90 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +151 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +285 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +195 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +238 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +351 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +193 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +274 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +3105 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +156 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +780 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +132 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +190 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +576 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +150 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +412 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +145 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +420 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +182 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +405 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +533 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +343 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +258 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +41 -0
- package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +72 -0
- package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +6 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +33 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +110 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +23 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +39 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +21 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +22 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +32 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +24 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +9 -0
- package/esm2022/libs/feature/auth/src/index.mjs +2 -0
- package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +17 -0
- package/esm2022/libs/feature/catalog/src/index.mjs +8 -0
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +84 -0
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +81 -0
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +23 -0
- package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +2 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +28 -0
- package/esm2022/libs/feature/dataviz/src/index.mjs +7 -0
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +187 -0
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +68 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +36 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +31 -0
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +109 -0
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +147 -0
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +74 -0
- package/esm2022/libs/feature/editor/src/index.mjs +7 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +75 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +169 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +53 -0
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +60 -0
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +3 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +9 -0
- package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +24 -0
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +86 -0
- package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +87 -0
- package/esm2022/libs/feature/map/src/index.mjs +20 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +15 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +34 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +58 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +6 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +45 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +59 -0
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +17 -0
- package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +103 -0
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +26 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +27 -0
- package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +46 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +9 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +211 -0
- package/esm2022/libs/feature/map/src/lib/style/index.mjs +3 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +43 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +96 -0
- package/esm2022/libs/feature/map/src/lib/utils/index.mjs +4 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +180 -0
- package/esm2022/libs/feature/map/src/lib/utils/projections.mjs +2 -0
- package/esm2022/libs/feature/record/src/index.mjs +10 -0
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +54 -0
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +25 -0
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +52 -0
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +49 -0
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +106 -0
- package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +135 -0
- package/esm2022/libs/feature/record/src/lib/state/index.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +9 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +30 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +39 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +11 -0
- package/esm2022/libs/feature/router/src/index.mjs +2 -0
- package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +21 -0
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +10 -0
- package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +40 -0
- package/esm2022/libs/feature/router/src/lib/default/index.mjs +8 -0
- package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +3 -0
- package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +66 -0
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +46 -0
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +56 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +5 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +114 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +58 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +14 -0
- package/esm2022/libs/feature/search/src/index.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/constants.mjs +36 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +64 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +232 -0
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +104 -0
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +131 -0
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +42 -0
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +71 -0
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +44 -0
- package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +18 -0
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +33 -0
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +70 -0
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +53 -0
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +208 -0
- package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +28 -0
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +107 -0
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +286 -0
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +126 -0
- package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +27 -0
- package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +31 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +230 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +73 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +34 -0
- package/esm2022/libs/ui/catalog/src/index.mjs +6 -0
- package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +18 -0
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +46 -0
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +27 -0
- package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +40 -0
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +54 -0
- package/esm2022/libs/ui/dataviz/src/index.mjs +6 -0
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +165 -0
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +35 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +61 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +40 -0
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +19 -0
- package/esm2022/libs/ui/elements/src/index.mjs +21 -0
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +30 -0
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +82 -0
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +14 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +35 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +43 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +49 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +64 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +23 -0
- package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +54 -0
- package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +66 -0
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +18 -0
- package/esm2022/libs/ui/elements/src/lib/search-results-error/search-results-error.component.mjs +29 -0
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +92 -0
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +144 -0
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +20 -0
- package/esm2022/libs/ui/inputs/src/index.mjs +19 -0
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +126 -0
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +29 -0
- package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +78 -0
- package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +30 -0
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +36 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +190 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +176 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +49 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +10 -0
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +16 -0
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +40 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +149 -0
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +46 -0
- package/esm2022/libs/ui/layout/src/index.mjs +7 -0
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +64 -0
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +44 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +31 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +23 -0
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +80 -0
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +45 -0
- package/esm2022/libs/ui/map/src/index.mjs +4 -0
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +19 -0
- package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +40 -0
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +33 -0
- package/esm2022/libs/ui/search/src/index.mjs +21 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +125 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +64 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +48 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +23 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +50 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +25 -0
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +62 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +36 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +15 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +20 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +91 -0
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +17 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +27 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +30 -0
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +52 -0
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +130 -0
- package/esm2022/libs/ui/widgets/src/index.mjs +9 -0
- package/esm2022/libs/ui/widgets/src/lib/badge/badge.component.mjs +17 -0
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +14 -0
- package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +50 -0
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +44 -0
- package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +55 -0
- package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +82 -0
- package/esm2022/libs/util/app-config/src/index.mjs +4 -0
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +219 -0
- package/esm2022/libs/util/app-config/src/lib/constants.mjs +439 -0
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +160 -0
- package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +18 -0
- package/esm2022/libs/util/app-config/src/lib/model.mjs +2 -0
- package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +88 -0
- package/esm2022/libs/util/data-fetcher/src/index.mjs +5 -0
- package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +61 -0
- package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +22 -0
- package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +54 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +62 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +24 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +21 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +36 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +19 -0
- package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +93 -0
- package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +205 -0
- package/esm2022/libs/util/i18n/src/index.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +17 -0
- package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +14 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +64 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +31 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.loader.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.module.mjs +109 -0
- package/esm2022/libs/util/i18n/src/lib/testing/translations.model.mjs +6 -0
- package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +37 -0
- package/esm2022/libs/util/shared/src/index.mjs +7 -0
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/links/index.mjs +3 -0
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +60 -0
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +183 -0
- package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +34 -0
- package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +2 -0
- package/esm2022/libs/util/shared/src/lib/services/index.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +22 -0
- package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +42 -0
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +86 -0
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +19 -0
- package/esm2022/libs/util/shared/src/lib/utils/event.mjs +12 -0
- package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +21 -0
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -0
- package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +33 -0
- package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +14 -0
- package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +5 -0
- package/esm2022/libs/util/shared/src/lib/utils/url.mjs +18 -0
- package/esm2022/translations/de.json +270 -0
- package/esm2022/translations/en.json +289 -0
- package/esm2022/translations/es.json +289 -0
- package/esm2022/translations/fr.json +289 -0
- package/esm2022/translations/it.json +289 -0
- package/esm2022/translations/nl.json +289 -0
- package/esm2022/translations/pt.json +289 -0
- package/fesm2022/geonetwork-ui.mjs +27093 -0
- package/fesm2022/geonetwork-ui.mjs.map +1 -0
- package/geonetwork-ui.d.ts.map +1 -0
- package/index.d.ts +23 -0
- package/index.d.ts.map +1 -0
- package/index.ts +23 -0
- package/libs/api/metadata-converter/src/index.d.ts +5 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts +27 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +17 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +25 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +16 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +12 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +37 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +192 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +78 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +29 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +24 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +13 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +43 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -0
- package/libs/api/repository/src/index.d.ts +3 -0
- package/libs/api/repository/src/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +26 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +5 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +14 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts +4 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +11 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +66 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +3 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +20 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +24 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts +7 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +6 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +28 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +40 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +12 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts +3 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts.map +1 -0
- package/libs/api/repository/src/lib/repository-url.d.ts +3 -0
- package/libs/api/repository/src/lib/repository-url.d.ts.map +1 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts +10 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts +14 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/index.d.ts +4 -0
- package/libs/common/domain/src/lib/record/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts +111 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts +8 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts +44 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts +6 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/index.d.ts +5 -0
- package/libs/common/domain/src/lib/search/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts +21 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts +3 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/user.model.d.ts +11 -0
- package/libs/common/domain/src/lib/user.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts +3 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +61 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +5 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/index.d.ts +3 -0
- package/libs/data-access/gn4/src/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts +60 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +54 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +116 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +65 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +86 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +137 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +70 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +109 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +1433 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +313 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +64 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +284 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +196 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +213 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +172 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +246 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +144 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +97 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts +81 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts +6 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +26 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +30 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +27 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +38 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +110 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts +49 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +40 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +45 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts +9 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts.map +1 -0
- package/libs/feature/auth/src/index.d.ts +2 -0
- package/libs/feature/auth/src/index.d.ts.map +1 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts +8 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/index.d.ts +8 -0
- package/libs/feature/catalog/src/index.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +18 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +26 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +11 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +11 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +12 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +8 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +15 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/index.d.ts +7 -0
- package/libs/feature/dataviz/src/index.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +54 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +20 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +10 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +39 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +25 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -0
- package/libs/feature/editor/src/index.d.ts +7 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +31 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +44 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +17 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +20 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts +3 -0
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +10 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +8 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts +11 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +27 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts +33 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +1 -0
- package/libs/feature/map/src/index.d.ts +20 -0
- package/libs/feature/map/src/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +40 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +19 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +12 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +4 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +11 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +23 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/index.d.ts +2 -0
- package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts +9 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts +4 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +16 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +24 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +11 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +9 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +11 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +12 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +26 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +64 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +24 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/index.d.ts +3 -0
- package/libs/feature/map/src/lib/style/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +4 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts +24 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/index.d.ts +4 -0
- package/libs/feature/map/src/lib/utils/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +16 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +39 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts +2 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts.map +1 -0
- package/libs/feature/record/src/index.d.ts +10 -0
- package/libs/feature/record/src/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +22 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +16 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +8 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +13 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +13 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts +28 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +3 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +1 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +46 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/index.d.ts +3 -0
- package/libs/feature/record/src/lib/state/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +36 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +20 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +42 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +17 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +16 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -0
- package/libs/feature/router/src/index.d.ts +2 -0
- package/libs/feature/router/src/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +10 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/constants.d.ts +10 -0
- package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +12 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/index.d.ts +8 -0
- package/libs/feature/router/src/lib/default/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts +8 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts +17 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts +14 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +18 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts +10 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts +34 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +24 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +4 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -0
- package/libs/feature/search/src/index.d.ts +21 -0
- package/libs/feature/search/src/index.d.ts.map +1 -0
- package/libs/feature/search/src/lib/constants.d.ts +6 -0
- package/libs/feature/search/src/lib/constants.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +22 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts +11 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts +49 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +32 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts +31 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +22 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +35 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +19 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +9 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +16 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +32 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +22 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/actions.d.ts +162 -0
- package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +12 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/effects.d.ts +26 -0
- package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts +41 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts +52 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts +25 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +11 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +66 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +20 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +22 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -0
- package/libs/ui/catalog/src/index.d.ts +6 -0
- package/libs/ui/catalog/src/index.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +9 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +16 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +12 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +14 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +16 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -0
- package/libs/ui/dataviz/src/index.d.ts +6 -0
- package/libs/ui/dataviz/src/index.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +14 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +11 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +10 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -0
- package/libs/ui/elements/src/index.d.ts +21 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +9 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +24 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +7 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +13 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +32 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +16 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +17 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +28 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +35 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +10 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/index.d.ts +19 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +39 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +16 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts +33 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +14 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +46 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +40 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts +25 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts +27 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts +10 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +8 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +12 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +40 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -0
- package/libs/ui/layout/src/index.d.ts +7 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +19 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +18 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +13 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +10 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +37 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +15 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +4 -0
- package/libs/ui/map/src/index.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +10 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts +19 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts +13 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts.map +1 -0
- package/libs/ui/search/src/index.d.ts +21 -0
- package/libs/ui/search/src/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +44 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +26 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +19 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts +27 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts +13 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +5 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +2 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +12 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +29 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +18 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +10 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +23 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +8 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +13 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +18 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +25 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts +31 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -0
- package/libs/ui/widgets/src/index.d.ts +9 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +16 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts +21 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +22 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -0
- package/libs/util/app-config/src/index.d.ts +4 -0
- package/libs/util/app-config/src/index.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/app-config.d.ts +27 -0
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/constants.d.ts +2 -0
- package/libs/util/app-config/src/lib/constants.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts +10 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +10 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/model.d.ts +70 -0
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts +19 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/index.d.ts +5 -0
- package/libs/util/data-fetcher/src/index.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +22 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts +3 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts +67 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +16 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts +24 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts +26 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -0
- package/libs/util/i18n/src/index.d.ts +8 -0
- package/libs/util/i18n/src/index.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +6 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts +9 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +39 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +12 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts +13 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts +17 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts +131 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts +21 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +2 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts +12 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +1 -0
- package/libs/util/shared/src/index.d.ts +7 -0
- package/libs/util/shared/src/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts +11 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/index.d.ts +3 -0
- package/libs/util/shared/src/lib/links/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +18 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts +81 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +11 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts +2 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/index.d.ts +4 -0
- package/libs/util/shared/src/lib/services/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts +9 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts +16 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts +10 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts +10 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/event.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/event.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts +3 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +8 -0
- package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts +6 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts +5 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/url.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/url.d.ts.map +1 -0
- package/package.json +85 -0
- package/src/libs/api/metadata-converter/src/index.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +26 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +122 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +75 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +222 -0
- package/src/libs/api/metadata-converter/src/lib/function-utils.ts +171 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +94 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +403 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +52 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +21 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +54 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +203 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/search.model.ts +91 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +48 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +19 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +67 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +187 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +749 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +971 -0
- package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +382 -0
- package/src/libs/api/repository/src/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +79 -0
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -0
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +24 -0
- package/src/libs/api/repository/src/lib/gn4/auth/index.ts +3 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +32 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +533 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +116 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +162 -0
- package/src/libs/api/repository/src/lib/gn4/index.ts +6 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/index.ts +13 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +137 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +319 -0
- package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +22 -0
- package/src/libs/api/repository/src/lib/metadata-language.ts +3 -0
- package/src/libs/api/repository/src/lib/repository-url.ts +14 -0
- package/src/libs/common/domain/src/lib/dataviz-configuration.model.ts +19 -0
- package/src/libs/common/domain/src/lib/organizations.service.interface.ts +19 -0
- package/src/libs/common/domain/src/lib/record/contact.model.ts +38 -0
- package/src/libs/common/domain/src/lib/record/index.ts +3 -0
- package/src/libs/common/domain/src/lib/record/metadata.model.ts +188 -0
- package/src/libs/common/domain/src/lib/record/organization.model.ts +7 -0
- package/src/libs/common/domain/src/lib/records-repository.interface.ts +22 -0
- package/src/libs/common/domain/src/lib/search/aggregation.model.ts +52 -0
- package/src/libs/common/domain/src/lib/search/filter.model.ts +6 -0
- package/src/libs/common/domain/src/lib/search/index.ts +4 -0
- package/src/libs/common/domain/src/lib/search/search.model.ts +22 -0
- package/src/libs/common/domain/src/lib/search/sort-by.model.ts +8 -0
- package/src/libs/common/domain/src/lib/user.model.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +11 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-request.ts +26 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-response.ts +79 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.ts +1594 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +6 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +144 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1755 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-requests.ts +146 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.ts +445 -0
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57313 -0
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +80 -0
- package/src/libs/common/fixtures/src/lib/gn4/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +154 -0
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +7 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +71 -0
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +31 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +204 -0
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +8 -0
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +70 -0
- package/src/libs/common/fixtures/src/lib/search/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +35 -0
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +10 -0
- package/src/libs/common/fixtures/src/lib/utils/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/api.ts +11 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/config.api.service.ts +168 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/dataPublishing.api.service.ts +270 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/fileUpload.api.service.ts +734 -0
- package/src/libs/data-access/datafeeder/src/openapi/api.module.ts +46 -0
- package/src/libs/data-access/datafeeder/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/datafeeder/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/index.ts +5 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/analysisStatusEnum.api.model.ts +24 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/boundingBox.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/cRS.api.model.ts +25 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +41 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishRequest.api.model.ts +39 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishingStatus.api.model.ts +50 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +37 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/models.ts +13 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/property.api.model.ts +17 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishRequest.api.model.ts +16 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStatusEnum.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStepEnum.api.model.ts +42 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/uploadJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/datafeeder/src/spec.yaml +537 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/api.ts +3 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/dataviz.api.service.ts +488 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api.module.ts +44 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/createDatavizDto.api.model.ts +22 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/dataviz.api.model.ts +26 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/models.ts +2 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/fixtures/index.ts +2 -0
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +65 -0
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +5 -0
- package/src/libs/data-access/gn4/src/index.ts +2 -0
- package/src/libs/data-access/gn4/src/openapi/api/api.ts +89 -0
- package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +249 -0
- package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +603 -0
- package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +202 -0
- package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +362 -0
- package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +489 -0
- package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +794 -0
- package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +423 -0
- package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +611 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +8296 -0
- package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +272 -0
- package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +1963 -0
- package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +265 -0
- package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +198 -0
- package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +360 -0
- package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +1381 -0
- package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +256 -0
- package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +964 -0
- package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +242 -0
- package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +916 -0
- package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +333 -0
- package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +928 -0
- package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +1213 -0
- package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +741 -0
- package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +530 -0
- package/src/libs/data-access/gn4/src/openapi/api.module.ts +42 -0
- package/src/libs/data-access/gn4/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn4/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +56 -0
- package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +41 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +30 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +44 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/models.ts +109 -0
- package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.ts +58 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +57 -0
- package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +54 -0
- package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +31 -0
- package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +37 -0
- package/src/libs/data-access/gn4/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/spec.yaml +11305 -0
- package/src/libs/feature/auth/src/index.ts +1 -0
- package/src/libs/feature/auth/src/lib/feature-auth.module.ts +12 -0
- package/src/libs/feature/catalog/src/index.ts +7 -0
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +85 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +26 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +105 -0
- package/src/libs/feature/catalog/src/lib/records/records.service.ts +18 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +5 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +23 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.html +1 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +17 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +92 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.model.ts +24 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +28 -0
- package/src/libs/feature/catalog/src/lib/users/users.service.ts +12 -0
- package/src/libs/feature/dataviz/src/index.ts +6 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +62 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +232 -0
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +43 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.html +6 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +33 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +40 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.service.ts +30 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +17 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +156 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +208 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +22 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +90 -0
- package/src/libs/feature/editor/src/index.ts +6 -0
- package/src/libs/feature/editor/src/lib/components/configs/datepicker.config.ts +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +5 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +93 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +31 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +75 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +208 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +21 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +59 -0
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +35 -0
- package/src/libs/feature/editor/src/lib/models/index.ts +2 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +10 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +7 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.html +8 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.ts +23 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +107 -0
- package/src/libs/feature/editor/src/lib/services/wizard.service.ts +105 -0
- package/src/libs/feature/map/src/index.ts +19 -0
- package/src/libs/feature/map/src/lib/+state/map.actions.ts +32 -0
- package/src/libs/feature/map/src/lib/+state/map.effects.ts +7 -0
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +30 -0
- package/src/libs/feature/map/src/lib/+state/map.models.ts +9 -0
- package/src/libs/feature/map/src/lib/+state/map.reducer.ts +83 -0
- package/src/libs/feature/map/src/lib/+state/map.selectors.ts +10 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.css +4 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.html +6 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +44 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +23 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +75 -0
- package/src/libs/feature/map/src/lib/constant/index.ts +1 -0
- package/src/libs/feature/map/src/lib/constant/map-options.ts +17 -0
- package/src/libs/feature/map/src/lib/constant/style.constant.ts +18 -0
- package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +42 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +61 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +49 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.scss +0 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +17 -0
- package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +10 -0
- package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +13 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +26 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +57 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +51 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +80 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +232 -0
- package/src/libs/feature/map/src/lib/style/index.ts +2 -0
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +45 -0
- package/src/libs/feature/map/src/lib/style/map-style.service.ts +108 -0
- package/src/libs/feature/map/src/lib/utils/index.ts +3 -0
- package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +40 -0
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +242 -0
- package/src/libs/feature/map/src/lib/utils/projections.ts +1 -0
- package/src/libs/feature/record/src/index.ts +9 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +21 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +59 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +58 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.css +10 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +30 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +21 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +51 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.css +0 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +9 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +54 -0
- package/src/libs/feature/record/src/lib/feature-record.module.ts +62 -0
- package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +3 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +54 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +201 -0
- package/src/libs/feature/record/src/lib/state/index.ts +2 -0
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +35 -0
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +43 -0
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +106 -0
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +61 -0
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +36 -0
- package/src/libs/feature/router/src/index.ts +1 -0
- package/src/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.ts +34 -0
- package/src/libs/feature/router/src/lib/default/constants.ts +11 -0
- package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +23 -0
- package/src/libs/feature/router/src/lib/default/index.ts +7 -0
- package/src/libs/feature/router/src/lib/default/router.config.ts +11 -0
- package/src/libs/feature/router/src/lib/default/router.module.ts +50 -0
- package/src/libs/feature/router/src/lib/default/router.service.ts +39 -0
- package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +65 -0
- package/src/libs/feature/router/src/lib/default/state/router.actions.ts +15 -0
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +163 -0
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +80 -0
- package/src/libs/feature/router/src/lib/default/state/router.selectors.ts +17 -0
- package/src/libs/feature/search/src/index.ts +20 -0
- package/src/libs/feature/search/src/lib/constants.ts +40 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.css +0 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.html +7 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +83 -0
- package/src/libs/feature/search/src/lib/facets/facets.module.ts +12 -0
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +256 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.css +0 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +10 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +128 -0
- package/src/libs/feature/search/src/lib/feature-search.module.ts +83 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.css +0 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +11 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +60 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.css +0 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +10 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +79 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.css +0 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +45 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +4 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +10 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.html +7 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +29 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +0 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +58 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +86 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.html +7 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +55 -0
- package/src/libs/feature/search/src/lib/state/actions.ts +273 -0
- package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +17 -0
- package/src/libs/feature/search/src/lib/state/effects.ts +218 -0
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +29 -0
- package/src/libs/feature/search/src/lib/state/reducer.ts +340 -0
- package/src/libs/feature/search/src/lib/state/search.facade.ts +219 -0
- package/src/libs/feature/search/src/lib/state/selectors.ts +94 -0
- package/src/libs/feature/search/src/lib/utils/operators/search.operator.ts +40 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +120 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +315 -0
- package/src/libs/feature/search/src/lib/utils/service/search.service.ts +43 -0
- package/src/libs/ui/catalog/src/index.ts +5 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +21 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +12 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +9 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +51 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.css +13 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +40 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +25 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.html +17 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.ts +40 -0
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +33 -0
- package/src/libs/ui/dataviz/src/index.ts +5 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.css +0 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.html +3 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +222 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +43 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.css +3 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +20 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +27 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.css +32 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.html +40 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.ts +80 -0
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +40 -0
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +11 -0
- package/src/libs/ui/elements/src/index.ts +20 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +23 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +10 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +15 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.css +29 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +5 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.css +0 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +34 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.css +0 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +33 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +100 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +25 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +8 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +11 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +32 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +40 -0
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +38 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +105 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +47 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.css +3 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +27 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +84 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +4 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.html +55 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +50 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +33 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +68 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +30 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.css +30 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.html +35 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.ts +20 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +18 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +113 -0
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +85 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +11 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +16 -0
- package/src/libs/ui/inputs/src/index.ts +18 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +31 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +51 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +159 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.css +5 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.html +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +75 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +19 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +25 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.css +36 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.html +23 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +32 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +19 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +14 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +27 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +123 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +198 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +4 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +73 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +181 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.ts +5 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.html +27 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +68 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.model.ts +44 -0
- package/src/libs/ui/inputs/src/lib/form-field/index.ts +9 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +6 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +12 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +41 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +34 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +42 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +41 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +94 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +58 -0
- package/src/libs/ui/layout/src/index.ts +6 -0
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +59 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +20 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +16 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +50 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.css +0 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +31 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.css +12 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +22 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +21 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.css +0 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.html +16 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +109 -0
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +28 -0
- package/src/libs/ui/map/src/index.ts +3 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.css +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +21 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.html +15 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.ts +57 -0
- package/src/libs/ui/map/src/lib/ui-map.module.ts +19 -0
- package/src/libs/ui/search/src/index.ts +20 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +88 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +138 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +52 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +40 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +8 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +45 -0
- package/src/libs/ui/search/src/lib/facets/facets.model.ts +31 -0
- package/src/libs/ui/search/src/lib/facets/facets.module.ts +14 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +52 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/index.ts +1 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.css +0 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.html +22 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +25 -0
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +76 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.html +25 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.css +4 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +83 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +34 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +42 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.scss +3 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.css +3 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +77 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.html +40 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.html +23 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.css +7 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.html +150 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +93 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +10 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +10 -0
- package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +48 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.html +32 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +30 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.html +1 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +65 -0
- package/src/libs/ui/search/src/lib/ui-search.module.ts +79 -0
- package/src/libs/ui/widgets/src/index.ts +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.html +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.ts +11 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.html +83 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.css +20 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.html +5 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +16 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.css +33 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +23 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +51 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +12 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +44 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +22 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.html +13 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +55 -0
- package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +48 -0
- package/src/libs/util/app-config/src/index.ts +3 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +327 -0
- package/src/libs/util/app-config/src/lib/constants.ts +438 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +169 -0
- package/src/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.ts +20 -0
- package/src/libs/util/app-config/src/lib/model.ts +76 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +142 -0
- package/src/libs/util/data-fetcher/src/fixtures/sample.ts +80 -0
- package/src/libs/util/data-fetcher/src/index.ts +10 -0
- package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +71 -0
- package/src/libs/util/data-fetcher/src/lib/headers.ts +22 -0
- package/src/libs/util/data-fetcher/src/lib/model.ts +129 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +65 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base.ts +76 -0
- package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +52 -0
- package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +33 -0
- package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +29 -0
- package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +54 -0
- package/src/libs/util/data-fetcher/src/lib/readers/json.ts +28 -0
- package/src/libs/util/data-fetcher/src/lib/sql-utils.ts +115 -0
- package/src/libs/util/data-fetcher/src/lib/utils.ts +253 -0
- package/src/libs/util/i18n/src/index.ts +7 -0
- package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +18 -0
- package/src/libs/util/i18n/src/lib/file.translate.loader.ts +14 -0
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +72 -0
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +27 -0
- package/src/libs/util/i18n/src/lib/lang.service.ts +23 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.loader.ts +26 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.module.ts +235 -0
- package/src/libs/util/i18n/src/lib/testing/translations.model.ts +28 -0
- package/src/libs/util/i18n/src/lib/translate.loader.utils.ts +11 -0
- package/src/libs/util/i18n/src/lib/util-i18n.module.ts +26 -0
- package/src/libs/util/shared/src/index.ts +6 -0
- package/src/libs/util/shared/src/lib/image-fallback.directive.ts +19 -0
- package/src/libs/util/shared/src/lib/links/index.ts +2 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +55 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +200 -0
- package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +36 -0
- package/src/libs/util/shared/src/lib/pipes/index.ts +1 -0
- package/src/libs/util/shared/src/lib/services/index.ts +3 -0
- package/src/libs/util/shared/src/lib/services/log.service.ts +16 -0
- package/src/libs/util/shared/src/lib/services/proxy.service.ts +34 -0
- package/src/libs/util/shared/src/lib/services/theme.service.ts +143 -0
- package/src/libs/util/shared/src/lib/util-shared.module.ts +11 -0
- package/src/libs/util/shared/src/lib/utils/event.ts +12 -0
- package/src/libs/util/shared/src/lib/utils/geojson.ts +26 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +7 -0
- package/src/libs/util/shared/src/lib/utils/parse.ts +34 -0
- package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +3 -0
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +17 -0
- package/src/libs/util/shared/src/lib/utils/strip-html.ts +4 -0
- package/src/libs/util/shared/src/lib/utils/url.ts +20 -0
- package/style.css +4 -0
- package/tailwind.base.config.js +72 -0
- package/tailwind.base.css +25 -0
- package/translations/de.json +270 -0
- package/translations/en.json +289 -0
- package/translations/es.json +289 -0
- package/translations/fr.json +289 -0
- package/translations/it.json +289 -0
- package/translations/nl.json +289 -0
- package/translations/pt.json +289 -0
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { ScrollingModule } from '@angular/cdk/scrolling';
|
|
2
|
+
import { NgForOf } from '@angular/common';
|
|
3
|
+
import { ChangeDetectionStrategy, Component, ElementRef, EventEmitter, Input, Output, ViewChild, } from '@angular/core';
|
|
4
|
+
import { MatSort, MatSortModule } from '@angular/material/sort';
|
|
5
|
+
import { MatTableModule } from '@angular/material/table';
|
|
6
|
+
import { TableVirtualScrollDataSource, TableVirtualScrollModule, } from 'ng-table-virtual-scroll';
|
|
7
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "@angular/material/table";
|
|
10
|
+
import * as i2 from "@angular/material/sort";
|
|
11
|
+
import * as i3 from "ng-table-virtual-scroll";
|
|
12
|
+
import * as i4 from "@angular/cdk/scrolling";
|
|
13
|
+
import * as i5 from "@ngx-translate/core";
|
|
14
|
+
const rowIdPrefix = 'table-item-';
|
|
15
|
+
export class TableComponent {
|
|
16
|
+
set data(value) {
|
|
17
|
+
this.dataSource = new TableVirtualScrollDataSource(value);
|
|
18
|
+
this.dataSource.sort = this.sort;
|
|
19
|
+
this.properties =
|
|
20
|
+
Array.isArray(value) && value.length ? Object.keys(value[0]) : [];
|
|
21
|
+
this.count = value.length;
|
|
22
|
+
}
|
|
23
|
+
constructor(eltRef) {
|
|
24
|
+
this.eltRef = eltRef;
|
|
25
|
+
this.selected = new EventEmitter();
|
|
26
|
+
}
|
|
27
|
+
ngAfterViewInit() {
|
|
28
|
+
this.headerHeight =
|
|
29
|
+
this.eltRef.nativeElement.querySelector('thead').offsetHeight;
|
|
30
|
+
}
|
|
31
|
+
scrollToItem(itemId) {
|
|
32
|
+
const row = this.eltRef.nativeElement.querySelector(`#${this.getRowEltId(itemId)}`);
|
|
33
|
+
this.eltRef.nativeElement.scrollTop = row.offsetTop - this.headerHeight;
|
|
34
|
+
}
|
|
35
|
+
getRowEltId(id) {
|
|
36
|
+
return rowIdPrefix + id;
|
|
37
|
+
}
|
|
38
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TableComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
39
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: TableComponent, isStandalone: true, selector: "gn-ui-table", inputs: { data: "data", activeId: "activeId" }, outputs: { selected: "selected" }, viewQueries: [{ propertyName: "sort", first: true, predicate: MatSort, descendants: true, static: true }], ngImport: i0, template: "<div class=\"border border-gray-300 rounded-lg overflow-hidden bg-white h-full\">\n <cdk-virtual-scroll-viewport\n tvsItemSize=\"48\"\n headerHeight=\"56\"\n style=\"height: calc(100% - 37px)\"\n >\n <table mat-table [dataSource]=\"dataSource\" class=\"mat-elevation-z8\" matSort>\n <ng-container *ngFor=\"let prop of properties\" [matColumnDef]=\"prop\">\n <th\n mat-header-cell\n *matHeaderCellDef\n mat-sort-header\n class=\"text-sm text-black bg-white\"\n >\n {{ prop }}\n </th>\n <td\n mat-cell\n *matCellDef=\"let element\"\n class=\"whitespace-nowrap pr-1 truncate\"\n >\n {{ element[prop] }}\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"properties; sticky: true\"></tr>\n <tr\n [id]=\"getRowEltId(row.id)\"\n mat-row\n *matRowDef=\"let row; columns: properties\"\n (click)=\"selected.emit(row)\"\n [class.active]=\"row.id === activeId\"\n ></tr>\n </table>\n </cdk-virtual-scroll-viewport>\n <div class=\"text-gray-900 border-t border-gray-300 px-4 py-2 text-sm\">\n <span class=\"count font-extrabold text-primary\">{{ count }}</span\n > <span translate>table.object.count</span>.\n </div>\n</div>\n", styles: ["table{width:100%;background:white}th.mat-mdc-header-cell,td.mat-mdc-cell,td.mat-mdc-footer-cell{padding-right:20px}tr.mat-mdc-row,tr.mat-mdc-footer-row{height:36px}tr:hover{background:whitesmoke}tr.mat-mdc-header-row{height:48px}[mat-header-cell]{color:#0000008a;font-size:12px;font-weight:500}tr{cursor:pointer}.active .mat-mdc-cell{color:var(--color-primary)}\n"], dependencies: [{ kind: "ngmodule", type: MatTableModule }, { kind: "component", type: i1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i1.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i1.MatHeaderRowDef, selector: "[matHeaderRowDef]", inputs: ["matHeaderRowDef", "matHeaderRowDefSticky"] }, { kind: "directive", type: i1.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { kind: "directive", type: i1.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i1.MatRowDef, selector: "[matRowDef]", inputs: ["matRowDefColumns", "matRowDefWhen"] }, { kind: "directive", type: i1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "ngmodule", type: MatSortModule }, { kind: "directive", type: i2.MatSort, selector: "[matSort]", inputs: ["matSortDisabled", "matSortActive", "matSortStart", "matSortDirection", "matSortDisableClear"], outputs: ["matSortChange"], exportAs: ["matSort"] }, { kind: "component", type: i2.MatSortHeader, selector: "[mat-sort-header]", inputs: ["disabled", "mat-sort-header", "arrowPosition", "start", "sortActionDescription", "disableClear"], exportAs: ["matSortHeader"] }, { kind: "ngmodule", type: TableVirtualScrollModule }, { kind: "directive", type: i3.TableItemSizeDirective, selector: "cdk-virtual-scroll-viewport[tvsItemSize]", inputs: ["tvsItemSize", "headerEnabled", "headerHeight", "footerEnabled", "footerHeight", "bufferMultiplier"] }, { kind: "ngmodule", type: ScrollingModule }, { kind: "component", type: i4.CdkVirtualScrollViewport, selector: "cdk-virtual-scroll-viewport", inputs: ["orientation", "appendOnly"], outputs: ["scrolledIndexChange"] }, { kind: "directive", type: NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i5.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
40
|
+
}
|
|
41
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: TableComponent, decorators: [{
|
|
42
|
+
type: Component,
|
|
43
|
+
args: [{ standalone: true, imports: [
|
|
44
|
+
MatTableModule,
|
|
45
|
+
MatSortModule,
|
|
46
|
+
TableVirtualScrollModule,
|
|
47
|
+
ScrollingModule,
|
|
48
|
+
NgForOf,
|
|
49
|
+
TranslateModule,
|
|
50
|
+
], selector: 'gn-ui-table', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"border border-gray-300 rounded-lg overflow-hidden bg-white h-full\">\n <cdk-virtual-scroll-viewport\n tvsItemSize=\"48\"\n headerHeight=\"56\"\n style=\"height: calc(100% - 37px)\"\n >\n <table mat-table [dataSource]=\"dataSource\" class=\"mat-elevation-z8\" matSort>\n <ng-container *ngFor=\"let prop of properties\" [matColumnDef]=\"prop\">\n <th\n mat-header-cell\n *matHeaderCellDef\n mat-sort-header\n class=\"text-sm text-black bg-white\"\n >\n {{ prop }}\n </th>\n <td\n mat-cell\n *matCellDef=\"let element\"\n class=\"whitespace-nowrap pr-1 truncate\"\n >\n {{ element[prop] }}\n </td>\n </ng-container>\n\n <tr mat-header-row *matHeaderRowDef=\"properties; sticky: true\"></tr>\n <tr\n [id]=\"getRowEltId(row.id)\"\n mat-row\n *matRowDef=\"let row; columns: properties\"\n (click)=\"selected.emit(row)\"\n [class.active]=\"row.id === activeId\"\n ></tr>\n </table>\n </cdk-virtual-scroll-viewport>\n <div class=\"text-gray-900 border-t border-gray-300 px-4 py-2 text-sm\">\n <span class=\"count font-extrabold text-primary\">{{ count }}</span\n > <span translate>table.object.count</span>.\n </div>\n</div>\n", styles: ["table{width:100%;background:white}th.mat-mdc-header-cell,td.mat-mdc-cell,td.mat-mdc-footer-cell{padding-right:20px}tr.mat-mdc-row,tr.mat-mdc-footer-row{height:36px}tr:hover{background:whitesmoke}tr.mat-mdc-header-row{height:48px}[mat-header-cell]{color:#0000008a;font-size:12px;font-weight:500}tr{cursor:pointer}.active .mat-mdc-cell{color:var(--color-primary)}\n"] }]
|
|
51
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { data: [{
|
|
52
|
+
type: Input
|
|
53
|
+
}], activeId: [{
|
|
54
|
+
type: Input
|
|
55
|
+
}], selected: [{
|
|
56
|
+
type: Output
|
|
57
|
+
}], sort: [{
|
|
58
|
+
type: ViewChild,
|
|
59
|
+
args: [MatSort, { static: true }]
|
|
60
|
+
}] } });
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9kYXRhdml6L3NyYy9saWIvdGFibGUvdGFibGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9kYXRhdml6L3NyYy9saWIvdGFibGUvdGFibGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQ3hELE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUN6QyxPQUFPLEVBRUwsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEVBQ04sU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUE7QUFDL0QsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFBO0FBQ3hELE9BQU8sRUFDTCw0QkFBNEIsRUFDNUIsd0JBQXdCLEdBQ3pCLE1BQU0seUJBQXlCLENBQUE7QUFDaEMsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFBOzs7Ozs7O0FBRXJELE1BQU0sV0FBVyxHQUFHLGFBQWEsQ0FBQTtBQXlCakMsTUFBTSxPQUFPLGNBQWM7SUFDekIsSUFBYSxJQUFJLENBQUMsS0FBdUI7UUFDdkMsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLDRCQUE0QixDQUFDLEtBQUssQ0FBQyxDQUFBO1FBQ3pELElBQUksQ0FBQyxVQUFVLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQyxJQUFJLENBQUE7UUFDaEMsSUFBSSxDQUFDLFVBQVU7WUFDYixLQUFLLENBQUMsT0FBTyxDQUFDLEtBQUssQ0FBQyxJQUFJLEtBQUssQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQTtRQUNuRSxJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUE7SUFDM0IsQ0FBQztJQVVELFlBQW9CLE1BQWtCO1FBQWxCLFdBQU0sR0FBTixNQUFNLENBQVk7UUFSNUIsYUFBUSxHQUFHLElBQUksWUFBWSxFQUFPLENBQUE7SUFRSCxDQUFDO0lBRTFDLGVBQWU7UUFDYixJQUFJLENBQUMsWUFBWTtZQUNmLElBQUksQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FBQyxPQUFPLENBQUMsQ0FBQyxZQUFZLENBQUE7SUFDakUsQ0FBQztJQUVELFlBQVksQ0FBQyxNQUFtQjtRQUM5QixNQUFNLEdBQUcsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQ2pELElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQUMsRUFBRSxDQUMvQixDQUFBO1FBQ0QsSUFBSSxDQUFDLE1BQU0sQ0FBQyxhQUFhLENBQUMsU0FBUyxHQUFHLEdBQUcsQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLFlBQVksQ0FBQTtJQUN6RSxDQUFDO0lBRU0sV0FBVyxDQUFDLEVBQWU7UUFDaEMsT0FBTyxXQUFXLEdBQUcsRUFBRSxDQUFBO0lBQ3pCLENBQUM7OEdBakNVLGNBQWM7a0dBQWQsY0FBYyxnTUFXZCxPQUFPLDhEQ3hEcEIsbTBDQXdDQSxvYURQSSxjQUFjLGdoQ0FDZCxhQUFhLGlkQUNiLHdCQUF3QiwyUEFDeEIsZUFBZSwyTUFDZixPQUFPLGtIQUNQLGVBQWU7OzJGQU9OLGNBQWM7a0JBZjFCLFNBQVM7aUNBQ0ksSUFBSSxXQUNQO3dCQUNQLGNBQWM7d0JBQ2QsYUFBYTt3QkFDYix3QkFBd0I7d0JBQ3hCLGVBQWU7d0JBQ2YsT0FBTzt3QkFDUCxlQUFlO3FCQUNoQixZQUNTLGFBQWEsbUJBR04sdUJBQXVCLENBQUMsTUFBTTtpR0FHbEMsSUFBSTtzQkFBaEIsS0FBSztnQkFPRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNJLFFBQVE7c0JBQWpCLE1BQU07Z0JBRStCLElBQUk7c0JBQXpDLFNBQVM7dUJBQUMsT0FBTyxFQUFFLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFNjcm9sbGluZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9zY3JvbGxpbmcnXG5pbXBvcnQgeyBOZ0Zvck9mIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJ1xuaW1wb3J0IHtcbiAgQWZ0ZXJWaWV3SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRWxlbWVudFJlZixcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxuICBWaWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBNYXRTb3J0LCBNYXRTb3J0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc29ydCdcbmltcG9ydCB7IE1hdFRhYmxlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdGFibGUnXG5pbXBvcnQge1xuICBUYWJsZVZpcnR1YWxTY3JvbGxEYXRhU291cmNlLFxuICBUYWJsZVZpcnR1YWxTY3JvbGxNb2R1bGUsXG59IGZyb20gJ25nLXRhYmxlLXZpcnR1YWwtc2Nyb2xsJ1xuaW1wb3J0IHsgVHJhbnNsYXRlTW9kdWxlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSdcblxuY29uc3Qgcm93SWRQcmVmaXggPSAndGFibGUtaXRlbS0nXG5cbmV4cG9ydCB0eXBlIFRhYmxlSXRlbUlkID0gc3RyaW5nIHwgbnVtYmVyXG50eXBlIFRhYmxlSXRlbVR5cGUgPSBzdHJpbmcgfCBudW1iZXIgfCBEYXRlXG5cbmV4cG9ydCBpbnRlcmZhY2UgVGFibGVJdGVtTW9kZWwge1xuICBpZDogVGFibGVJdGVtSWRcbiAgW2tleTogc3RyaW5nXTogVGFibGVJdGVtVHlwZVxufVxuXG5AQ29tcG9uZW50KHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIE1hdFRhYmxlTW9kdWxlLFxuICAgIE1hdFNvcnRNb2R1bGUsXG4gICAgVGFibGVWaXJ0dWFsU2Nyb2xsTW9kdWxlLFxuICAgIFNjcm9sbGluZ01vZHVsZSxcbiAgICBOZ0Zvck9mLFxuICAgIFRyYW5zbGF0ZU1vZHVsZSxcbiAgXSxcbiAgc2VsZWN0b3I6ICdnbi11aS10YWJsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi90YWJsZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3RhYmxlLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFRhYmxlQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG4gIEBJbnB1dCgpIHNldCBkYXRhKHZhbHVlOiBUYWJsZUl0ZW1Nb2RlbFtdKSB7XG4gICAgdGhpcy5kYXRhU291cmNlID0gbmV3IFRhYmxlVmlydHVhbFNjcm9sbERhdGFTb3VyY2UodmFsdWUpXG4gICAgdGhpcy5kYXRhU291cmNlLnNvcnQgPSB0aGlzLnNvcnRcbiAgICB0aGlzLnByb3BlcnRpZXMgPVxuICAgICAgQXJyYXkuaXNBcnJheSh2YWx1ZSkgJiYgdmFsdWUubGVuZ3RoID8gT2JqZWN0LmtleXModmFsdWVbMF0pIDogW11cbiAgICB0aGlzLmNvdW50ID0gdmFsdWUubGVuZ3RoXG4gIH1cbiAgQElucHV0KCkgYWN0aXZlSWQ6IFRhYmxlSXRlbUlkXG4gIEBPdXRwdXQoKSBzZWxlY3RlZCA9IG5ldyBFdmVudEVtaXR0ZXI8YW55PigpXG5cbiAgQFZpZXdDaGlsZChNYXRTb3J0LCB7IHN0YXRpYzogdHJ1ZSB9KSBzb3J0OiBNYXRTb3J0XG4gIHByb3BlcnRpZXM6IHN0cmluZ1tdXG4gIGRhdGFTb3VyY2U6IFRhYmxlVmlydHVhbFNjcm9sbERhdGFTb3VyY2U8YW55PlxuICBoZWFkZXJIZWlnaHQ6IG51bWJlclxuICBjb3VudDogbnVtYmVyXG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBlbHRSZWY6IEVsZW1lbnRSZWYpIHt9XG5cbiAgbmdBZnRlclZpZXdJbml0KCkge1xuICAgIHRoaXMuaGVhZGVySGVpZ2h0ID1cbiAgICAgIHRoaXMuZWx0UmVmLm5hdGl2ZUVsZW1lbnQucXVlcnlTZWxlY3RvcigndGhlYWQnKS5vZmZzZXRIZWlnaHRcbiAgfVxuXG4gIHNjcm9sbFRvSXRlbShpdGVtSWQ6IFRhYmxlSXRlbUlkKTogdm9pZCB7XG4gICAgY29uc3Qgcm93ID0gdGhpcy5lbHRSZWYubmF0aXZlRWxlbWVudC5xdWVyeVNlbGVjdG9yKFxuICAgICAgYCMke3RoaXMuZ2V0Um93RWx0SWQoaXRlbUlkKX1gXG4gICAgKVxuICAgIHRoaXMuZWx0UmVmLm5hdGl2ZUVsZW1lbnQuc2Nyb2xsVG9wID0gcm93Lm9mZnNldFRvcCAtIHRoaXMuaGVhZGVySGVpZ2h0XG4gIH1cblxuICBwdWJsaWMgZ2V0Um93RWx0SWQoaWQ6IFRhYmxlSXRlbUlkKTogc3RyaW5nIHtcbiAgICByZXR1cm4gcm93SWRQcmVmaXggKyBpZFxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiYm9yZGVyIGJvcmRlci1ncmF5LTMwMCByb3VuZGVkLWxnIG92ZXJmbG93LWhpZGRlbiBiZy13aGl0ZSBoLWZ1bGxcIj5cbiAgPGNkay12aXJ0dWFsLXNjcm9sbC12aWV3cG9ydFxuICAgIHR2c0l0ZW1TaXplPVwiNDhcIlxuICAgIGhlYWRlckhlaWdodD1cIjU2XCJcbiAgICBzdHlsZT1cImhlaWdodDogY2FsYygxMDAlIC0gMzdweClcIlxuICA+XG4gICAgPHRhYmxlIG1hdC10YWJsZSBbZGF0YVNvdXJjZV09XCJkYXRhU291cmNlXCIgY2xhc3M9XCJtYXQtZWxldmF0aW9uLXo4XCIgbWF0U29ydD5cbiAgICAgIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IHByb3Agb2YgcHJvcGVydGllc1wiIFttYXRDb2x1bW5EZWZdPVwicHJvcFwiPlxuICAgICAgICA8dGhcbiAgICAgICAgICBtYXQtaGVhZGVyLWNlbGxcbiAgICAgICAgICAqbWF0SGVhZGVyQ2VsbERlZlxuICAgICAgICAgIG1hdC1zb3J0LWhlYWRlclxuICAgICAgICAgIGNsYXNzPVwidGV4dC1zbSB0ZXh0LWJsYWNrIGJnLXdoaXRlXCJcbiAgICAgICAgPlxuICAgICAgICAgIHt7IHByb3AgfX1cbiAgICAgICAgPC90aD5cbiAgICAgICAgPHRkXG4gICAgICAgICAgbWF0LWNlbGxcbiAgICAgICAgICAqbWF0Q2VsbERlZj1cImxldCBlbGVtZW50XCJcbiAgICAgICAgICBjbGFzcz1cIndoaXRlc3BhY2Utbm93cmFwIHByLTEgdHJ1bmNhdGVcIlxuICAgICAgICA+XG4gICAgICAgICAge3sgZWxlbWVudFtwcm9wXSB9fVxuICAgICAgICA8L3RkPlxuICAgICAgPC9uZy1jb250YWluZXI+XG5cbiAgICAgIDx0ciBtYXQtaGVhZGVyLXJvdyAqbWF0SGVhZGVyUm93RGVmPVwicHJvcGVydGllczsgc3RpY2t5OiB0cnVlXCI+PC90cj5cbiAgICAgIDx0clxuICAgICAgICBbaWRdPVwiZ2V0Um93RWx0SWQocm93LmlkKVwiXG4gICAgICAgIG1hdC1yb3dcbiAgICAgICAgKm1hdFJvd0RlZj1cImxldCByb3c7IGNvbHVtbnM6IHByb3BlcnRpZXNcIlxuICAgICAgICAoY2xpY2spPVwic2VsZWN0ZWQuZW1pdChyb3cpXCJcbiAgICAgICAgW2NsYXNzLmFjdGl2ZV09XCJyb3cuaWQgPT09IGFjdGl2ZUlkXCJcbiAgICAgID48L3RyPlxuICAgIDwvdGFibGU+XG4gIDwvY2RrLXZpcnR1YWwtc2Nyb2xsLXZpZXdwb3J0PlxuICA8ZGl2IGNsYXNzPVwidGV4dC1ncmF5LTkwMCBib3JkZXItdCBib3JkZXItZ3JheS0zMDAgcHgtNCBweS0yIHRleHQtc21cIj5cbiAgICA8c3BhbiBjbGFzcz1cImNvdW50IGZvbnQtZXh0cmFib2xkIHRleHQtcHJpbWFyeVwiPnt7IGNvdW50IH19PC9zcGFuXG4gICAgPiZuYnNwOzxzcGFuIHRyYW5zbGF0ZT50YWJsZS5vYmplY3QuY291bnQ8L3NwYW4+LlxuICA8L2Rpdj5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export const TABLE_ITEM_FIXTURE = [
|
|
2
|
+
{
|
|
3
|
+
name: 'name 1',
|
|
4
|
+
id: 'id 1',
|
|
5
|
+
age: 15,
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
name: 'name 2',
|
|
9
|
+
id: 'id 2',
|
|
10
|
+
age: 10,
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'name 3',
|
|
14
|
+
id: 'id 3',
|
|
15
|
+
age: 55,
|
|
16
|
+
},
|
|
17
|
+
];
|
|
18
|
+
export const TABLE_ITEM_FIXTURE_HAB = [
|
|
19
|
+
{
|
|
20
|
+
name: 'France',
|
|
21
|
+
id: '1',
|
|
22
|
+
pop: 50500000,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
name: 'Italy',
|
|
26
|
+
id: '2',
|
|
27
|
+
pop: 155878789655,
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
name: 'UK',
|
|
31
|
+
id: '3',
|
|
32
|
+
pop: 31522456,
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'US',
|
|
36
|
+
id: '4',
|
|
37
|
+
pop: 3215448888,
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuZml4dHVyZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2RhdGF2aXovc3JjL2xpYi90YWJsZS90YWJsZS5maXh0dXJlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxrQkFBa0IsR0FBRztJQUNoQztRQUNFLElBQUksRUFBRSxRQUFRO1FBQ2QsRUFBRSxFQUFFLE1BQU07UUFDVixHQUFHLEVBQUUsRUFBRTtLQUNSO0lBQ0Q7UUFDRSxJQUFJLEVBQUUsUUFBUTtRQUNkLEVBQUUsRUFBRSxNQUFNO1FBQ1YsR0FBRyxFQUFFLEVBQUU7S0FDUjtJQUNEO1FBQ0UsSUFBSSxFQUFFLFFBQVE7UUFDZCxFQUFFLEVBQUUsTUFBTTtRQUNWLEdBQUcsRUFBRSxFQUFFO0tBQ1I7Q0FDRixDQUFBO0FBRUQsTUFBTSxDQUFDLE1BQU0sc0JBQXNCLEdBQUc7SUFDcEM7UUFDRSxJQUFJLEVBQUUsUUFBUTtRQUNkLEVBQUUsRUFBRSxHQUFHO1FBQ1AsR0FBRyxFQUFFLFFBQVE7S0FDZDtJQUNEO1FBQ0UsSUFBSSxFQUFFLE9BQU87UUFDYixFQUFFLEVBQUUsR0FBRztRQUNQLEdBQUcsRUFBRSxZQUFZO0tBQ2xCO0lBQ0Q7UUFDRSxJQUFJLEVBQUUsSUFBSTtRQUNWLEVBQUUsRUFBRSxHQUFHO1FBQ1AsR0FBRyxFQUFFLFFBQVE7S0FDZDtJQUNEO1FBQ0UsSUFBSSxFQUFFLElBQUk7UUFDVixFQUFFLEVBQUUsR0FBRztRQUNQLEdBQUcsRUFBRSxVQUFVO0tBQ2hCO0NBQ0YsQ0FBQSIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBUQUJMRV9JVEVNX0ZJWFRVUkUgPSBbXG4gIHtcbiAgICBuYW1lOiAnbmFtZSAxJyxcbiAgICBpZDogJ2lkIDEnLFxuICAgIGFnZTogMTUsXG4gIH0sXG4gIHtcbiAgICBuYW1lOiAnbmFtZSAyJyxcbiAgICBpZDogJ2lkIDInLFxuICAgIGFnZTogMTAsXG4gIH0sXG4gIHtcbiAgICBuYW1lOiAnbmFtZSAzJyxcbiAgICBpZDogJ2lkIDMnLFxuICAgIGFnZTogNTUsXG4gIH0sXG5dXG5cbmV4cG9ydCBjb25zdCBUQUJMRV9JVEVNX0ZJWFRVUkVfSEFCID0gW1xuICB7XG4gICAgbmFtZTogJ0ZyYW5jZScsXG4gICAgaWQ6ICcxJyxcbiAgICBwb3A6IDUwNTAwMDAwLFxuICB9LFxuICB7XG4gICAgbmFtZTogJ0l0YWx5JyxcbiAgICBpZDogJzInLFxuICAgIHBvcDogMTU1ODc4Nzg5NjU1LFxuICB9LFxuICB7XG4gICAgbmFtZTogJ1VLJyxcbiAgICBpZDogJzMnLFxuICAgIHBvcDogMzE1MjI0NTYsXG4gIH0sXG4gIHtcbiAgICBuYW1lOiAnVVMnLFxuICAgIGlkOiAnNCcsXG4gICAgcG9wOiAzMjE1NDQ4ODg4LFxuICB9LFxuXVxuIl19
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { FigureComponent } from './figure/figure.component';
|
|
4
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class UiDatavizModule {
|
|
7
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: UiDatavizModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.7", ngImport: i0, type: UiDatavizModule, declarations: [FigureComponent], imports: [CommonModule, MatIconModule], exports: [FigureComponent] }); }
|
|
9
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: UiDatavizModule, imports: [CommonModule, MatIconModule] }); }
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: UiDatavizModule, decorators: [{
|
|
12
|
+
type: NgModule,
|
|
13
|
+
args: [{
|
|
14
|
+
imports: [CommonModule, MatIconModule],
|
|
15
|
+
declarations: [FigureComponent],
|
|
16
|
+
exports: [FigureComponent],
|
|
17
|
+
}]
|
|
18
|
+
}] });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWktZGF0YXZpei5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2RhdGF2aXovc3JjL2xpYi91aS1kYXRhdml6Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sMkJBQTJCLENBQUE7QUFDM0QsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFBOztBQU90RCxNQUFNLE9BQU8sZUFBZTs4R0FBZixlQUFlOytHQUFmLGVBQWUsaUJBSFgsZUFBZSxhQURwQixZQUFZLEVBQUUsYUFBYSxhQUUzQixlQUFlOytHQUVkLGVBQWUsWUFKaEIsWUFBWSxFQUFFLGFBQWE7OzJGQUkxQixlQUFlO2tCQUwzQixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxhQUFhLENBQUM7b0JBQ3RDLFlBQVksRUFBRSxDQUFDLGVBQWUsQ0FBQztvQkFDL0IsT0FBTyxFQUFFLENBQUMsZUFBZSxDQUFDO2lCQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcbmltcG9ydCB7IEZpZ3VyZUNvbXBvbmVudCB9IGZyb20gJy4vZmlndXJlL2ZpZ3VyZS5jb21wb25lbnQnXG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbidcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgTWF0SWNvbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW0ZpZ3VyZUNvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtGaWd1cmVDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBVaURhdGF2aXpNb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export * from './lib/ui-elements.module';
|
|
2
|
+
export * from './lib/metadata-info/metadata-info.component';
|
|
3
|
+
export * from './lib/metadata-contact/metadata-contact.component';
|
|
4
|
+
export * from './lib/metadata-catalog/metadata-catalog.component';
|
|
5
|
+
export * from './lib/metadata-quality/metadata-quality.component';
|
|
6
|
+
export * from './lib/metadata-quality-item/metadata-quality-item.component';
|
|
7
|
+
export * from './lib/search-results-error/search-results-error.component';
|
|
8
|
+
export * from './lib/thumbnail/thumbnail.component';
|
|
9
|
+
export * from './lib/content-ghost/content-ghost.component';
|
|
10
|
+
export * from './lib/pagination-buttons/pagination-buttons.component';
|
|
11
|
+
export * from './lib/api-card/api-card.component';
|
|
12
|
+
export * from './lib/avatar/avatar.component';
|
|
13
|
+
export * from './lib/content-ghost/content-ghost.component';
|
|
14
|
+
export * from './lib/download-item/download-item.component';
|
|
15
|
+
export * from './lib/downloads-list/downloads-list.component';
|
|
16
|
+
export * from './lib/link-card/link-card.component';
|
|
17
|
+
export * from './lib/pagination/pagination.component';
|
|
18
|
+
export * from './lib/related-record-card/related-record-card.component';
|
|
19
|
+
export * from './lib/search-results-error/search-results-error.component';
|
|
20
|
+
export * from './lib/user-preview/user-preview.component';
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFBO0FBQ3hDLGNBQWMsNkNBQTZDLENBQUE7QUFDM0QsY0FBYyxtREFBbUQsQ0FBQTtBQUNqRSxjQUFjLG1EQUFtRCxDQUFBO0FBQ2pFLGNBQWMsbURBQW1ELENBQUE7QUFDakUsY0FBYyw2REFBNkQsQ0FBQTtBQUMzRSxjQUFjLDJEQUEyRCxDQUFBO0FBQ3pFLGNBQWMscUNBQXFDLENBQUE7QUFDbkQsY0FBYyw2Q0FBNkMsQ0FBQTtBQUMzRCxjQUFjLHVEQUF1RCxDQUFBO0FBQ3JFLGNBQWMsbUNBQW1DLENBQUE7QUFDakQsY0FBYywrQkFBK0IsQ0FBQTtBQUM3QyxjQUFjLDZDQUE2QyxDQUFBO0FBQzNELGNBQWMsNkNBQTZDLENBQUE7QUFDM0QsY0FBYywrQ0FBK0MsQ0FBQTtBQUM3RCxjQUFjLHFDQUFxQyxDQUFBO0FBQ25ELGNBQWMsdUNBQXVDLENBQUE7QUFDckQsY0FBYyx5REFBeUQsQ0FBQTtBQUN2RSxjQUFjLDJEQUEyRCxDQUFBO0FBQ3pFLGNBQWMsMkNBQTJDLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi91aS1lbGVtZW50cy5tb2R1bGUnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tZXRhZGF0YS1pbmZvL21ldGFkYXRhLWluZm8uY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbWV0YWRhdGEtY29udGFjdC9tZXRhZGF0YS1jb250YWN0LmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL21ldGFkYXRhLWNhdGFsb2cvbWV0YWRhdGEtY2F0YWxvZy5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9tZXRhZGF0YS1xdWFsaXR5L21ldGFkYXRhLXF1YWxpdHkuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbWV0YWRhdGEtcXVhbGl0eS1pdGVtL21ldGFkYXRhLXF1YWxpdHktaXRlbS5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZWFyY2gtcmVzdWx0cy1lcnJvci9zZWFyY2gtcmVzdWx0cy1lcnJvci5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi90aHVtYm5haWwvdGh1bWJuYWlsLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbnRlbnQtZ2hvc3QvY29udGVudC1naG9zdC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9wYWdpbmF0aW9uLWJ1dHRvbnMvcGFnaW5hdGlvbi1idXR0b25zLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2FwaS1jYXJkL2FwaS1jYXJkLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2F2YXRhci9hdmF0YXIuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29udGVudC1naG9zdC9jb250ZW50LWdob3N0LmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL2Rvd25sb2FkLWl0ZW0vZG93bmxvYWQtaXRlbS5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9kb3dubG9hZHMtbGlzdC9kb3dubG9hZHMtbGlzdC5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9saW5rLWNhcmQvbGluay1jYXJkLmNvbXBvbmVudCdcbmV4cG9ydCAqIGZyb20gJy4vbGliL3BhZ2luYXRpb24vcGFnaW5hdGlvbi5jb21wb25lbnQnXG5leHBvcnQgKiBmcm9tICcuL2xpYi9yZWxhdGVkLXJlY29yZC1jYXJkL3JlbGF0ZWQtcmVjb3JkLWNhcmQuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VhcmNoLXJlc3VsdHMtZXJyb3Ivc2VhcmNoLXJlc3VsdHMtZXJyb3IuY29tcG9uZW50J1xuZXhwb3J0ICogZnJvbSAnLi9saWIvdXNlci1wcmV2aWV3L3VzZXItcHJldmlldy5jb21wb25lbnQnXG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../../../../inputs/src/lib/copy-text-button/copy-text-button.component";
|
|
4
|
+
import * as i2 from "@ngx-translate/core";
|
|
5
|
+
export class ApiCardComponent {
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ApiCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: ApiCardComponent, selector: "gn-ui-api-card", inputs: { link: "link" }, ngImport: i0, template: "<div\n class=\"group flex flex-col justify-between h-40 pt-5 pb-6 px-7 rounded bg-neutral-100 filter overflow-hidden hover:bg-white hover:shadow-xl transition-shadow\"\n>\n <div\n class=\"font-title font-medium text-21 text-black text-ellipsis overflow-hidden break-words pb-5\"\n style=\"height: 4.5rem\"\n >\n {{ link.name || link.description }}\n </div>\n <div class=\"\">\n <div class=\"flex flex-row justify-between\">\n <span\n class=\"bg-primary-opacity-25 inline-flex items-center justify-center px-2 py-1 text-13 font-medium leading-none text-white rounded capitalize text-primary-lightest group-hover:bg-primary transition-colors\"\n >{{ link.accessServiceProtocol.toUpperCase() }}</span\n >\n <gn-ui-copy-text-button\n [text]=\"link.url.toString()\"\n [tooltipText]=\"'tooltip.url.copy' | translate\"\n [displayText]=\"false\"\n ></gn-ui-copy-text-button>\n </div>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: i1.CopyTextButtonComponent, selector: "gn-ui-copy-text-button", inputs: ["text", "tooltipText", "displayText", "rows"] }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
+
}
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ApiCardComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{ selector: 'gn-ui-api-card', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"group flex flex-col justify-between h-40 pt-5 pb-6 px-7 rounded bg-neutral-100 filter overflow-hidden hover:bg-white hover:shadow-xl transition-shadow\"\n>\n <div\n class=\"font-title font-medium text-21 text-black text-ellipsis overflow-hidden break-words pb-5\"\n style=\"height: 4.5rem\"\n >\n {{ link.name || link.description }}\n </div>\n <div class=\"\">\n <div class=\"flex flex-row justify-between\">\n <span\n class=\"bg-primary-opacity-25 inline-flex items-center justify-center px-2 py-1 text-13 font-medium leading-none text-white rounded capitalize text-primary-lightest group-hover:bg-primary transition-colors\"\n >{{ link.accessServiceProtocol.toUpperCase() }}</span\n >\n <gn-ui-copy-text-button\n [text]=\"link.url.toString()\"\n [tooltipText]=\"'tooltip.url.copy' | translate\"\n [displayText]=\"false\"\n ></gn-ui-copy-text-button>\n </div>\n </div>\n</div>\n" }]
|
|
12
|
+
}], propDecorators: { link: [{
|
|
13
|
+
type: Input
|
|
14
|
+
}] } });
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBpLWNhcmQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9lbGVtZW50cy9zcmMvbGliL2FwaS1jYXJkL2FwaS1jYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9hcGktY2FyZC9hcGktY2FyZC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTs7OztBQVN6RSxNQUFNLE9BQU8sZ0JBQWdCOzhHQUFoQixnQkFBZ0I7a0dBQWhCLGdCQUFnQixnRkNUN0IsNDhCQXVCQTs7MkZEZGEsZ0JBQWdCO2tCQU41QixTQUFTOytCQUNFLGdCQUFnQixtQkFHVCx1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxJQUFJO3NCQUFaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBEYXRhc2V0U2VydmljZURpc3RyaWJ1dGlvbiB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tbW9uL2RvbWFpbi9zcmMvbGliL3JlY29yZCdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktYXBpLWNhcmQnLFxuICB0ZW1wbGF0ZVVybDogJy4vYXBpLWNhcmQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hcGktY2FyZC5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBBcGlDYXJkQ29tcG9uZW50IHtcbiAgQElucHV0KCkgbGluazogRGF0YXNldFNlcnZpY2VEaXN0cmlidXRpb25cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJncm91cCBmbGV4IGZsZXgtY29sIGp1c3RpZnktYmV0d2VlbiBoLTQwIHB0LTUgcGItNiBweC03IHJvdW5kZWQgYmctbmV1dHJhbC0xMDAgZmlsdGVyIG92ZXJmbG93LWhpZGRlbiBob3ZlcjpiZy13aGl0ZSBob3ZlcjpzaGFkb3cteGwgdHJhbnNpdGlvbi1zaGFkb3dcIlxuPlxuICA8ZGl2XG4gICAgY2xhc3M9XCJmb250LXRpdGxlIGZvbnQtbWVkaXVtIHRleHQtMjEgdGV4dC1ibGFjayB0ZXh0LWVsbGlwc2lzIG92ZXJmbG93LWhpZGRlbiBicmVhay13b3JkcyBwYi01XCJcbiAgICBzdHlsZT1cImhlaWdodDogNC41cmVtXCJcbiAgPlxuICAgIHt7IGxpbmsubmFtZSB8fCBsaW5rLmRlc2NyaXB0aW9uIH19XG4gIDwvZGl2PlxuICA8ZGl2IGNsYXNzPVwiXCI+XG4gICAgPGRpdiBjbGFzcz1cImZsZXggZmxleC1yb3cganVzdGlmeS1iZXR3ZWVuXCI+XG4gICAgICA8c3BhblxuICAgICAgICBjbGFzcz1cImJnLXByaW1hcnktb3BhY2l0eS0yNSBpbmxpbmUtZmxleCBpdGVtcy1jZW50ZXIganVzdGlmeS1jZW50ZXIgcHgtMiBweS0xIHRleHQtMTMgZm9udC1tZWRpdW0gbGVhZGluZy1ub25lIHRleHQtd2hpdGUgcm91bmRlZCBjYXBpdGFsaXplIHRleHQtcHJpbWFyeS1saWdodGVzdCBncm91cC1ob3ZlcjpiZy1wcmltYXJ5IHRyYW5zaXRpb24tY29sb3JzXCJcbiAgICAgICAgPnt7IGxpbmsuYWNjZXNzU2VydmljZVByb3RvY29sLnRvVXBwZXJDYXNlKCkgfX08L3NwYW5cbiAgICAgID5cbiAgICAgIDxnbi11aS1jb3B5LXRleHQtYnV0dG9uXG4gICAgICAgIFt0ZXh0XT1cImxpbmsudXJsLnRvU3RyaW5nKClcIlxuICAgICAgICBbdG9vbHRpcFRleHRdPVwiJ3Rvb2x0aXAudXJsLmNvcHknIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgW2Rpc3BsYXlUZXh0XT1cImZhbHNlXCJcbiAgICAgID48L2duLXVpLWNvcHktdGV4dC1idXR0b24+XG4gICAgPC9kaXY+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
export class AvatarComponent {
|
|
5
|
+
hideImage() {
|
|
6
|
+
this.avatarUrl = this.avatarPlaceholder;
|
|
7
|
+
}
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AvatarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: AvatarComponent, selector: "gn-ui-avatar", inputs: { avatarUrl: "avatarUrl", avatarPlaceholder: "avatarPlaceholder" }, ngImport: i0, template: "<img\n *ngIf=\"avatarUrl\"\n class=\"rounded-full object-cover\"\n [src]=\"avatarUrl\"\n (error)=\"hideImage()\"\n/>\n<div\n *ngIf=\"!avatarUrl\"\n class=\"w-full h-full rounded-full bg-gradient-to-tr from-primary to-slate-200\"\n></div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: AvatarComponent, decorators: [{
|
|
12
|
+
type: Component,
|
|
13
|
+
args: [{ selector: 'gn-ui-avatar', changeDetection: ChangeDetectionStrategy.OnPush, template: "<img\n *ngIf=\"avatarUrl\"\n class=\"rounded-full object-cover\"\n [src]=\"avatarUrl\"\n (error)=\"hideImage()\"\n/>\n<div\n *ngIf=\"!avatarUrl\"\n class=\"w-full h-full rounded-full bg-gradient-to-tr from-primary to-slate-200\"\n></div>\n" }]
|
|
14
|
+
}], propDecorators: { avatarUrl: [{
|
|
15
|
+
type: Input
|
|
16
|
+
}], avatarPlaceholder: [{
|
|
17
|
+
type: Input
|
|
18
|
+
}] } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXZhdGFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9hdmF0YXIvYXZhdGFyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9hdmF0YXIvYXZhdGFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFBOzs7QUFPekUsTUFBTSxPQUFPLGVBQWU7SUFJMUIsU0FBUztRQUNQLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixDQUFBO0lBQ3pDLENBQUM7OEdBTlUsZUFBZTtrR0FBZixlQUFlLGdJQ1A1Qix1UEFVQTs7MkZESGEsZUFBZTtrQkFMM0IsU0FBUzsrQkFDRSxjQUFjLG1CQUVQLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csaUJBQWlCO3NCQUF6QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1hdmF0YXInLFxuICB0ZW1wbGF0ZVVybDogJy4vYXZhdGFyLmNvbXBvbmVudC5odG1sJyxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEF2YXRhckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGF2YXRhclVybD86IHN0cmluZ1xuICBASW5wdXQoKSBhdmF0YXJQbGFjZWhvbGRlcj86IHN0cmluZ1xuXG4gIGhpZGVJbWFnZSgpIHtcbiAgICB0aGlzLmF2YXRhclVybCA9IHRoaXMuYXZhdGFyUGxhY2Vob2xkZXJcbiAgfVxufVxuIiwiPGltZ1xuICAqbmdJZj1cImF2YXRhclVybFwiXG4gIGNsYXNzPVwicm91bmRlZC1mdWxsIG9iamVjdC1jb3ZlclwiXG4gIFtzcmNdPVwiYXZhdGFyVXJsXCJcbiAgKGVycm9yKT1cImhpZGVJbWFnZSgpXCJcbi8+XG48ZGl2XG4gICpuZ0lmPVwiIWF2YXRhclVybFwiXG4gIGNsYXNzPVwidy1mdWxsIGgtZnVsbCByb3VuZGVkLWZ1bGwgYmctZ3JhZGllbnQtdG8tdHIgZnJvbS1wcmltYXJ5IHRvLXNsYXRlLTIwMFwiXG4+PC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/common";
|
|
4
|
+
export class ContentGhostComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.ghostClass = '';
|
|
7
|
+
}
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ContentGhostComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: ContentGhostComponent, selector: "gn-ui-content-ghost", inputs: { showContent: "showContent", ghostClass: "ghostClass" }, ngImport: i0, template: "<div\n *ngIf=\"!showContent\"\n class=\"ghost bg-gray-100 rounded-lg relative overflow-hidden {{ ghostClass }}\"\n></div>\n<ng-content *ngIf=\"showContent\"></ng-content>\n", styles: [".ghost{min-height:2rem;min-width:2rem;overflow:hidden}.ghost:after{content:\"\";position:absolute;top:0;bottom:0;width:50%;background-image:linear-gradient(to left,rgba(251,251,251,.05),rgba(251,251,251,.3),rgba(251,251,251,.6),rgba(251,251,251,.3),rgba(251,251,251,.05));animation:loading 1s infinite}@keyframes loading{0%{left:-50%}to{left:100%}}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: ContentGhostComponent, decorators: [{
|
|
12
|
+
type: Component,
|
|
13
|
+
args: [{ selector: 'gn-ui-content-ghost', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n *ngIf=\"!showContent\"\n class=\"ghost bg-gray-100 rounded-lg relative overflow-hidden {{ ghostClass }}\"\n></div>\n<ng-content *ngIf=\"showContent\"></ng-content>\n", styles: [".ghost{min-height:2rem;min-width:2rem;overflow:hidden}.ghost:after{content:\"\";position:absolute;top:0;bottom:0;width:50%;background-image:linear-gradient(to left,rgba(251,251,251,.05),rgba(251,251,251,.3),rgba(251,251,251,.6),rgba(251,251,251,.3),rgba(251,251,251,.05));animation:loading 1s infinite}@keyframes loading{0%{left:-50%}to{left:100%}}\n"] }]
|
|
14
|
+
}], propDecorators: { showContent: [{
|
|
15
|
+
type: Input
|
|
16
|
+
}], ghostClass: [{
|
|
17
|
+
type: Input
|
|
18
|
+
}] } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGVudC1naG9zdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvY29udGVudC1naG9zdC9jb250ZW50LWdob3N0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9jb250ZW50LWdob3N0L2NvbnRlbnQtZ2hvc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7OztBQVF6RSxNQUFNLE9BQU8scUJBQXFCO0lBTmxDO1FBUVcsZUFBVSxHQUFHLEVBQUUsQ0FBQTtLQUN6Qjs4R0FIWSxxQkFBcUI7a0dBQXJCLHFCQUFxQiw2SENSbEMsZ0xBS0E7OzJGREdhLHFCQUFxQjtrQkFOakMsU0FBUzsrQkFDRSxxQkFBcUIsbUJBR2QsdUJBQXVCLENBQUMsTUFBTTs4QkFHdEMsV0FBVztzQkFBbkIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1jb250ZW50LWdob3N0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvbnRlbnQtZ2hvc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jb250ZW50LWdob3N0LmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIENvbnRlbnRHaG9zdENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHNob3dDb250ZW50OiBib29sZWFuXG4gIEBJbnB1dCgpIGdob3N0Q2xhc3MgPSAnJ1xufVxuIiwiPGRpdlxuICAqbmdJZj1cIiFzaG93Q29udGVudFwiXG4gIGNsYXNzPVwiZ2hvc3QgYmctZ3JheS0xMDAgcm91bmRlZC1sZyByZWxhdGl2ZSBvdmVyZmxvdy1oaWRkZW4ge3sgZ2hvc3RDbGFzcyB9fVwiXG4+PC9kaXY+XG48bmctY29udGVudCAqbmdJZj1cInNob3dDb250ZW50XCI+PC9uZy1jb250ZW50PlxuIl19
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Component, ChangeDetectionStrategy, Input, Output, EventEmitter, } 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 class DownloadItemComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.exportUrl = new EventEmitter();
|
|
9
|
+
}
|
|
10
|
+
openUrl() {
|
|
11
|
+
this.exportUrl.emit(this.link.url.toString());
|
|
12
|
+
}
|
|
13
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: DownloadItemComponent, selector: "gn-ui-download-item", inputs: { link: "link", color: "color", format: "format", isFromWfs: "isFromWfs" }, outputs: { exportUrl: "exportUrl" }, ngImport: i0, template: "<a\n href=\"{{ link.url }}\"\n target=\"_blank\"\n class=\"group flex justify-between card-shadow px-6 py-5 cursor-pointer\"\n rel=\"noopener\"\n>\n <div class=\"grow-1 w-full overflow-hidden\">\n <div\n class=\"text-21 text-black truncate font-title w-11/12\"\n [title]=\"link.description || link.name\"\n >\n {{ link.description || link.name }}\n </div>\n <div class=\"pt-1\">\n <span\n class=\"inline-flex items-center justify-center px-2 py-1 text-13 font-medium leading-none text-white rounded transition-opacity opacity-70 group-hover:opacity-100\"\n [style.background-color]=\"color\"\n data-cy=\"download-format\"\n >{{ format || ('downloads.format.unknown' | translate) }}</span\n >\n <span\n class=\"pl-2 inline-flex items-center text-gray-800 text-sm\"\n *ngIf=\"isFromWfs\"\n translate=\"\"\n >datahub.search.filter.generatedByWfs</span\n >\n </div>\n </div>\n <div class=\"shrink-1 w-14 flex flex-col justify-center items-center\">\n <mat-icon class=\"!w-8 !h-8 card-icon text-3xl material-symbols-outlined\">\n cloud_download\n </mat-icon>\n </div>\n</a>\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: "pipe", type: i3.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadItemComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{ selector: 'gn-ui-download-item', changeDetection: ChangeDetectionStrategy.OnPush, template: "<a\n href=\"{{ link.url }}\"\n target=\"_blank\"\n class=\"group flex justify-between card-shadow px-6 py-5 cursor-pointer\"\n rel=\"noopener\"\n>\n <div class=\"grow-1 w-full overflow-hidden\">\n <div\n class=\"text-21 text-black truncate font-title w-11/12\"\n [title]=\"link.description || link.name\"\n >\n {{ link.description || link.name }}\n </div>\n <div class=\"pt-1\">\n <span\n class=\"inline-flex items-center justify-center px-2 py-1 text-13 font-medium leading-none text-white rounded transition-opacity opacity-70 group-hover:opacity-100\"\n [style.background-color]=\"color\"\n data-cy=\"download-format\"\n >{{ format || ('downloads.format.unknown' | translate) }}</span\n >\n <span\n class=\"pl-2 inline-flex items-center text-gray-800 text-sm\"\n *ngIf=\"isFromWfs\"\n translate=\"\"\n >datahub.search.filter.generatedByWfs</span\n >\n </div>\n </div>\n <div class=\"shrink-1 w-14 flex flex-col justify-center items-center\">\n <mat-icon class=\"!w-8 !h-8 card-icon text-3xl material-symbols-outlined\">\n cloud_download\n </mat-icon>\n </div>\n</a>\n" }]
|
|
19
|
+
}], propDecorators: { link: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}], color: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}], format: [{
|
|
24
|
+
type: Input
|
|
25
|
+
}], isFromWfs: [{
|
|
26
|
+
type: Input
|
|
27
|
+
}], exportUrl: [{
|
|
28
|
+
type: Output
|
|
29
|
+
}] } });
|
|
30
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG93bmxvYWQtaXRlbS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvZG93bmxvYWQtaXRlbS9kb3dubG9hZC1pdGVtLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9kb3dubG9hZC1pdGVtL2Rvd25sb2FkLWl0ZW0uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVCx1QkFBdUIsRUFDdkIsS0FBSyxFQUNMLE1BQU0sRUFDTixZQUFZLEdBQ2IsTUFBTSxlQUFlLENBQUE7Ozs7O0FBU3RCLE1BQU0sT0FBTyxxQkFBcUI7SUFObEM7UUFXWSxjQUFTLEdBQUcsSUFBSSxZQUFZLEVBQVUsQ0FBQTtLQUtqRDtJQUhDLE9BQU87UUFDTCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxRQUFRLEVBQUUsQ0FBQyxDQUFBO0lBQy9DLENBQUM7OEdBVFUscUJBQXFCO2tHQUFyQixxQkFBcUIsb0xDZmxDLDZxQ0FrQ0E7OzJGRG5CYSxxQkFBcUI7a0JBTmpDLFNBQVM7K0JBQ0UscUJBQXFCLG1CQUdkLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLElBQUk7c0JBQVosS0FBSztnQkFDRyxLQUFLO3NCQUFiLEtBQUs7Z0JBQ0csTUFBTTtzQkFBZCxLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0ksU0FBUztzQkFBbEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENvbXBvbmVudCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIElucHV0LFxuICBPdXRwdXQsXG4gIEV2ZW50RW1pdHRlcixcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IERhdGFzZXREaXN0cmlidXRpb24gfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9yZWNvcmQnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWRvd25sb2FkLWl0ZW0nLFxuICB0ZW1wbGF0ZVVybDogJy4vZG93bmxvYWQtaXRlbS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Rvd25sb2FkLWl0ZW0uY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRG93bmxvYWRJdGVtQ29tcG9uZW50IHtcbiAgQElucHV0KCkgbGluazogRGF0YXNldERpc3RyaWJ1dGlvblxuICBASW5wdXQoKSBjb2xvcjogc3RyaW5nXG4gIEBJbnB1dCgpIGZvcm1hdDogc3RyaW5nXG4gIEBJbnB1dCgpIGlzRnJvbVdmczogYm9vbGVhblxuICBAT3V0cHV0KCkgZXhwb3J0VXJsID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KClcblxuICBvcGVuVXJsKCkge1xuICAgIHRoaXMuZXhwb3J0VXJsLmVtaXQodGhpcy5saW5rLnVybC50b1N0cmluZygpKVxuICB9XG59XG4iLCI8YVxuICBocmVmPVwie3sgbGluay51cmwgfX1cIlxuICB0YXJnZXQ9XCJfYmxhbmtcIlxuICBjbGFzcz1cImdyb3VwIGZsZXgganVzdGlmeS1iZXR3ZWVuIGNhcmQtc2hhZG93IHB4LTYgcHktNSBjdXJzb3ItcG9pbnRlclwiXG4gIHJlbD1cIm5vb3BlbmVyXCJcbj5cbiAgPGRpdiBjbGFzcz1cImdyb3ctMSB3LWZ1bGwgb3ZlcmZsb3ctaGlkZGVuXCI+XG4gICAgPGRpdlxuICAgICAgY2xhc3M9XCJ0ZXh0LTIxIHRleHQtYmxhY2sgdHJ1bmNhdGUgZm9udC10aXRsZSB3LTExLzEyXCJcbiAgICAgIFt0aXRsZV09XCJsaW5rLmRlc2NyaXB0aW9uIHx8IGxpbmsubmFtZVwiXG4gICAgPlxuICAgICAge3sgbGluay5kZXNjcmlwdGlvbiB8fCBsaW5rLm5hbWUgfX1cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwicHQtMVwiPlxuICAgICAgPHNwYW5cbiAgICAgICAgY2xhc3M9XCJpbmxpbmUtZmxleCBpdGVtcy1jZW50ZXIganVzdGlmeS1jZW50ZXIgcHgtMiBweS0xIHRleHQtMTMgZm9udC1tZWRpdW0gbGVhZGluZy1ub25lIHRleHQtd2hpdGUgcm91bmRlZCB0cmFuc2l0aW9uLW9wYWNpdHkgb3BhY2l0eS03MCBncm91cC1ob3ZlcjpvcGFjaXR5LTEwMFwiXG4gICAgICAgIFtzdHlsZS5iYWNrZ3JvdW5kLWNvbG9yXT1cImNvbG9yXCJcbiAgICAgICAgZGF0YS1jeT1cImRvd25sb2FkLWZvcm1hdFwiXG4gICAgICAgID57eyBmb3JtYXQgfHwgKCdkb3dubG9hZHMuZm9ybWF0LnVua25vd24nIHwgdHJhbnNsYXRlKSB9fTwvc3BhblxuICAgICAgPlxuICAgICAgPHNwYW5cbiAgICAgICAgY2xhc3M9XCJwbC0yIGlubGluZS1mbGV4IGl0ZW1zLWNlbnRlciB0ZXh0LWdyYXktODAwIHRleHQtc21cIlxuICAgICAgICAqbmdJZj1cImlzRnJvbVdmc1wiXG4gICAgICAgIHRyYW5zbGF0ZT1cIlwiXG4gICAgICAgID5kYXRhaHViLnNlYXJjaC5maWx0ZXIuZ2VuZXJhdGVkQnlXZnM8L3NwYW5cbiAgICAgID5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJzaHJpbmstMSB3LTE0IGZsZXggZmxleC1jb2wganVzdGlmeS1jZW50ZXIgaXRlbXMtY2VudGVyXCI+XG4gICAgPG1hdC1pY29uIGNsYXNzPVwiIXctOCAhaC04IGNhcmQtaWNvbiB0ZXh0LTN4bCBtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkXCI+XG4gICAgICBjbG91ZF9kb3dubG9hZFxuICAgIDwvbWF0LWljb24+XG4gIDwvZGl2PlxuPC9hPlxuIl19
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import { marker } from '@biesbjerg/ngx-translate-extract-marker';
|
|
4
|
+
import { getBadgeColor, getFileFormat } from '../../../../../../libs/util/shared/src';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
import * as i1 from "@ngx-translate/core";
|
|
7
|
+
import * as i2 from "@angular/common";
|
|
8
|
+
import * as i3 from "../../../../inputs/src/lib/button/button.component";
|
|
9
|
+
import * as i4 from "../download-item/download-item.component";
|
|
10
|
+
marker('datahub.search.filter.all');
|
|
11
|
+
marker('datahub.search.filter.others');
|
|
12
|
+
const FILTER_FORMATS = ['all', 'csv', 'excel', 'json', 'shp', 'others'];
|
|
13
|
+
export class DownloadsListComponent {
|
|
14
|
+
constructor(translateService) {
|
|
15
|
+
this.translateService = translateService;
|
|
16
|
+
this.activeFilterFormats = ['all'];
|
|
17
|
+
}
|
|
18
|
+
get filteredLinks() {
|
|
19
|
+
return this.links.filter((link) => this.activeFilterFormats.some((format) => this.isLinkOfFormat(link, format)));
|
|
20
|
+
}
|
|
21
|
+
get visibleFormats() {
|
|
22
|
+
return FILTER_FORMATS.filter((format) => this.links.some((link) => this.isLinkOfFormat(link, format)));
|
|
23
|
+
}
|
|
24
|
+
toggleFilterFormat(format) {
|
|
25
|
+
if (format === 'all') {
|
|
26
|
+
this.activeFilterFormats = ['all'];
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
if (this.isFilterActive(format)) {
|
|
30
|
+
this.activeFilterFormats = this.activeFilterFormats.filter((f) => format !== f);
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
this.activeFilterFormats = [
|
|
34
|
+
...this.activeFilterFormats.filter((f) => f !== 'all'),
|
|
35
|
+
format,
|
|
36
|
+
];
|
|
37
|
+
}
|
|
38
|
+
if (this.activeFilterFormats.length === 0) {
|
|
39
|
+
this.activeFilterFormats = ['all'];
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
isFilterActive(filter) {
|
|
43
|
+
return this.activeFilterFormats.includes(filter);
|
|
44
|
+
}
|
|
45
|
+
getFilterFormatTitle(format) {
|
|
46
|
+
if (format === 'all' || format === 'others') {
|
|
47
|
+
return this.translateService.instant(`datahub.search.filter.${format}`);
|
|
48
|
+
}
|
|
49
|
+
return format;
|
|
50
|
+
}
|
|
51
|
+
isLinkOfFormat(link, format) {
|
|
52
|
+
if (format === 'all') {
|
|
53
|
+
return true;
|
|
54
|
+
}
|
|
55
|
+
if (getFileFormat(link) === null) {
|
|
56
|
+
return format === 'others';
|
|
57
|
+
}
|
|
58
|
+
if (format === 'others') {
|
|
59
|
+
const knownFormats = FILTER_FORMATS.filter((format) => format !== 'all' && format !== 'others');
|
|
60
|
+
return knownFormats.every((knownFormat) => !getFileFormat(link).includes(knownFormat));
|
|
61
|
+
}
|
|
62
|
+
return getFileFormat(link).includes(format);
|
|
63
|
+
}
|
|
64
|
+
getLinkFormat(link) {
|
|
65
|
+
return getFileFormat(link);
|
|
66
|
+
}
|
|
67
|
+
getLinkColor(link) {
|
|
68
|
+
return getBadgeColor(getFileFormat(link));
|
|
69
|
+
}
|
|
70
|
+
isFromWfs(link) {
|
|
71
|
+
return link.type === 'service' && link.accessServiceProtocol === 'wfs';
|
|
72
|
+
}
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadsListComponent, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: DownloadsListComponent, selector: "gn-ui-downloads-list", inputs: { links: "links" }, ngImport: i0, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div class=\"flex flex-wrap justify-start sm:justify-end sm:pb-4\">\n <gn-ui-button\n class=\"m-1 format-filter\"\n [extraClass]=\"\n '!px-[12px] !py-[8px] !text-[15px]' +\n (isFilterActive(format) ? ' opacity-100' : ' opacity-50')\n \"\n (buttonClick)=\"toggleFilterFormat(format)\"\n [attr.data-format]=\"format\"\n *ngFor=\"let format of visibleFormats\"\n >\n {{ getFilterFormatTitle(format) }}\n </gn-ui-button>\n </div>\n</div>\n<div class=\"mb-2 sm:mb-3\" *ngFor=\"let link of filteredLinks\">\n <gn-ui-download-item\n [link]=\"link\"\n [color]=\"getLinkColor(link)\"\n [format]=\"getLinkFormat(link)\"\n [isFromWfs]=\"isFromWfs(link)\"\n ></gn-ui-download-item>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i3.ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: i4.DownloadItemComponent, selector: "gn-ui-download-item", inputs: ["link", "color", "format", "isFromWfs"], outputs: ["exportUrl"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
75
|
+
}
|
|
76
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: DownloadsListComponent, decorators: [{
|
|
77
|
+
type: Component,
|
|
78
|
+
args: [{ selector: 'gn-ui-downloads-list', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"flex flex-wrap justify-between mt-8 mb-6 sm:mt-12 sm:mb-2\"\n *ngIf=\"links && links.length > 0\"\n>\n <p\n class=\"font-title text-[28px] text-title font-medium mr-4 pb-4 text-center sm:text-left\"\n translate\n >\n record.metadata.download\n </p>\n <div class=\"flex flex-wrap justify-start sm:justify-end sm:pb-4\">\n <gn-ui-button\n class=\"m-1 format-filter\"\n [extraClass]=\"\n '!px-[12px] !py-[8px] !text-[15px]' +\n (isFilterActive(format) ? ' opacity-100' : ' opacity-50')\n \"\n (buttonClick)=\"toggleFilterFormat(format)\"\n [attr.data-format]=\"format\"\n *ngFor=\"let format of visibleFormats\"\n >\n {{ getFilterFormatTitle(format) }}\n </gn-ui-button>\n </div>\n</div>\n<div class=\"mb-2 sm:mb-3\" *ngFor=\"let link of filteredLinks\">\n <gn-ui-download-item\n [link]=\"link\"\n [color]=\"getLinkColor(link)\"\n [format]=\"getLinkFormat(link)\"\n [isFromWfs]=\"isFromWfs(link)\"\n ></gn-ui-download-item>\n</div>\n" }]
|
|
79
|
+
}], ctorParameters: function () { return [{ type: i1.TranslateService }]; }, propDecorators: { links: [{
|
|
80
|
+
type: Input
|
|
81
|
+
}] } });
|
|
82
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG93bmxvYWRzLWxpc3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9lbGVtZW50cy9zcmMvbGliL2Rvd25sb2Fkcy1saXN0L2Rvd25sb2Fkcy1saXN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9kb3dubG9hZHMtbGlzdC9kb3dubG9hZHMtbGlzdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUN0RCxPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0seUNBQXlDLENBQUE7QUFDaEUsT0FBTyxFQUFFLGFBQWEsRUFBRSxhQUFhLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQTs7Ozs7O0FBR3JGLE1BQU0sQ0FBQywyQkFBMkIsQ0FBQyxDQUFBO0FBQ25DLE1BQU0sQ0FBQyw4QkFBOEIsQ0FBQyxDQUFBO0FBRXRDLE1BQU0sY0FBYyxHQUFHLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxPQUFPLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBRSxRQUFRLENBQVUsQ0FBQTtBQVNoRixNQUFNLE9BQU8sc0JBQXNCO0lBQ2pDLFlBQW9CLGdCQUFrQztRQUFsQyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWtCO1FBSXRELHdCQUFtQixHQUFtQixDQUFDLEtBQUssQ0FBQyxDQUFBO0lBSlksQ0FBQztJQU0xRCxJQUFJLGFBQWE7UUFDZixPQUFPLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FDaEMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLElBQUksQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQ3ZDLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxFQUFFLE1BQU0sQ0FBQyxDQUNsQyxDQUNGLENBQUE7SUFDSCxDQUFDO0lBRUQsSUFBSSxjQUFjO1FBQ2hCLE9BQU8sY0FBYyxDQUFDLE1BQU0sQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQ3RDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsY0FBYyxDQUFDLElBQUksRUFBRSxNQUFNLENBQUMsQ0FBQyxDQUM3RCxDQUFBO0lBQ0gsQ0FBQztJQUVELGtCQUFrQixDQUFDLE1BQW9CO1FBQ3JDLElBQUksTUFBTSxLQUFLLEtBQUssRUFBRTtZQUNwQixJQUFJLENBQUMsbUJBQW1CLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQTtZQUNsQyxPQUFNO1NBQ1A7UUFDRCxJQUFJLElBQUksQ0FBQyxjQUFjLENBQUMsTUFBTSxDQUFDLEVBQUU7WUFDL0IsSUFBSSxDQUFDLG1CQUFtQixHQUFHLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLENBQ3hELENBQUMsQ0FBUyxFQUFFLEVBQUUsQ0FBQyxNQUFNLEtBQUssQ0FBQyxDQUM1QixDQUFBO1NBQ0Y7YUFBTTtZQUNMLElBQUksQ0FBQyxtQkFBbUIsR0FBRztnQkFDekIsR0FBRyxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssS0FBSyxDQUFDO2dCQUN0RCxNQUFNO2FBQ1AsQ0FBQTtTQUNGO1FBQ0QsSUFBSSxJQUFJLENBQUMsbUJBQW1CLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRTtZQUN6QyxJQUFJLENBQUMsbUJBQW1CLEdBQUcsQ0FBQyxLQUFLLENBQUMsQ0FBQTtTQUNuQztJQUNILENBQUM7SUFFRCxjQUFjLENBQUMsTUFBb0I7UUFDakMsT0FBTyxJQUFJLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFBO0lBQ2xELENBQUM7SUFFRCxvQkFBb0IsQ0FBQyxNQUFvQjtRQUN2QyxJQUFJLE1BQU0sS0FBSyxLQUFLLElBQUksTUFBTSxLQUFLLFFBQVEsRUFBRTtZQUMzQyxPQUFPLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLENBQUMseUJBQXlCLE1BQU0sRUFBRSxDQUFDLENBQUE7U0FDeEU7UUFDRCxPQUFPLE1BQU0sQ0FBQTtJQUNmLENBQUM7SUFFRCxjQUFjLENBQUMsSUFBeUIsRUFBRSxNQUFvQjtRQUM1RCxJQUFJLE1BQU0sS0FBSyxLQUFLLEVBQUU7WUFDcEIsT0FBTyxJQUFJLENBQUE7U0FDWjtRQUNELElBQUksYUFBYSxDQUFDLElBQUksQ0FBQyxLQUFLLElBQUksRUFBRTtZQUNoQyxPQUFPLE1BQU0sS0FBSyxRQUFRLENBQUE7U0FDM0I7UUFDRCxJQUFJLE1BQU0sS0FBSyxRQUFRLEVBQUU7WUFDdkIsTUFBTSxZQUFZLEdBQUcsY0FBYyxDQUFDLE1BQU0sQ0FDeEMsQ0FBQyxNQUFNLEVBQUUsRUFBRSxDQUFDLE1BQU0sS0FBSyxLQUFLLElBQUksTUFBTSxLQUFLLFFBQVEsQ0FDcEQsQ0FBQTtZQUNELE9BQU8sWUFBWSxDQUFDLEtBQUssQ0FDdkIsQ0FBQyxXQUFXLEVBQUUsRUFBRSxDQUFDLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQUMsQ0FDNUQsQ0FBQTtTQUNGO1FBQ0QsT0FBTyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxDQUFBO0lBQzdDLENBQUM7SUFFRCxhQUFhLENBQUMsSUFBeUI7UUFDckMsT0FBTyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUE7SUFDNUIsQ0FBQztJQUVELFlBQVksQ0FBQyxJQUF5QjtRQUNwQyxPQUFPLGFBQWEsQ0FBQyxhQUFhLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQTtJQUMzQyxDQUFDO0lBRUQsU0FBUyxDQUFDLElBQXlCO1FBQ2pDLE9BQU8sSUFBSSxDQUFDLElBQUksS0FBSyxTQUFTLElBQUksSUFBSSxDQUFDLHFCQUFxQixLQUFLLEtBQUssQ0FBQTtJQUN4RSxDQUFDOzhHQWhGVSxzQkFBc0I7a0dBQXRCLHNCQUFzQix3RkNsQm5DLDJnQ0FpQ0E7OzJGRGZhLHNCQUFzQjtrQkFObEMsU0FBUzsrQkFDRSxzQkFBc0IsbUJBR2YsdUJBQXVCLENBQUMsTUFBTTt1R0FLdEMsS0FBSztzQkFBYixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQgeyBtYXJrZXIgfSBmcm9tICdAYmllc2JqZXJnL25neC10cmFuc2xhdGUtZXh0cmFjdC1tYXJrZXInXG5pbXBvcnQgeyBnZXRCYWRnZUNvbG9yLCBnZXRGaWxlRm9ybWF0IH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL3NoYXJlZC9zcmMnXG5pbXBvcnQgeyBEYXRhc2V0RGlzdHJpYnV0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvcmVjb3JkJ1xuXG5tYXJrZXIoJ2RhdGFodWIuc2VhcmNoLmZpbHRlci5hbGwnKVxubWFya2VyKCdkYXRhaHViLnNlYXJjaC5maWx0ZXIub3RoZXJzJylcblxuY29uc3QgRklMVEVSX0ZPUk1BVFMgPSBbJ2FsbCcsICdjc3YnLCAnZXhjZWwnLCAnanNvbicsICdzaHAnLCAnb3RoZXJzJ10gYXMgY29uc3RcbnR5cGUgRmlsdGVyRm9ybWF0ID0gdHlwZW9mIEZJTFRFUl9GT1JNQVRTW251bWJlcl1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZG93bmxvYWRzLWxpc3QnLFxuICB0ZW1wbGF0ZVVybDogJy4vZG93bmxvYWRzLWxpc3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kb3dubG9hZHMtbGlzdC5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBEb3dubG9hZHNMaXN0Q29tcG9uZW50IHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSB0cmFuc2xhdGVTZXJ2aWNlOiBUcmFuc2xhdGVTZXJ2aWNlKSB7fVxuXG4gIEBJbnB1dCgpIGxpbmtzOiBEYXRhc2V0RGlzdHJpYnV0aW9uW11cblxuICBhY3RpdmVGaWx0ZXJGb3JtYXRzOiBGaWx0ZXJGb3JtYXRbXSA9IFsnYWxsJ11cblxuICBnZXQgZmlsdGVyZWRMaW5rcygpOiBEYXRhc2V0RGlzdHJpYnV0aW9uW10ge1xuICAgIHJldHVybiB0aGlzLmxpbmtzLmZpbHRlcigobGluaykgPT5cbiAgICAgIHRoaXMuYWN0aXZlRmlsdGVyRm9ybWF0cy5zb21lKChmb3JtYXQpID0+XG4gICAgICAgIHRoaXMuaXNMaW5rT2ZGb3JtYXQobGluaywgZm9ybWF0KVxuICAgICAgKVxuICAgIClcbiAgfVxuXG4gIGdldCB2aXNpYmxlRm9ybWF0cygpOiBGaWx0ZXJGb3JtYXRbXSB7XG4gICAgcmV0dXJuIEZJTFRFUl9GT1JNQVRTLmZpbHRlcigoZm9ybWF0KSA9PlxuICAgICAgdGhpcy5saW5rcy5zb21lKChsaW5rKSA9PiB0aGlzLmlzTGlua09mRm9ybWF0KGxpbmssIGZvcm1hdCkpXG4gICAgKVxuICB9XG5cbiAgdG9nZ2xlRmlsdGVyRm9ybWF0KGZvcm1hdDogRmlsdGVyRm9ybWF0KTogdm9pZCB7XG4gICAgaWYgKGZvcm1hdCA9PT0gJ2FsbCcpIHtcbiAgICAgIHRoaXMuYWN0aXZlRmlsdGVyRm9ybWF0cyA9IFsnYWxsJ11cbiAgICAgIHJldHVyblxuICAgIH1cbiAgICBpZiAodGhpcy5pc0ZpbHRlckFjdGl2ZShmb3JtYXQpKSB7XG4gICAgICB0aGlzLmFjdGl2ZUZpbHRlckZvcm1hdHMgPSB0aGlzLmFjdGl2ZUZpbHRlckZvcm1hdHMuZmlsdGVyKFxuICAgICAgICAoZjogc3RyaW5nKSA9PiBmb3JtYXQgIT09IGZcbiAgICAgIClcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5hY3RpdmVGaWx0ZXJGb3JtYXRzID0gW1xuICAgICAgICAuLi50aGlzLmFjdGl2ZUZpbHRlckZvcm1hdHMuZmlsdGVyKChmKSA9PiBmICE9PSAnYWxsJyksXG4gICAgICAgIGZvcm1hdCxcbiAgICAgIF1cbiAgICB9XG4gICAgaWYgKHRoaXMuYWN0aXZlRmlsdGVyRm9ybWF0cy5sZW5ndGggPT09IDApIHtcbiAgICAgIHRoaXMuYWN0aXZlRmlsdGVyRm9ybWF0cyA9IFsnYWxsJ11cbiAgICB9XG4gIH1cblxuICBpc0ZpbHRlckFjdGl2ZShmaWx0ZXI6IEZpbHRlckZvcm1hdCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLmFjdGl2ZUZpbHRlckZvcm1hdHMuaW5jbHVkZXMoZmlsdGVyKVxuICB9XG5cbiAgZ2V0RmlsdGVyRm9ybWF0VGl0bGUoZm9ybWF0OiBGaWx0ZXJGb3JtYXQpIHtcbiAgICBpZiAoZm9ybWF0ID09PSAnYWxsJyB8fCBmb3JtYXQgPT09ICdvdGhlcnMnKSB7XG4gICAgICByZXR1cm4gdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoYGRhdGFodWIuc2VhcmNoLmZpbHRlci4ke2Zvcm1hdH1gKVxuICAgIH1cbiAgICByZXR1cm4gZm9ybWF0XG4gIH1cblxuICBpc0xpbmtPZkZvcm1hdChsaW5rOiBEYXRhc2V0RGlzdHJpYnV0aW9uLCBmb3JtYXQ6IEZpbHRlckZvcm1hdCk6IGJvb2xlYW4ge1xuICAgIGlmIChmb3JtYXQgPT09ICdhbGwnKSB7XG4gICAgICByZXR1cm4gdHJ1ZVxuICAgIH1cbiAgICBpZiAoZ2V0RmlsZUZvcm1hdChsaW5rKSA9PT0gbnVsbCkge1xuICAgICAgcmV0dXJuIGZvcm1hdCA9PT0gJ290aGVycydcbiAgICB9XG4gICAgaWYgKGZvcm1hdCA9PT0gJ290aGVycycpIHtcbiAgICAgIGNvbnN0IGtub3duRm9ybWF0cyA9IEZJTFRFUl9GT1JNQVRTLmZpbHRlcihcbiAgICAgICAgKGZvcm1hdCkgPT4gZm9ybWF0ICE9PSAnYWxsJyAmJiBmb3JtYXQgIT09ICdvdGhlcnMnXG4gICAgICApXG4gICAgICByZXR1cm4ga25vd25Gb3JtYXRzLmV2ZXJ5KFxuICAgICAgICAoa25vd25Gb3JtYXQpID0+ICFnZXRGaWxlRm9ybWF0KGxpbmspLmluY2x1ZGVzKGtub3duRm9ybWF0KVxuICAgICAgKVxuICAgIH1cbiAgICByZXR1cm4gZ2V0RmlsZUZvcm1hdChsaW5rKS5pbmNsdWRlcyhmb3JtYXQpXG4gIH1cblxuICBnZXRMaW5rRm9ybWF0KGxpbms6IERhdGFzZXREaXN0cmlidXRpb24pIHtcbiAgICByZXR1cm4gZ2V0RmlsZUZvcm1hdChsaW5rKVxuICB9XG5cbiAgZ2V0TGlua0NvbG9yKGxpbms6IERhdGFzZXREaXN0cmlidXRpb24pIHtcbiAgICByZXR1cm4gZ2V0QmFkZ2VDb2xvcihnZXRGaWxlRm9ybWF0KGxpbmspKVxuICB9XG5cbiAgaXNGcm9tV2ZzKGxpbms6IERhdGFzZXREaXN0cmlidXRpb24pIHtcbiAgICByZXR1cm4gbGluay50eXBlID09PSAnc2VydmljZScgJiYgbGluay5hY2Nlc3NTZXJ2aWNlUHJvdG9jb2wgPT09ICd3ZnMnXG4gIH1cbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJmbGV4IGZsZXgtd3JhcCBqdXN0aWZ5LWJldHdlZW4gbXQtOCBtYi02IHNtOm10LTEyIHNtOm1iLTJcIlxuICAqbmdJZj1cImxpbmtzICYmIGxpbmtzLmxlbmd0aCA+IDBcIlxuPlxuICA8cFxuICAgIGNsYXNzPVwiZm9udC10aXRsZSB0ZXh0LVsyOHB4XSB0ZXh0LXRpdGxlIGZvbnQtbWVkaXVtIG1yLTQgcGItNCB0ZXh0LWNlbnRlciBzbTp0ZXh0LWxlZnRcIlxuICAgIHRyYW5zbGF0ZVxuICA+XG4gICAgcmVjb3JkLm1ldGFkYXRhLmRvd25sb2FkXG4gIDwvcD5cbiAgPGRpdiBjbGFzcz1cImZsZXggZmxleC13cmFwIGp1c3RpZnktc3RhcnQgc206anVzdGlmeS1lbmQgc206cGItNFwiPlxuICAgIDxnbi11aS1idXR0b25cbiAgICAgIGNsYXNzPVwibS0xIGZvcm1hdC1maWx0ZXJcIlxuICAgICAgW2V4dHJhQ2xhc3NdPVwiXG4gICAgICAgICchcHgtWzEycHhdICFweS1bOHB4XSAhdGV4dC1bMTVweF0nICtcbiAgICAgICAgKGlzRmlsdGVyQWN0aXZlKGZvcm1hdCkgPyAnIG9wYWNpdHktMTAwJyA6ICcgb3BhY2l0eS01MCcpXG4gICAgICBcIlxuICAgICAgKGJ1dHRvbkNsaWNrKT1cInRvZ2dsZUZpbHRlckZvcm1hdChmb3JtYXQpXCJcbiAgICAgIFthdHRyLmRhdGEtZm9ybWF0XT1cImZvcm1hdFwiXG4gICAgICAqbmdGb3I9XCJsZXQgZm9ybWF0IG9mIHZpc2libGVGb3JtYXRzXCJcbiAgICA+XG4gICAgICB7eyBnZXRGaWx0ZXJGb3JtYXRUaXRsZShmb3JtYXQpIH19XG4gICAgPC9nbi11aS1idXR0b24+XG4gIDwvZGl2PlxuPC9kaXY+XG48ZGl2IGNsYXNzPVwibWItMiBzbTptYi0zXCIgKm5nRm9yPVwibGV0IGxpbmsgb2YgZmlsdGVyZWRMaW5rc1wiPlxuICA8Z24tdWktZG93bmxvYWQtaXRlbVxuICAgIFtsaW5rXT1cImxpbmtcIlxuICAgIFtjb2xvcl09XCJnZXRMaW5rQ29sb3IobGluaylcIlxuICAgIFtmb3JtYXRdPVwiZ2V0TGlua0Zvcm1hdChsaW5rKVwiXG4gICAgW2lzRnJvbVdmc109XCJpc0Zyb21XZnMobGluaylcIlxuICA+PC9nbi11aS1kb3dubG9hZC1pdGVtPlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component, ChangeDetectionStrategy, 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
|
+
export class LinkCardComponent {
|
|
6
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LinkCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: LinkCardComponent, selector: "gn-ui-link-card", inputs: { link: "link" }, ngImport: i0, template: "<a\n [href]=\"link.url\"\n target=\"_blank\"\n class=\"flex flex-col justify-between group h-40 grow py-5 px-5 bg-white rounded border-gray-300 filter card-shadow overflow-hidden lg:w-80\"\n>\n <div class=\"max-h-24 overflow-hidden text-ellipsis\">\n <p\n class=\"font-title font-medium text-21 text-black break-words pb-1 line-clamp-2\"\n >\n {{ link.name }}\n </p>\n <p class=\"font-medium text-sm break-words\">\n {{ link.description }}\n </p>\n <p\n *ngIf=\"!link.name && !link.description\"\n class=\"font-medium text-sm break-words truncate\"\n >\n {{ link.url }}\n </p>\n </div>\n <div>\n <mat-icon class=\"material-symbols-outlined card-icon\">open_in_new</mat-icon>\n </div>\n</a>\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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
8
|
+
}
|
|
9
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: LinkCardComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{ selector: 'gn-ui-link-card', changeDetection: ChangeDetectionStrategy.OnPush, template: "<a\n [href]=\"link.url\"\n target=\"_blank\"\n class=\"flex flex-col justify-between group h-40 grow py-5 px-5 bg-white rounded border-gray-300 filter card-shadow overflow-hidden lg:w-80\"\n>\n <div class=\"max-h-24 overflow-hidden text-ellipsis\">\n <p\n class=\"font-title font-medium text-21 text-black break-words pb-1 line-clamp-2\"\n >\n {{ link.name }}\n </p>\n <p class=\"font-medium text-sm break-words\">\n {{ link.description }}\n </p>\n <p\n *ngIf=\"!link.name && !link.description\"\n class=\"font-medium text-sm break-words truncate\"\n >\n {{ link.url }}\n </p>\n </div>\n <div>\n <mat-icon class=\"material-symbols-outlined card-icon\">open_in_new</mat-icon>\n </div>\n</a>\n" }]
|
|
12
|
+
}], propDecorators: { link: [{
|
|
13
|
+
type: Input
|
|
14
|
+
}] } });
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGluay1jYXJkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9saW5rLWNhcmQvbGluay1jYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9saW5rLWNhcmQvbGluay1jYXJkLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsdUJBQXVCLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFBOzs7O0FBU3pFLE1BQU0sT0FBTyxpQkFBaUI7OEdBQWpCLGlCQUFpQjtrR0FBakIsaUJBQWlCLGlGQ1Q5QixxdkJBeUJBOzsyRkRoQmEsaUJBQWlCO2tCQU43QixTQUFTOytCQUNFLGlCQUFpQixtQkFHVix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxJQUFJO3NCQUFaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBEYXRhc2V0RGlzdHJpYnV0aW9uIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21tb24vZG9tYWluL3NyYy9saWIvcmVjb3JkJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1saW5rLWNhcmQnLFxuICB0ZW1wbGF0ZVVybDogJy4vbGluay1jYXJkLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vbGluay1jYXJkLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIExpbmtDYXJkQ29tcG9uZW50IHtcbiAgQElucHV0KCkgbGluazogRGF0YXNldERpc3RyaWJ1dGlvblxufVxuIiwiPGFcbiAgW2hyZWZdPVwibGluay51cmxcIlxuICB0YXJnZXQ9XCJfYmxhbmtcIlxuICBjbGFzcz1cImZsZXggZmxleC1jb2wganVzdGlmeS1iZXR3ZWVuIGdyb3VwIGgtNDAgZ3JvdyBweS01IHB4LTUgYmctd2hpdGUgcm91bmRlZCBib3JkZXItZ3JheS0zMDAgZmlsdGVyIGNhcmQtc2hhZG93IG92ZXJmbG93LWhpZGRlbiBsZzp3LTgwXCJcbj5cbiAgPGRpdiBjbGFzcz1cIm1heC1oLTI0IG92ZXJmbG93LWhpZGRlbiB0ZXh0LWVsbGlwc2lzXCI+XG4gICAgPHBcbiAgICAgIGNsYXNzPVwiZm9udC10aXRsZSBmb250LW1lZGl1bSB0ZXh0LTIxIHRleHQtYmxhY2sgYnJlYWstd29yZHMgcGItMSBsaW5lLWNsYW1wLTJcIlxuICAgID5cbiAgICAgIHt7IGxpbmsubmFtZSB9fVxuICAgIDwvcD5cbiAgICA8cCBjbGFzcz1cImZvbnQtbWVkaXVtIHRleHQtc20gYnJlYWstd29yZHNcIj5cbiAgICAgIHt7IGxpbmsuZGVzY3JpcHRpb24gfX1cbiAgICA8L3A+XG4gICAgPHBcbiAgICAgICpuZ0lmPVwiIWxpbmsubmFtZSAmJiAhbGluay5kZXNjcmlwdGlvblwiXG4gICAgICBjbGFzcz1cImZvbnQtbWVkaXVtIHRleHQtc20gYnJlYWstd29yZHMgdHJ1bmNhdGVcIlxuICAgID5cbiAgICAgIHt7IGxpbmsudXJsIH19XG4gICAgPC9wPlxuICA8L2Rpdj5cbiAgPGRpdj5cbiAgICA8bWF0LWljb24gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGNhcmQtaWNvblwiPm9wZW5faW5fbmV3PC9tYXQtaWNvbj5cbiAgPC9kaXY+XG48L2E+XG4iXX0=
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@ngx-translate/core";
|
|
4
|
+
export class MetadataCatalogComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataCatalogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MetadataCatalogComponent, selector: "gn-ui-metadata-catalog", inputs: { sourceLabel: "sourceLabel" }, ngImport: i0, template: "<div>\n <p class=\"text-gray-700 text-xs mb-3 uppercase\" translate>\n record.metadata.catalog\n </p>\n <p class=\"text-primary font-title text-21 mb-1\">\n {{ sourceLabel }}\n </p>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataCatalogComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{ selector: 'gn-ui-metadata-catalog', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div>\n <p class=\"text-gray-700 text-xs mb-3 uppercase\" translate>\n record.metadata.catalog\n </p>\n <p class=\"text-primary font-title text-21 mb-1\">\n {{ sourceLabel }}\n </p>\n</div>\n" }]
|
|
11
|
+
}], propDecorators: { sourceLabel: [{
|
|
12
|
+
type: Input
|
|
13
|
+
}] } });
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YWRhdGEtY2F0YWxvZy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvbWV0YWRhdGEtY2F0YWxvZy9tZXRhZGF0YS1jYXRhbG9nLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1jYXRhbG9nL21ldGFkYXRhLWNhdGFsb2cuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7OztBQVF6RSxNQUFNLE9BQU8sd0JBQXdCOzhHQUF4Qix3QkFBd0I7a0dBQXhCLHdCQUF3QixzR0NSckMsMk1BUUE7OzJGREFhLHdCQUF3QjtrQkFOcEMsU0FBUzsrQkFDRSx3QkFBd0IsbUJBR2pCLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLFdBQVc7c0JBQW5CLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLW1ldGFkYXRhLWNhdGFsb2cnLFxuICB0ZW1wbGF0ZVVybDogJy4vbWV0YWRhdGEtY2F0YWxvZy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL21ldGFkYXRhLWNhdGFsb2cuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgTWV0YWRhdGFDYXRhbG9nQ29tcG9uZW50IHtcbiAgQElucHV0KCkgc291cmNlTGFiZWw6IHN0cmluZ1xufVxuIiwiPGRpdj5cbiAgPHAgY2xhc3M9XCJ0ZXh0LWdyYXktNzAwIHRleHQteHMgbWItMyB1cHBlcmNhc2VcIiB0cmFuc2xhdGU+XG4gICAgcmVjb3JkLm1ldGFkYXRhLmNhdGFsb2dcbiAgPC9wPlxuICA8cCBjbGFzcz1cInRleHQtcHJpbWFyeSBmb250LXRpdGxlIHRleHQtMjEgbWItMVwiPlxuICAgIHt7IHNvdXJjZUxhYmVsIH19XG4gIDwvcD5cbjwvZGl2PlxuIl19
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
export class MetadataContactComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.organizationClick = new EventEmitter();
|
|
9
|
+
this.contactClick = new EventEmitter();
|
|
10
|
+
}
|
|
11
|
+
get shownOrganization() {
|
|
12
|
+
return this.metadata.ownerOrganization;
|
|
13
|
+
}
|
|
14
|
+
get contacts() {
|
|
15
|
+
return ((this.metadata.kind === 'dataset'
|
|
16
|
+
? this.metadata.contactsForResource
|
|
17
|
+
: this.metadata.contacts) || []);
|
|
18
|
+
}
|
|
19
|
+
onOrganizationClick() {
|
|
20
|
+
this.organizationClick.emit(this.shownOrganization);
|
|
21
|
+
}
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataContactComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: MetadataContactComponent, selector: "gn-ui-metadata-contact", inputs: { metadata: "metadata" }, outputs: { organizationClick: "organizationClick", contactClick: "contactClick" }, ngImport: i0, template: "<div *ngIf=\"shownOrganization\" class=\"mb-6 sm:mb-12\">\n <p class=\"text-gray-700 text-xs mb-3 uppercase\" translate>\n record.metadata.contact\n </p>\n <div class=\"flex mb-1\">\n <div\n class=\"text-primary font-title text-21 mr-2 cursor-pointer hover:underline\"\n (click)=\"onOrganizationClick()\"\n >\n {{ shownOrganization.name }}\n </div>\n </div>\n <a\n *ngIf=\"contacts.length\"\n [href]=\"'mailto:' + contacts[0].email\"\n class=\"text-gray-700 text-sm hover:underline\"\n target=\"_blank\"\n >{{ contacts[0].email }}</a\n >\n <div *ngIf=\"shownOrganization.website\" class=\"mb-2\">\n <a\n [href]=\"shownOrganization.website\"\n target=\"_blank\"\n class=\"contact-website text-primary text-sm cursor-pointer hover:underline transition-all\"\n >{{ shownOrganization.website }}\n <mat-icon\n class=\"material-symbols-outlined !w-[12px] !h-[12px] !text-[12px] opacity-75\"\n >open_in_new</mat-icon\n >\n </a>\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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
24
|
+
}
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: MetadataContactComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{ selector: 'gn-ui-metadata-contact', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"shownOrganization\" class=\"mb-6 sm:mb-12\">\n <p class=\"text-gray-700 text-xs mb-3 uppercase\" translate>\n record.metadata.contact\n </p>\n <div class=\"flex mb-1\">\n <div\n class=\"text-primary font-title text-21 mr-2 cursor-pointer hover:underline\"\n (click)=\"onOrganizationClick()\"\n >\n {{ shownOrganization.name }}\n </div>\n </div>\n <a\n *ngIf=\"contacts.length\"\n [href]=\"'mailto:' + contacts[0].email\"\n class=\"text-gray-700 text-sm hover:underline\"\n target=\"_blank\"\n >{{ contacts[0].email }}</a\n >\n <div *ngIf=\"shownOrganization.website\" class=\"mb-2\">\n <a\n [href]=\"shownOrganization.website\"\n target=\"_blank\"\n class=\"contact-website text-primary text-sm cursor-pointer hover:underline transition-all\"\n >{{ shownOrganization.website }}\n <mat-icon\n class=\"material-symbols-outlined !w-[12px] !h-[12px] !text-[12px] opacity-75\"\n >open_in_new</mat-icon\n >\n </a>\n </div>\n</div>\n" }]
|
|
28
|
+
}], propDecorators: { metadata: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], organizationClick: [{
|
|
31
|
+
type: Output
|
|
32
|
+
}], contactClick: [{
|
|
33
|
+
type: Output
|
|
34
|
+
}] } });
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWV0YWRhdGEtY29udGFjdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvbWV0YWRhdGEtY29udGFjdC9tZXRhZGF0YS1jb250YWN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9tZXRhZGF0YS1jb250YWN0L21ldGFkYXRhLWNvbnRhY3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUE7Ozs7O0FBYXRCLE1BQU0sT0FBTyx3QkFBd0I7SUFOckM7UUFRWSxzQkFBaUIsR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQTtRQUNwRCxpQkFBWSxHQUFHLElBQUksWUFBWSxFQUFjLENBQUE7S0FpQnhEO0lBZkMsSUFBSSxpQkFBaUI7UUFDbkIsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLGlCQUFpQixDQUFBO0lBQ3hDLENBQUM7SUFFRCxJQUFJLFFBQVE7UUFDVixPQUFPLENBQ0wsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLElBQUksS0FBSyxTQUFTO1lBQy9CLENBQUMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLG1CQUFtQjtZQUNuQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQ2xDLENBQUE7SUFDSCxDQUFDO0lBRUQsbUJBQW1CO1FBQ2pCLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUE7SUFDckQsQ0FBQzs4R0FuQlUsd0JBQXdCO2tHQUF4Qix3QkFBd0IsbUxDbkJyQyxpaENBZ0NBOzsyRkRiYSx3QkFBd0I7a0JBTnBDLFNBQVM7K0JBQ0Usd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxRQUFRO3NCQUFoQixLQUFLO2dCQUNJLGlCQUFpQjtzQkFBMUIsTUFBTTtnQkFDRyxZQUFZO3NCQUFyQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHtcbiAgQ2F0YWxvZ1JlY29yZCxcbiAgSW5kaXZpZHVhbCxcbiAgT3JnYW5pemF0aW9uLFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9yZWNvcmQnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLW1ldGFkYXRhLWNvbnRhY3QnLFxuICB0ZW1wbGF0ZVVybDogJy4vbWV0YWRhdGEtY29udGFjdC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL21ldGFkYXRhLWNvbnRhY3QuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgTWV0YWRhdGFDb250YWN0Q29tcG9uZW50IHtcbiAgQElucHV0KCkgbWV0YWRhdGE6IFBhcnRpYWw8Q2F0YWxvZ1JlY29yZD5cbiAgQE91dHB1dCgpIG9yZ2FuaXphdGlvbkNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcjxPcmdhbml6YXRpb24+KClcbiAgQE91dHB1dCgpIGNvbnRhY3RDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8SW5kaXZpZHVhbD4oKVxuXG4gIGdldCBzaG93bk9yZ2FuaXphdGlvbigpIHtcbiAgICByZXR1cm4gdGhpcy5tZXRhZGF0YS5vd25lck9yZ2FuaXphdGlvblxuICB9XG5cbiAgZ2V0IGNvbnRhY3RzKCkge1xuICAgIHJldHVybiAoXG4gICAgICAodGhpcy5tZXRhZGF0YS5raW5kID09PSAnZGF0YXNldCdcbiAgICAgICAgPyB0aGlzLm1ldGFkYXRhLmNvbnRhY3RzRm9yUmVzb3VyY2VcbiAgICAgICAgOiB0aGlzLm1ldGFkYXRhLmNvbnRhY3RzKSB8fCBbXVxuICAgIClcbiAgfVxuXG4gIG9uT3JnYW5pemF0aW9uQ2xpY2soKSB7XG4gICAgdGhpcy5vcmdhbml6YXRpb25DbGljay5lbWl0KHRoaXMuc2hvd25Pcmdhbml6YXRpb24pXG4gIH1cbn1cbiIsIjxkaXYgKm5nSWY9XCJzaG93bk9yZ2FuaXphdGlvblwiIGNsYXNzPVwibWItNiBzbTptYi0xMlwiPlxuICA8cCBjbGFzcz1cInRleHQtZ3JheS03MDAgdGV4dC14cyBtYi0zIHVwcGVyY2FzZVwiIHRyYW5zbGF0ZT5cbiAgICByZWNvcmQubWV0YWRhdGEuY29udGFjdFxuICA8L3A+XG4gIDxkaXYgY2xhc3M9XCJmbGV4IG1iLTFcIj5cbiAgICA8ZGl2XG4gICAgICBjbGFzcz1cInRleHQtcHJpbWFyeSBmb250LXRpdGxlIHRleHQtMjEgbXItMiBjdXJzb3ItcG9pbnRlciBob3Zlcjp1bmRlcmxpbmVcIlxuICAgICAgKGNsaWNrKT1cIm9uT3JnYW5pemF0aW9uQ2xpY2soKVwiXG4gICAgPlxuICAgICAge3sgc2hvd25Pcmdhbml6YXRpb24ubmFtZSB9fVxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbiAgPGFcbiAgICAqbmdJZj1cImNvbnRhY3RzLmxlbmd0aFwiXG4gICAgW2hyZWZdPVwiJ21haWx0bzonICsgY29udGFjdHNbMF0uZW1haWxcIlxuICAgIGNsYXNzPVwidGV4dC1ncmF5LTcwMCB0ZXh0LXNtIGhvdmVyOnVuZGVybGluZVwiXG4gICAgdGFyZ2V0PVwiX2JsYW5rXCJcbiAgICA+e3sgY29udGFjdHNbMF0uZW1haWwgfX08L2FcbiAgPlxuICA8ZGl2ICpuZ0lmPVwic2hvd25Pcmdhbml6YXRpb24ud2Vic2l0ZVwiIGNsYXNzPVwibWItMlwiPlxuICAgIDxhXG4gICAgICBbaHJlZl09XCJzaG93bk9yZ2FuaXphdGlvbi53ZWJzaXRlXCJcbiAgICAgIHRhcmdldD1cIl9ibGFua1wiXG4gICAgICBjbGFzcz1cImNvbnRhY3Qtd2Vic2l0ZSB0ZXh0LXByaW1hcnkgdGV4dC1zbSBjdXJzb3ItcG9pbnRlciBob3Zlcjp1bmRlcmxpbmUgdHJhbnNpdGlvbi1hbGxcIlxuICAgICAgPnt7IHNob3duT3JnYW5pemF0aW9uLndlYnNpdGUgfX1cbiAgICAgIDxtYXQtaWNvblxuICAgICAgICBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgIXctWzEycHhdICFoLVsxMnB4XSAhdGV4dC1bMTJweF0gb3BhY2l0eS03NVwiXG4gICAgICAgID5vcGVuX2luX25ldzwvbWF0LWljb25cbiAgICAgID5cbiAgICA8L2E+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* eslint-disable @angular-eslint/directive-selector */
|
|
2
|
+
import { Directive, ElementRef, Renderer2 } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class GnUiLinkifyDirective {
|
|
5
|
+
constructor(el, renderer) {
|
|
6
|
+
this.el = el;
|
|
7
|
+
this.renderer = renderer;
|
|
8
|
+
}
|
|
9
|
+
ngOnInit() {
|
|
10
|
+
setTimeout(() => {
|
|
11
|
+
this.processLinks();
|
|
12
|
+
}, 0);
|
|
13
|
+
}
|
|
14
|
+
processLinks() {
|
|
15
|
+
const container = this.el.nativeElement;
|
|
16
|
+
const nodes = Array.from(container.childNodes);
|
|
17
|
+
nodes.forEach((node) => {
|
|
18
|
+
if (node instanceof Text) {
|
|
19
|
+
const textNode = node;
|
|
20
|
+
const linkified = this.linkifyText(textNode.nodeValue);
|
|
21
|
+
const span = this.renderer.createElement('span');
|
|
22
|
+
span.innerHTML = linkified;
|
|
23
|
+
container.insertBefore(span, textNode);
|
|
24
|
+
container.removeChild(textNode);
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
linkifyText(text) {
|
|
29
|
+
return text.replace(/(\bhttps?:\/\/\S+\b)/g, (match) => {
|
|
30
|
+
return `<a href="${match}" target="_blank"
|
|
31
|
+
class="text-primary cursor-pointer hover:underline">${match} <mat-icon class="material-symbols-outlined !w-[12px] !h-[14px] !text-[14px] opacity-75">open_in_new</mat-icon></a>`;
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GnUiLinkifyDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
35
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.7", type: GnUiLinkifyDirective, selector: "[gnUiLinkify]", ngImport: i0 }); }
|
|
36
|
+
}
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: GnUiLinkifyDirective, decorators: [{
|
|
38
|
+
type: Directive,
|
|
39
|
+
args: [{
|
|
40
|
+
selector: '[gnUiLinkify]',
|
|
41
|
+
}]
|
|
42
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
|
|
43
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGlua2lmeS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvbWV0YWRhdGEtaW5mby9saW5raWZ5LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSx1REFBdUQ7QUFDdkQsT0FBTyxFQUFFLFNBQVMsRUFBRSxVQUFVLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFBOztBQUt4RSxNQUFNLE9BQU8sb0JBQW9CO0lBQy9CLFlBQW9CLEVBQWMsRUFBVSxRQUFtQjtRQUEzQyxPQUFFLEdBQUYsRUFBRSxDQUFZO1FBQVUsYUFBUSxHQUFSLFFBQVEsQ0FBVztJQUFHLENBQUM7SUFFbkUsUUFBUTtRQUNOLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUE7UUFDckIsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFBO0lBQ1AsQ0FBQztJQUVPLFlBQVk7UUFDbEIsTUFBTSxTQUFTLEdBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxhQUFhLENBQUE7UUFFdkMsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsVUFBVSxDQUFDLENBQUE7UUFDOUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFO1lBQ3JCLElBQUksSUFBSSxZQUFZLElBQUksRUFBRTtnQkFDeEIsTUFBTSxRQUFRLEdBQUcsSUFBWSxDQUFBO2dCQUM3QixNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsQ0FBQTtnQkFDdEQsTUFBTSxJQUFJLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLENBQUE7Z0JBQ2hELElBQUksQ0FBQyxTQUFTLEdBQUcsU0FBUyxDQUFBO2dCQUMxQixTQUFTLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxRQUFRLENBQUMsQ0FBQTtnQkFDdEMsU0FBUyxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsQ0FBQTthQUNoQztRQUNILENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQztJQUVPLFdBQVcsQ0FBQyxJQUFZO1FBQzlCLE9BQU8sSUFBSSxDQUFDLE9BQU8sQ0FBQyx1QkFBdUIsRUFBRSxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQ3JELE9BQU8sWUFBWSxLQUFLO3dFQUMwQyxLQUFLLHFIQUFxSCxDQUFBO1FBQzlMLENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQzs4R0E5QlUsb0JBQW9CO2tHQUFwQixvQkFBb0I7OzJGQUFwQixvQkFBb0I7a0JBSGhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGVBQWU7aUJBQzFCIiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgQGFuZ3VsYXItZXNsaW50L2RpcmVjdGl2ZS1zZWxlY3RvciAqL1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBSZW5kZXJlcjIsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tnblVpTGlua2lmeV0nLFxufSlcbmV4cG9ydCBjbGFzcyBHblVpTGlua2lmeURpcmVjdGl2ZSBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZWw6IEVsZW1lbnRSZWYsIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMikge31cblxuICBuZ09uSW5pdCgpIHtcbiAgICBzZXRUaW1lb3V0KCgpID0+IHtcbiAgICAgIHRoaXMucHJvY2Vzc0xpbmtzKClcbiAgICB9LCAwKVxuICB9XG5cbiAgcHJpdmF0ZSBwcm9jZXNzTGlua3MoKSB7XG4gICAgY29uc3QgY29udGFpbmVyID0gdGhpcy5lbC5uYXRpdmVFbGVtZW50XG5cbiAgICBjb25zdCBub2RlcyA9IEFycmF5LmZyb20oY29udGFpbmVyLmNoaWxkTm9kZXMpXG4gICAgbm9kZXMuZm9yRWFjaCgobm9kZSkgPT4ge1xuICAgICAgaWYgKG5vZGUgaW5zdGFuY2VvZiBUZXh0KSB7XG4gICAgICAgIGNvbnN0IHRleHROb2RlID0gbm9kZSBhcyBUZXh0XG4gICAgICAgIGNvbnN0IGxpbmtpZmllZCA9IHRoaXMubGlua2lmeVRleHQodGV4dE5vZGUubm9kZVZhbHVlKVxuICAgICAgICBjb25zdCBzcGFuID0gdGhpcy5yZW5kZXJlci5jcmVhdGVFbGVtZW50KCdzcGFuJylcbiAgICAgICAgc3Bhbi5pbm5lckhUTUwgPSBsaW5raWZpZWRcbiAgICAgICAgY29udGFpbmVyLmluc2VydEJlZm9yZShzcGFuLCB0ZXh0Tm9kZSlcbiAgICAgICAgY29udGFpbmVyLnJlbW92ZUNoaWxkKHRleHROb2RlKVxuICAgICAgfVxuICAgIH0pXG4gIH1cblxuICBwcml2YXRlIGxpbmtpZnlUZXh0KHRleHQ6IHN0cmluZyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRleHQucmVwbGFjZSgvKFxcYmh0dHBzPzpcXC9cXC9cXFMrXFxiKS9nLCAobWF0Y2gpID0+IHtcbiAgICAgIHJldHVybiBgPGEgaHJlZj1cIiR7bWF0Y2h9XCIgdGFyZ2V0PVwiX2JsYW5rXCJcbiAgICAgICAgICAgICAgICAgIGNsYXNzPVwidGV4dC1wcmltYXJ5IGN1cnNvci1wb2ludGVyIGhvdmVyOnVuZGVybGluZVwiPiR7bWF0Y2h9IDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgIXctWzEycHhdICFoLVsxNHB4XSAhdGV4dC1bMTRweF0gb3BhY2l0eS03NVwiPm9wZW5faW5fbmV3PC9tYXQtaWNvbj48L2E+YFxuICAgIH0pXG4gIH1cbn1cbiJdfQ==
|