geonetwork-ui 2.8.0-dev.0c9b29721 → 2.8.0-dev.19d5ac73a
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/fesm2022/geonetwork-ui-date-locales-DhlIiWpT.mjs +35 -0
- package/fesm2022/geonetwork-ui-date-locales-DhlIiWpT.mjs.map +1 -0
- package/fesm2022/geonetwork-ui.mjs +2931 -2628
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +6630 -23
- package/index.d.ts.map +1 -1
- package/index.ts +1 -0
- package/package.json +27 -29
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +42 -8
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +3 -5
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +13 -6
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +6 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +4 -2
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +11 -10
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +3 -3
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +4 -6
- package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +4 -6
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +10 -12
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +51 -50
- package/src/libs/api/repository/src/lib/gn4/selection/selection.service.ts +4 -2
- package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +6 -5
- package/src/libs/common/domain/src/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +1 -1
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -1
- package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +5 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +1 -1
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +5 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/api/atom.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/formatters.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/mapservices.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +7 -6
- package/src/libs/data-access/gn4/src/openapi/api.module.ts +5 -10
- package/src/libs/feature/catalog/src/lib/my-org/my-org.service.ts +5 -5
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +19 -17
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +4 -9
- package/src/libs/feature/catalog/src/lib/records/records.service.ts +3 -3
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +6 -5
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +4 -2
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +8 -2
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +4 -6
- package/src/libs/feature/catalog/src/lib/users/users.service.ts +3 -3
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +36 -32
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +6 -6
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +3 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +3 -2
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +32 -7
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +26 -22
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +9 -6
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +20 -17
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +1 -2
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -3
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +16 -13
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -4
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +23 -20
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +8 -10
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +26 -27
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +123 -107
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +9 -10
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +17 -15
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +66 -59
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +1 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.html +20 -19
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +16 -20
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +6 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +48 -53
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +4 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +7 -10
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +43 -19
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +7 -10
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +7 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +1 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +5 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.ts +3 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +27 -25
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.html +7 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +6 -15
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +3 -3
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +30 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +24 -32
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +3 -3
- package/src/libs/feature/editor/src/lib/fields.config.ts +1 -1
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +2 -2
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +3 -3
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +7 -4
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +2 -2
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +16 -8
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +10 -6
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -13
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +39 -36
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +4 -4
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +32 -25
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +4 -8
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +46 -35
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +4 -6
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +33 -31
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +7 -7
- package/src/libs/feature/map/src/lib/geocoding.service.ts +2 -4
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +13 -14
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
- package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +3 -3
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +16 -15
- package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +2 -2
- package/src/libs/feature/record/src/index.ts +1 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +30 -28
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +8 -3
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +6 -5
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +12 -11
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +12 -8
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +6 -9
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +24 -10
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +10 -9
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +7 -13
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +14 -15
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +13 -10
- package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.html +18 -15
- package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +3 -3
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +41 -42
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +13 -10
- package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +4 -4
- package/src/libs/feature/record/src/lib/stac-view/stac-view.component.css +8 -0
- package/src/libs/feature/record/src/lib/stac-view/stac-view.component.html +87 -0
- package/src/libs/feature/record/src/lib/stac-view/stac-view.component.ts +338 -0
- package/src/libs/feature/record/src/lib/stac-view/utils.ts +57 -0
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +6 -8
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +35 -8
- package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +3 -3
- package/src/libs/feature/router/src/lib/default/router.module.ts +4 -2
- package/src/libs/feature/router/src/lib/default/router.service.ts +11 -5
- package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +4 -6
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +12 -15
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +4 -6
- package/src/libs/feature/search/src/lib/constants.ts +1 -1
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +4 -6
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +2 -2
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +5 -6
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +7 -8
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +10 -10
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +5 -6
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -6
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -8
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +10 -3
- package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +7 -6
- package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +5 -7
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +6 -7
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +52 -48
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +15 -17
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +17 -16
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +8 -9
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.html +18 -16
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +9 -15
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.html +20 -20
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +7 -9
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +12 -18
- package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +3 -3
- package/src/libs/feature/search/src/lib/state/effects.ts +10 -12
- package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -8
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -3
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +37 -33
- package/src/libs/feature/search/src/lib/utils/service/search.service.ts +2 -2
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +15 -15
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +1 -2
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +4 -8
- package/src/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.ts +4 -2
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +34 -33
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +5 -6
- package/src/libs/ui/elements/src/index.ts +2 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +55 -50
- package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +25 -23
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +12 -10
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +1 -2
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +7 -5
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +10 -5
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +1 -2
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +5 -3
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +66 -62
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +3 -4
- package/src/libs/ui/elements/src/lib/error/error.component.html +63 -54
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +47 -25
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +12 -3
- package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +15 -15
- package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +8 -3
- package/src/libs/ui/elements/src/lib/image-input/image-input.component.html +83 -89
- package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +4 -5
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +22 -21
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +1 -8
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +38 -33
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +4 -4
- package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +10 -15
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +0 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +83 -69
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.html +32 -0
- package/src/libs/ui/elements/src/lib/metadata-doi/metadata-doi.component.ts +24 -0
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +3 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +333 -271
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +5 -12
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +30 -27
- package/src/libs/ui/elements/src/lib/notification/notification.component.html +5 -8
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +10 -11
- package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +102 -95
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -92
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +11 -8
- package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.css +0 -0
- package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.html +15 -0
- package/src/libs/ui/elements/src/lib/stac-items-result-grid/stac-items-result-grid.component.ts +14 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -8
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +74 -65
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
- package/src/libs/ui/inputs/src/index.ts +1 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +60 -57
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +3 -2
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +17 -16
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +3 -3
- package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.css +8 -8
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +16 -14
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +18 -1
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +11 -10
- package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.html +15 -0
- package/src/libs/ui/inputs/src/lib/date-range-inputs/date-range-inputs.component.ts +40 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +8 -4
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +1 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +68 -61
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +5 -11
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +29 -27
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +4 -2
- package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +4 -5
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +35 -35
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -2
- package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +22 -20
- package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +47 -46
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +10 -9
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +6 -4
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +1 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +9 -8
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +12 -11
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +3 -2
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +3 -2
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +3 -2
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +3 -2
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +3 -2
- package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +31 -29
- package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +6 -13
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +13 -13
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +3 -2
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +6 -2
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +1 -2
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +59 -53
- package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +14 -12
- package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +3 -2
- package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +3 -5
- package/src/libs/ui/layout/src/lib/paginable.interface.ts +3 -3
- package/src/libs/ui/layout/src/lib/pagination/pagination.component.html +13 -11
- package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -8
- package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.html +26 -24
- package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.ts +2 -2
- package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.html +17 -15
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +12 -6
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +4 -1
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +2 -3
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +5 -7
- package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +9 -8
- package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +6 -6
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +9 -5
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.html +16 -14
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +141 -71
- package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.html +3 -1
- package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.ts +1 -2
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +85 -82
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +2 -8
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +38 -36
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +1 -2
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +9 -8
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +2 -2
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +1 -2
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +6 -3
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +2 -3
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +48 -42
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +23 -15
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +22 -14
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +2 -8
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +10 -4
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +2 -3
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +2 -3
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +16 -10
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +1 -2
- package/src/libs/ui/search/src/lib/results-list/results-list.component.html +13 -15
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +4 -5
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +38 -34
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +4 -7
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +7 -8
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +5 -7
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +3 -2
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +6 -7
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +1 -2
- package/src/libs/util/i18n/src/lib/date-locales.ts +63 -0
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/shared/src/index.ts +1 -0
- package/src/libs/util/shared/src/lib/humanize-date.directive.ts +40 -0
- package/src/libs/util/shared/src/lib/image-fallback.directive.ts +9 -2
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +11 -0
- package/src/libs/util/shared/src/lib/services/date.service.ts +29 -3
- package/src/libs/util/shared/src/lib/services/proxy.service.ts +7 -5
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +8 -5
- package/tailwind.base.css +1 -1
- package/translations/de.json +20 -4
- package/translations/en.json +20 -5
- package/translations/es.json +19 -3
- package/translations/fr.json +20 -4
- package/translations/it.json +21 -5
- package/translations/nl.json +19 -3
- package/translations/pt.json +19 -3
- package/translations/sk.json +20 -4
- package/esm2022/geonetwork-ui.mjs +0 -5
- package/esm2022/index.mjs +0 -24
- package/esm2022/libs/api/metadata-converter/src/index.mjs +0 -9
- package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +0 -26
- package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +0 -64
- package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +0 -40
- package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +0 -19
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +0 -279
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +0 -17
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +0 -224
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +0 -57
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +0 -96
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +0 -47
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +0 -25
- package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +0 -40
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +0 -77
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +0 -54
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +0 -384
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/index.mjs +0 -4
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +0 -29
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +0 -12
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +0 -5
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +0 -11
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/index.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +0 -129
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +0 -143
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +0 -153
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/index.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +0 -310
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +0 -485
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +0 -31
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.mjs +0 -18
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +0 -48
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +0 -21
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +0 -8
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +0 -516
- package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +0 -17
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +0 -456
- package/esm2022/libs/api/repository/src/index.mjs +0 -4
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +0 -67
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +0 -3
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +0 -39
- package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +0 -4
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +0 -32
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.mjs +0 -12
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +0 -552
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +0 -4
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +0 -66
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +0 -336
- package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +0 -42
- package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +0 -11
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +0 -5
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.mjs +0 -5
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +0 -104
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +0 -198
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.mjs +0 -6
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +0 -104
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +0 -270
- package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +0 -52
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +0 -26
- package/esm2022/libs/api/repository/src/lib/metadata-language.token.mjs +0 -3
- package/esm2022/libs/api/repository/src/lib/repository-url.mjs +0 -10
- package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +0 -9
- package/esm2022/libs/common/domain/src/lib/model/error/index.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/error/publication-version.error.mjs +0 -8
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +0 -51
- package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +0 -6
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +0 -64
- package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/record/translation.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/search/aggregation.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/search/field.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/search/index.mjs +0 -6
- package/esm2022/libs/common/domain/src/lib/model/search/search.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +0 -8
- package/esm2022/libs/common/domain/src/lib/model/thesaurus/index.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +0 -2
- package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +0 -3
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +0 -3
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +0 -3
- package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +0 -3
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +0 -61
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +0 -5
- package/esm2022/libs/data-access/gn4/src/index.mjs +0 -3
- package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +0 -99
- package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +0 -251
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +0 -151
- package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +0 -363
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +0 -313
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +0 -164
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +0 -223
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +0 -223
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +0 -337
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +0 -211
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +0 -421
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +0 -117
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +0 -117
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +0 -117
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +0 -456
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +0 -389
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +0 -4080
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +0 -204
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +0 -979
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +0 -135
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +0 -174
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +0 -215
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +0 -770
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +0 -249
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +0 -412
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +0 -170
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +0 -246
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +0 -608
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +0 -244
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +0 -405
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +0 -570
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +0 -343
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +0 -323
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +0 -41
- package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +0 -72
- package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +0 -19
- package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +0 -6
- package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/formatterData.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +0 -33
- package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.mjs +0 -26
- package/esm2022/libs/data-access/gn4/src/openapi/model/language.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +0 -8
- package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapService.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +0 -8
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.mjs +0 -20
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.mjs +0 -20
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +0 -119
- package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +0 -23
- package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.mjs +0 -36
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.mjs +0 -36
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +0 -21
- package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +0 -22
- package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +0 -33
- package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/translations.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +0 -24
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +0 -19
- package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +0 -13
- package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +0 -2
- package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +0 -9
- package/esm2022/libs/feature/catalog/src/index.mjs +0 -9
- package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +0 -42
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +0 -127
- package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +0 -6
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +0 -21
- package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +0 -23
- package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +0 -23
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +0 -2
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +0 -27
- package/esm2022/libs/feature/dataviz/src/index.mjs +0 -6
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +0 -245
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +0 -36
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +0 -31
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +0 -98
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +0 -244
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +0 -101
- package/esm2022/libs/feature/editor/src/index.mjs +0 -13
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +0 -17
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +0 -68
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +0 -66
- package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +0 -84
- package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +0 -27
- package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +0 -66
- package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +0 -16
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +0 -89
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +0 -111
- package/esm2022/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.mjs +0 -80
- package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +0 -275
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +0 -75
- package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +0 -172
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +0 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +0 -73
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.mjs +0 -35
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +0 -129
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +0 -105
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +0 -150
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.mjs +0 -19
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +0 -28
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +0 -39
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +0 -60
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +0 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +0 -151
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +0 -181
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +0 -104
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +0 -41
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +0 -32
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -123
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.mjs +0 -44
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +0 -88
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.mjs +0 -55
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +0 -96
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +0 -122
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +0 -14
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +0 -34
- package/esm2022/libs/feature/editor/src/lib/expressions.mjs +0 -13
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +0 -27
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +0 -376
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +0 -63
- package/esm2022/libs/feature/map/src/index.mjs +0 -14
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +0 -5
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +0 -28
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +0 -27
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +0 -7
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +0 -49
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +0 -60
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +0 -118
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +0 -129
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +0 -74
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +0 -73
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +0 -2
- package/esm2022/libs/feature/map/src/lib/constant/projections.mjs +0 -2
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +0 -34
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +0 -101
- package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +0 -40
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +0 -77
- package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +0 -27
- package/esm2022/libs/feature/map/src/lib/style/index.mjs +0 -3
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +0 -43
- package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +0 -96
- package/esm2022/libs/feature/map/src/lib/utils/index.mjs +0 -2
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +0 -29
- package/esm2022/libs/feature/notifications/src/index.mjs +0 -3
- package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +0 -2
- package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +0 -49
- package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +0 -30
- package/esm2022/libs/feature/record/src/index.mjs +0 -11
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +0 -110
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +0 -77
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +0 -40
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +0 -83
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +0 -82
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +0 -29
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +0 -169
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +0 -58
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +0 -348
- package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +0 -47
- package/esm2022/libs/feature/record/src/lib/state/index.mjs +0 -3
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +0 -32
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +0 -73
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +0 -119
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +0 -96
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +0 -33
- package/esm2022/libs/feature/router/src/index.mjs +0 -2
- package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +0 -21
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +0 -13
- package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +0 -41
- package/esm2022/libs/feature/router/src/lib/default/index.mjs +0 -9
- package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +0 -3
- package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +0 -63
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +0 -61
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +0 -56
- package/esm2022/libs/feature/router/src/lib/default/state/query-params.utils.mjs +0 -51
- package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +0 -5
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +0 -114
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +0 -73
- package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +0 -14
- package/esm2022/libs/feature/search/src/index.mjs +0 -26
- package/esm2022/libs/feature/search/src/lib/constants.mjs +0 -38
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +0 -71
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +0 -232
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +0 -121
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +0 -28
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +0 -68
- package/esm2022/libs/feature/search/src/lib/filter-geometry.token.mjs +0 -4
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +0 -92
- package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +0 -6
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +0 -45
- package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +0 -48
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +0 -34
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +0 -108
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +0 -99
- package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +0 -65
- package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +0 -84
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +0 -58
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +0 -208
- package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +0 -29
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +0 -124
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +0 -289
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +0 -130
- package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +0 -22
- package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +0 -31
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +0 -436
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +0 -90
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +0 -37
- package/esm2022/libs/ui/catalog/src/index.mjs +0 -6
- package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +0 -19
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +0 -43
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +0 -42
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +0 -48
- package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +0 -16
- package/esm2022/libs/ui/dataviz/src/index.mjs +0 -5
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +0 -167
- package/esm2022/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.mjs +0 -51
- package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +0 -139
- package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.data.source.mjs +0 -24
- package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.mjs +0 -82
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +0 -33
- package/esm2022/libs/ui/elements/src/index.mjs +0 -29
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +0 -87
- package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +0 -78
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +0 -20
- package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +0 -29
- package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +0 -20
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +0 -62
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +0 -122
- package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +0 -49
- package/esm2022/libs/ui/elements/src/lib/external-link-card/external-link-card.component.mjs +0 -59
- package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +0 -61
- package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +0 -227
- package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +0 -45
- package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +0 -89
- package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +0 -76
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +0 -41
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +0 -19
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +0 -14
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +0 -61
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +0 -78
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +0 -128
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +0 -82
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +0 -45
- package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +0 -71
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +0 -142
- package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +0 -70
- package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +0 -165
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +0 -96
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +0 -59
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +0 -77
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +0 -21
- package/esm2022/libs/ui/inputs/src/index.mjs +0 -27
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +0 -285
- package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +0 -44
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +0 -62
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +0 -30
- package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +0 -35
- package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +0 -33
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +0 -39
- package/esm2022/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.mjs +0 -65
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +0 -44
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +0 -37
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +0 -215
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +0 -2
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +0 -202
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +0 -2
- package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +0 -48
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +0 -106
- package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +0 -59
- package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +0 -43
- package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +0 -2
- package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +0 -74
- package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +0 -46
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +0 -57
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +0 -36
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +0 -50
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +0 -48
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +0 -95
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +0 -46
- package/esm2022/libs/ui/layout/src/index.mjs +0 -20
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +0 -105
- package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +0 -128
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +0 -73
- package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +0 -110
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +0 -54
- package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +0 -25
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +0 -20
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +0 -38
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +0 -67
- package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +0 -70
- package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +0 -29
- package/esm2022/libs/ui/layout/src/lib/paginable.interface.mjs +0 -2
- package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +0 -51
- package/esm2022/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.mjs +0 -52
- package/esm2022/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.mjs +0 -36
- package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +0 -26
- package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +0 -35
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +0 -81
- package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +0 -71
- package/esm2022/libs/ui/map/src/index.mjs +0 -7
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +0 -46
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +0 -157
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +0 -13
- package/esm2022/libs/ui/map/src/lib/components/map-legend/map-legend.component.mjs +0 -36
- package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +0 -80
- package/esm2022/libs/ui/map/src/lib/map-utils.mjs +0 -37
- package/esm2022/libs/ui/search/src/index.mjs +0 -21
- package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +0 -109
- package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +0 -43
- package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +0 -51
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +0 -2
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +0 -50
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +0 -2
- package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +0 -26
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +0 -62
- package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +0 -14
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +0 -68
- package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +0 -21
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +0 -29
- package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +0 -14
- package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +0 -14
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +0 -18
- package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +0 -63
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +0 -29
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +0 -31
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +0 -54
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +0 -76
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +0 -219
- package/esm2022/libs/ui/widgets/src/index.mjs +0 -7
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +0 -11
- package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +0 -15
- package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +0 -68
- package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +0 -62
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +0 -51
- package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +0 -11
- package/esm2022/libs/util/app-config/src/index.mjs +0 -5
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +0 -216
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +0 -164
- package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +0 -18
- package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +0 -33
- package/esm2022/libs/util/app-config/src/lib/model.mjs +0 -2
- package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +0 -89
- package/esm2022/libs/util/data-fetcher/src/index.mjs +0 -7
- package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +0 -70
- package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +0 -23
- package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +0 -62
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-cache.mjs +0 -12
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +0 -37
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +0 -62
- package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +0 -37
- package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +0 -24
- package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +0 -21
- package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +0 -38
- package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +0 -19
- package/esm2022/libs/util/data-fetcher/src/lib/readers/wfs.mjs +0 -133
- package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +0 -93
- package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +0 -211
- package/esm2022/libs/util/i18n/src/index.mjs +0 -8
- package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +0 -18
- package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +0 -14
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +0 -52
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +0 -25
- package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +0 -41
- package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +0 -141
- package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +0 -8
- package/esm2022/libs/util/shared/src/index.mjs +0 -7
- package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +0 -6
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +0 -28
- package/esm2022/libs/util/shared/src/lib/links/index.mjs +0 -3
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +0 -68
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +0 -306
- package/esm2022/libs/util/shared/src/lib/record/index.mjs +0 -3
- package/esm2022/libs/util/shared/src/lib/record/quality-score.util.mjs +0 -46
- package/esm2022/libs/util/shared/src/lib/record/record.util.mjs +0 -56
- package/esm2022/libs/util/shared/src/lib/services/date.service.mjs +0 -41
- package/esm2022/libs/util/shared/src/lib/services/index.mjs +0 -5
- package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +0 -22
- package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +0 -45
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +0 -94
- package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +0 -7
- package/esm2022/libs/util/shared/src/lib/utils/event.mjs +0 -12
- package/esm2022/libs/util/shared/src/lib/utils/format-fields.mjs +0 -9
- package/esm2022/libs/util/shared/src/lib/utils/fuzzy-filter.mjs +0 -27
- package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +0 -78
- package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +0 -60
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +0 -16
- package/esm2022/libs/util/shared/src/lib/utils/mobile-screen.mjs +0 -9
- package/esm2022/libs/util/shared/src/lib/utils/no-duplicate-file-name.mjs +0 -19
- package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +0 -33
- package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +0 -4
- package/esm2022/libs/util/shared/src/lib/utils/scroll.mjs +0 -40
- package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +0 -14
- package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +0 -7
- package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +0 -32
- package/esm2022/libs/util/shared/src/lib/utils/url.mjs +0 -18
- package/esm2022/translations/de.json +0 -649
- package/esm2022/translations/en.json +0 -650
- package/esm2022/translations/es.json +0 -649
- package/esm2022/translations/fr.json +0 -649
- package/esm2022/translations/it.json +0 -649
- package/esm2022/translations/nl.json +0 -649
- package/esm2022/translations/pt.json +0 -649
- package/esm2022/translations/sk.json +0 -649
- package/geonetwork-ui.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/index.d.ts +0 -9
- package/libs/api/metadata-converter/src/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/base.converter.d.ts +0 -13
- package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +0 -4
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/common/license.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +0 -26
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/common/url.d.ts +0 -7
- package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +0 -13
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +0 -16
- package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +0 -21
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +0 -15
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +0 -8
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +0 -6
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts +0 -27
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +0 -20
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts +0 -16
- package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +0 -24
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts +0 -4
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +0 -12
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +0 -37
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +0 -5
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +0 -27
- package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -196
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +0 -78
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts +0 -9
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +0 -24
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +0 -23
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +0 -13
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +0 -78
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +0 -5
- package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts +0 -8
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +0 -71
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +0 -158
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +0 -1
- package/libs/api/repository/src/index.d.ts +0 -4
- package/libs/api/repository/src/index.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +0 -27
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +0 -7
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +0 -17
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts +0 -4
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +0 -11
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts +0 -4
- package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +0 -74
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +0 -4
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +0 -20
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +0 -69
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts +0 -7
- package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/index.d.ts +0 -11
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +0 -5
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.d.ts +0 -4
- package/libs/api/repository/src/lib/gn4/organizations/organization-strategy.token.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +0 -29
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +0 -40
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.d.ts +0 -9
- package/libs/api/repository/src/lib/gn4/organizations/organizations-service.factory.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +0 -20
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +0 -68
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts +0 -17
- package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +0 -15
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +0 -1
- package/libs/api/repository/src/lib/metadata-language.token.d.ts +0 -5
- package/libs/api/repository/src/lib/metadata-language.token.d.ts.map +0 -1
- package/libs/api/repository/src/lib/repository-url.d.ts +0 -3
- package/libs/api/repository/src/lib/repository-url.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +0 -17
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/error/index.d.ts +0 -2
- package/libs/common/domain/src/lib/model/error/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts +0 -5
- package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts +0 -15
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/index.d.ts +0 -6
- package/libs/common/domain/src/lib/model/record/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +0 -182
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/organization.model.d.ts +0 -11
- package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/translation.model.d.ts +0 -26
- package/libs/common/domain/src/lib/model/record/translation.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +0 -15
- package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts +0 -44
- package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/field.model.d.ts +0 -2
- package/libs/common/domain/src/lib/model/search/field.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/filter.model.d.ts +0 -21
- package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/index.d.ts +0 -6
- package/libs/common/domain/src/lib/model/search/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/search.model.d.ts +0 -20
- package/libs/common/domain/src/lib/model/search/search.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts +0 -3
- package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/thesaurus/index.d.ts +0 -2
- package/libs/common/domain/src/lib/model/thesaurus/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts +0 -14
- package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/user/index.d.ts +0 -2
- package/libs/common/domain/src/lib/model/user/index.d.ts.map +0 -1
- package/libs/common/domain/src/lib/model/user/user.model.d.ts +0 -11
- package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +0 -1
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts +0 -11
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +0 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +0 -39
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +0 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +0 -74
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +0 -1
- package/libs/data-access/gn4/src/fixtures/index.d.ts +0 -3
- package/libs/data-access/gn4/src/fixtures/index.d.ts.map +0 -1
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +0 -61
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +0 -1
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +0 -5
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +0 -1
- package/libs/data-access/gn4/src/index.d.ts +0 -3
- package/libs/data-access/gn4/src/index.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/api.d.ts +0 -66
- package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts +0 -97
- package/libs/data-access/gn4/src/openapi/api/atom.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +0 -54
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts +0 -150
- package/libs/data-access/gn4/src/openapi/api/formatters.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +0 -132
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +0 -49
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +0 -80
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +0 -96
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +0 -128
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +0 -78
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +0 -170
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts +0 -33
- package/libs/data-access/gn4/src/openapi/api/mapservices.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +0 -33
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +0 -33
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +0 -186
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +0 -157
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +0 -1879
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +0 -72
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +0 -391
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +0 -42
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +0 -53
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +0 -84
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +0 -396
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +0 -96
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +0 -195
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +0 -61
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +0 -94
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +0 -302
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +0 -93
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +0 -172
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +0 -262
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +0 -144
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +0 -128
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/api.module.d.ts +0 -12
- package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/configuration.d.ts +0 -81
- package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/encoder.d.ts +0 -12
- package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/index.d.ts +0 -6
- package/libs/data-access/gn4/src/openapi/index.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +0 -29
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/associatedRecord.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +0 -26
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +0 -22
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/formatterData.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/formatterDataResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +0 -15
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +0 -32
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +0 -44
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +0 -29
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/inlineObject4.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts +0 -15
- package/libs/data-access/gn4/src/openapi/model/jSONObject.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts +0 -50
- package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/language.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +0 -32
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +0 -22
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +0 -31
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/mapService.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +0 -27
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/metadataBatchApproveParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/metadataBatchSubmitParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +0 -23
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +0 -40
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +0 -48
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +0 -33
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts +0 -31
- package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -119
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +0 -32
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +0 -28
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts +0 -48
- package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/passwordResetDto.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/proxyConfiguration.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts +0 -46
- package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +0 -24
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +0 -23
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +0 -40
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +0 -34
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +0 -20
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +0 -40
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +0 -29
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +0 -28
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +0 -46
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +0 -21
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +0 -24
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts +0 -29
- package/libs/data-access/gn4/src/openapi/model/thesaurusInfo.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts +0 -18
- package/libs/data-access/gn4/src/openapi/model/translations.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +0 -16
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +0 -47
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +0 -31
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +0 -34
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +0 -33
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +0 -29
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +0 -19
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +0 -26
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +0 -28
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +0 -25
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +0 -17
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +0 -42
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +0 -1
- package/libs/data-access/gn4/src/openapi/variables.d.ts +0 -9
- package/libs/data-access/gn4/src/openapi/variables.d.ts.map +0 -1
- package/libs/feature/catalog/src/index.d.ts +0 -9
- package/libs/feature/catalog/src/index.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts +0 -20
- package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +0 -38
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/organization-url.token.d.ts +0 -4
- package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +0 -11
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +0 -11
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +0 -12
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +0 -8
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +0 -1
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +0 -15
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +0 -1
- package/libs/feature/dataviz/src/index.d.ts +0 -6
- package/libs/feature/dataviz/src/index.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +0 -60
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +0 -19
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +0 -10
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +0 -30
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +0 -40
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +0 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +0 -26
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +0 -1
- package/libs/feature/editor/src/index.d.ts +0 -13
- package/libs/feature/editor/src/index.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +0 -73
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +0 -35
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +0 -36
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts +0 -10
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +0 -34
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +0 -21
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts +0 -16
- package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +0 -8
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +0 -33
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +0 -33
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts +0 -19
- package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +0 -52
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +0 -15
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +0 -59
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts +0 -6
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts +0 -18
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts +0 -6
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts +0 -32
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +0 -38
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +0 -42
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts +0 -9
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts +0 -11
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +0 -17
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +0 -20
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts +0 -6
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +0 -35
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +0 -43
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +0 -31
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +0 -14
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +0 -13
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +0 -30
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts +0 -14
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +0 -25
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.d.ts +0 -20
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +0 -21
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +0 -31
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -14
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +0 -16
- package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/expressions.d.ts +0 -4
- package/libs/feature/editor/src/lib/expressions.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +0 -9
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +0 -72
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +0 -45
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
- package/libs/feature/editor/src/lib/models/index.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +0 -19
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +0 -1
- package/libs/feature/map/src/index.d.ts +0 -14
- package/libs/feature/map/src/index.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +0 -14
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +0 -18
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +0 -14
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +0 -1
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +0 -9
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +0 -11
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +0 -21
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +0 -22
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +0 -28
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +0 -22
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +0 -22
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/index.d.ts +0 -2
- package/libs/feature/map/src/lib/constant/index.d.ts.map +0 -1
- package/libs/feature/map/src/lib/constant/projections.d.ts +0 -2
- package/libs/feature/map/src/lib/constant/projections.d.ts.map +0 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +0 -8
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +0 -1
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +0 -25
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/geocoding.service.d.ts +0 -18
- package/libs/feature/map/src/lib/geocoding.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +0 -14
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +0 -14
- package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +0 -1
- package/libs/feature/map/src/lib/style/index.d.ts +0 -3
- package/libs/feature/map/src/lib/style/index.d.ts.map +0 -1
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +0 -4
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +0 -1
- package/libs/feature/map/src/lib/style/map-style.service.d.ts +0 -24
- package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +0 -1
- package/libs/feature/map/src/lib/utils/index.d.ts +0 -2
- package/libs/feature/map/src/lib/utils/index.d.ts.map +0 -1
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -9
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +0 -1
- package/libs/feature/notifications/src/index.d.ts +0 -3
- package/libs/feature/notifications/src/index.d.ts.map +0 -1
- package/libs/feature/notifications/src/lib/notification.model.d.ts +0 -7
- package/libs/feature/notifications/src/lib/notification.model.d.ts.map +0 -1
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +0 -12
- package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +0 -1
- package/libs/feature/notifications/src/lib/notifications.service.d.ts +0 -15
- package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +0 -1
- package/libs/feature/record/src/index.d.ts +0 -11
- package/libs/feature/record/src/index.d.ts.map +0 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +0 -43
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +0 -18
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +0 -11
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +0 -15
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +0 -20
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/feature-record.module.d.ts +0 -10
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +0 -1
- package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts +0 -74
- package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts +0 -19
- package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +0 -65
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +0 -14
- package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/index.d.ts +0 -3
- package/libs/feature/record/src/lib/state/index.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +0 -95
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +0 -53
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +0 -64
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +0 -25
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +0 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +0 -23
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +0 -1
- package/libs/feature/router/src/index.d.ts +0 -2
- package/libs/feature/router/src/index.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +0 -10
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/constants.d.ts +0 -14
- package/libs/feature/router/src/lib/default/constants.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +0 -12
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/index.d.ts +0 -9
- package/libs/feature/router/src/lib/default/index.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/router.config.d.ts +0 -11
- package/libs/feature/router/src/lib/default/router.config.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/router.module.d.ts +0 -16
- package/libs/feature/router/src/lib/default/router.module.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/router.service.d.ts +0 -15
- package/libs/feature/router/src/lib/default/router.service.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +0 -18
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts +0 -4
- package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts +0 -10
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts +0 -34
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +0 -30
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +0 -1
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +0 -4
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +0 -1
- package/libs/feature/search/src/index.d.ts +0 -26
- package/libs/feature/search/src/index.d.ts.map +0 -1
- package/libs/feature/search/src/lib/constants.d.ts +0 -6
- package/libs/feature/search/src/lib/constants.d.ts.map +0 -1
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +0 -22
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/facets/facets.service.d.ts +0 -49
- package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +0 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +0 -37
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/feature-search.module.d.ts +0 -9
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +0 -1
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +0 -29
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/filter-geometry.token.d.ts +0 -4
- package/libs/feature/search/src/lib/filter-geometry.token.d.ts.map +0 -1
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +0 -41
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/record-url.token.d.ts +0 -5
- package/libs/feature/search/src/lib/record-url.token.d.ts.map +0 -1
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +0 -19
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +0 -22
- package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +0 -16
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +0 -36
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +0 -38
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +0 -21
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts +0 -34
- package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +0 -22
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/actions.d.ts +0 -162
- package/libs/feature/search/src/lib/state/actions.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +0 -12
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/effects.d.ts +0 -27
- package/libs/feature/search/src/lib/state/effects.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/reducer.d.ts +0 -41
- package/libs/feature/search/src/lib/state/reducer.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/search.facade.d.ts +0 -52
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +0 -1
- package/libs/feature/search/src/lib/state/selectors.d.ts +0 -24
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +0 -1
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +0 -11
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +0 -1
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +0 -135
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +0 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +0 -22
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +0 -1
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +0 -23
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +0 -1
- package/libs/ui/catalog/src/index.d.ts +0 -6
- package/libs/ui/catalog/src/index.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +0 -9
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +0 -18
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +0 -12
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +0 -18
- package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +0 -8
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +0 -1
- package/libs/ui/dataviz/src/index.d.ts +0 -5
- package/libs/ui/dataviz/src/index.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +0 -30
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts +0 -14
- package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +0 -50
- package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts +0 -12
- package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts +0 -10
- package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +0 -13
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +0 -1
- package/libs/ui/elements/src/index.d.ts +0 -29
- package/libs/ui/elements/src/index.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +0 -24
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts +0 -16
- package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +0 -9
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +0 -20
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +0 -8
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +0 -21
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +0 -32
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/error/error.component.d.ts +0 -18
- package/libs/ui/elements/src/lib/error/error.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts +0 -18
- package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +0 -16
- package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts +0 -46
- package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +0 -10
- package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +0 -30
- package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +0 -14
- package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +0 -13
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +0 -9
- package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +0 -7
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +0 -15
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +0 -15
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +0 -33
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -21
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +0 -14
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts +0 -14
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +0 -33
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +0 -27
- package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +0 -31
- package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +0 -29
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +0 -11
- package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +0 -21
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +0 -10
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/index.d.ts +0 -27
- package/libs/ui/inputs/src/index.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +0 -74
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts +0 -11
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +0 -14
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +0 -13
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +0 -13
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +0 -11
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +0 -9
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts +0 -20
- package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +0 -11
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +0 -14
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +0 -46
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +0 -5
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +0 -41
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +0 -5
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +0 -15
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +0 -25
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +0 -14
- package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +0 -14
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +0 -6
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +0 -18
- package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +0 -13
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +0 -13
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +0 -18
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -19
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +0 -19
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +0 -25
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +0 -18
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +0 -1
- package/libs/ui/layout/src/index.d.ts +0 -20
- package/libs/ui/layout/src/index.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +0 -26
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +0 -35
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +0 -27
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +0 -28
- package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +0 -20
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +0 -10
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +0 -8
- package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +0 -15
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +0 -20
- package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts +0 -20
- package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +0 -20
- package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/paginable.interface.d.ts +0 -15
- package/libs/ui/layout/src/lib/paginable.interface.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts +0 -11
- package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts +0 -9
- package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts +0 -10
- package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +0 -8
- package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +0 -14
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +0 -37
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +0 -22
- package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +0 -1
- package/libs/ui/map/src/index.d.ts +0 -7
- package/libs/ui/map/src/index.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +0 -13
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +0 -39
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +0 -18
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts +0 -12
- package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +0 -15
- package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +0 -1
- package/libs/ui/map/src/lib/map-utils.d.ts +0 -7
- package/libs/ui/map/src/lib/map-utils.d.ts.map +0 -1
- package/libs/ui/search/src/index.d.ts +0 -21
- package/libs/ui/search/src/index.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +0 -34
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +0 -16
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +0 -19
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/facets.model.d.ts +0 -27
- package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +0 -5
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +0 -1
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +0 -2
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +0 -12
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +0 -27
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +0 -7
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +0 -18
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +0 -7
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +0 -12
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +0 -7
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +0 -7
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +0 -8
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +0 -17
- package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +0 -13
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +0 -17
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +0 -24
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +0 -27
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +0 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +0 -53
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/index.d.ts +0 -7
- package/libs/ui/widgets/src/index.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +0 -6
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +0 -7
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +0 -19
- package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +0 -19
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +0 -16
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +0 -6
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +0 -1
- package/libs/util/app-config/src/index.d.ts +0 -5
- package/libs/util/app-config/src/index.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/app-config.d.ts +0 -26
- package/libs/util/app-config/src/lib/app-config.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts +0 -10
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +0 -10
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/map-layers.d.ts +0 -4
- package/libs/util/app-config/src/lib/map-layers.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/model.d.ts +0 -71
- package/libs/util/app-config/src/lib/model.d.ts.map +0 -1
- package/libs/util/app-config/src/lib/parse-utils.d.ts +0 -19
- package/libs/util/app-config/src/lib/parse-utils.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/index.d.ts +0 -7
- package/libs/util/data-fetcher/src/index.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +0 -23
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/headers.d.ts +0 -3
- package/libs/util/data-fetcher/src/lib/headers.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/model.d.ts +0 -68
- package/libs/util/data-fetcher/src/lib/model.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts +0 -8
- package/libs/util/data-fetcher/src/lib/readers/base-cache.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +0 -16
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts +0 -24
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +0 -13
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +0 -18
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +0 -18
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +0 -19
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts +0 -17
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts +0 -25
- package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +0 -13
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +0 -1
- package/libs/util/data-fetcher/src/lib/utils.d.ts +0 -26
- package/libs/util/data-fetcher/src/lib/utils.d.ts.map +0 -1
- package/libs/util/i18n/src/index.d.ts +0 -8
- package/libs/util/i18n/src/index.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +0 -6
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts +0 -9
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +0 -12
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +0 -12
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/i18n.providers.d.ts +0 -4
- package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/language-codes.d.ts +0 -94
- package/libs/util/i18n/src/lib/language-codes.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +0 -2
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +0 -1
- package/libs/util/shared/src/index.d.ts +0 -7
- package/libs/util/shared/src/index.d.ts.map +0 -1
- package/libs/util/shared/src/lib/gn-ui-version.d.ts +0 -3
- package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +0 -1
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts +0 -11
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +0 -1
- package/libs/util/shared/src/lib/links/index.d.ts +0 -3
- package/libs/util/shared/src/lib/links/index.d.ts.map +0 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +0 -18
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +0 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +0 -139
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +0 -1
- package/libs/util/shared/src/lib/record/index.d.ts +0 -3
- package/libs/util/shared/src/lib/record/index.d.ts.map +0 -1
- package/libs/util/shared/src/lib/record/quality-score.util.d.ts +0 -13
- package/libs/util/shared/src/lib/record/quality-score.util.d.ts.map +0 -1
- package/libs/util/shared/src/lib/record/record.util.d.ts +0 -3
- package/libs/util/shared/src/lib/record/record.util.d.ts.map +0 -1
- package/libs/util/shared/src/lib/services/date.service.d.ts +0 -13
- package/libs/util/shared/src/lib/services/date.service.d.ts.map +0 -1
- package/libs/util/shared/src/lib/services/index.d.ts +0 -5
- package/libs/util/shared/src/lib/services/index.d.ts.map +0 -1
- package/libs/util/shared/src/lib/services/log.service.d.ts +0 -9
- package/libs/util/shared/src/lib/services/log.service.d.ts.map +0 -1
- package/libs/util/shared/src/lib/services/proxy.service.d.ts +0 -18
- package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +0 -1
- package/libs/util/shared/src/lib/services/theme.service.d.ts +0 -11
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +0 -3
- package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/event.d.ts +0 -7
- package/libs/util/shared/src/lib/utils/event.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/format-fields.d.ts +0 -2
- package/libs/util/shared/src/lib/utils/format-fields.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts +0 -9
- package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/geojson.d.ts +0 -8
- package/libs/util/shared/src/lib/utils/geojson.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/image-resize.d.ts +0 -3
- package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/index.d.ts +0 -16
- package/libs/util/shared/src/lib/utils/index.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/mobile-screen.d.ts +0 -2
- package/libs/util/shared/src/lib/utils/mobile-screen.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts +0 -2
- package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/parse.d.ts +0 -6
- package/libs/util/shared/src/lib/utils/parse.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +0 -2
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/scroll.d.ts +0 -12
- package/libs/util/shared/src/lib/utils/scroll.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/sort-by.d.ts +0 -5
- package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/strip-html.d.ts +0 -2
- package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +0 -9
- package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +0 -1
- package/libs/util/shared/src/lib/utils/url.d.ts +0 -7
- package/libs/util/shared/src/lib/utils/url.d.ts.map +0 -1
- package/src/libs/common/domain/src/lib/index.ts +0 -2
- package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +0 -54
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, Output, } from '@angular/core';
|
|
2
|
-
import { marker } from '@biesbjerg/ngx-translate-extract-marker';
|
|
3
|
-
import { FetchError, getJsonDataItemsProxy, } from '../../../../../../libs/util/data-fetcher/src';
|
|
4
|
-
import { DropdownSelectorComponent, } from '../../../../../../libs/ui/inputs/src';
|
|
5
|
-
import { BehaviorSubject, combineLatest, EMPTY } from 'rxjs';
|
|
6
|
-
import { catchError, filter, map, shareReplay, startWith, switchMap, tap, } from 'rxjs/operators';
|
|
7
|
-
import { DataService } from '../service/data.service';
|
|
8
|
-
import { TranslatePipe, TranslateService } from '@ngx-translate/core';
|
|
9
|
-
import { CommonModule } from '@angular/common';
|
|
10
|
-
import { ChartComponent } from '../../../../../../libs/ui/dataviz/src';
|
|
11
|
-
import { LoadingMaskComponent, PopupAlertComponent, } from '../../../../../../libs/ui/widgets/src';
|
|
12
|
-
import * as i0 from "@angular/core";
|
|
13
|
-
import * as i1 from "../service/data.service";
|
|
14
|
-
import * as i2 from "@ngx-translate/core";
|
|
15
|
-
import * as i3 from "@angular/common";
|
|
16
|
-
marker('chart.type.bar');
|
|
17
|
-
marker('chart.type.barHorizontal');
|
|
18
|
-
marker('chart.type.line');
|
|
19
|
-
marker('chart.type.lineSmooth');
|
|
20
|
-
marker('chart.type.pie');
|
|
21
|
-
marker('chart.aggregation.sum');
|
|
22
|
-
marker('chart.aggregation.max');
|
|
23
|
-
marker('chart.aggregation.min');
|
|
24
|
-
marker('chart.aggregation.average');
|
|
25
|
-
marker('chart.aggregation.count');
|
|
26
|
-
export class ChartViewComponent {
|
|
27
|
-
set featureCatalog(value) {
|
|
28
|
-
this.featureCatalog$.next(value);
|
|
29
|
-
}
|
|
30
|
-
set link(value) {
|
|
31
|
-
this.currentLink$.next(value);
|
|
32
|
-
if (value) {
|
|
33
|
-
this.aggregation$.next('sum');
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
set aggregation(value) {
|
|
37
|
-
this.aggregation$.next(value);
|
|
38
|
-
}
|
|
39
|
-
set xProperty(value) {
|
|
40
|
-
this.xProperty$.next(value);
|
|
41
|
-
}
|
|
42
|
-
set yProperty(value) {
|
|
43
|
-
this.yProperty$.next(value);
|
|
44
|
-
}
|
|
45
|
-
set chartType(value) {
|
|
46
|
-
this.chartType$.next(value);
|
|
47
|
-
}
|
|
48
|
-
set userChartConfig(config) {
|
|
49
|
-
this.aggregation$.next(config.aggregation);
|
|
50
|
-
this.xProperty$.next(config.xProperty);
|
|
51
|
-
this.yProperty$.next(config.yProperty);
|
|
52
|
-
this.chartType$.next(config.chartType);
|
|
53
|
-
}
|
|
54
|
-
get aggregationChoices() {
|
|
55
|
-
if (!this.yProperty$.value) {
|
|
56
|
-
return [{ label: 'chart.aggregation.count', value: 'count' }];
|
|
57
|
-
}
|
|
58
|
-
return [
|
|
59
|
-
{ label: 'chart.aggregation.sum', value: 'sum' },
|
|
60
|
-
{ label: 'chart.aggregation.max', value: 'max' },
|
|
61
|
-
{ label: 'chart.aggregation.min', value: 'min' },
|
|
62
|
-
{ label: 'chart.aggregation.average', value: 'average' },
|
|
63
|
-
{ label: 'chart.aggregation.count', value: 'count' },
|
|
64
|
-
];
|
|
65
|
-
}
|
|
66
|
-
get labelProperty() {
|
|
67
|
-
if (!this.xProperty$.value)
|
|
68
|
-
return '';
|
|
69
|
-
return `distinct(${this.xProperty$.value})`;
|
|
70
|
-
}
|
|
71
|
-
get valueProperty() {
|
|
72
|
-
if (this.isCountAggregation)
|
|
73
|
-
return 'count()';
|
|
74
|
-
return `${this.aggregation$.value}(${this.yProperty$.value})`;
|
|
75
|
-
}
|
|
76
|
-
get isCountAggregation() {
|
|
77
|
-
return this.aggregation$.value === 'count';
|
|
78
|
-
}
|
|
79
|
-
constructor(dataService, changeDetector, translateService) {
|
|
80
|
-
this.dataService = dataService;
|
|
81
|
-
this.changeDetector = changeDetector;
|
|
82
|
-
this.translateService = translateService;
|
|
83
|
-
this.featureCatalog$ = new BehaviorSubject(null);
|
|
84
|
-
this.cacheActive = true;
|
|
85
|
-
this.currentLink$ = new BehaviorSubject(null);
|
|
86
|
-
this.aggregation$ = new BehaviorSubject('sum');
|
|
87
|
-
this.xProperty$ = new BehaviorSubject(undefined);
|
|
88
|
-
this.yProperty$ = new BehaviorSubject(undefined);
|
|
89
|
-
this.chartType$ = new BehaviorSubject('bar');
|
|
90
|
-
this.chartConfig$ = combineLatest([
|
|
91
|
-
this.xProperty$.pipe(filter((value) => value !== undefined)),
|
|
92
|
-
this.yProperty$.pipe(filter((value) => value !== undefined)),
|
|
93
|
-
this.aggregation$,
|
|
94
|
-
this.chartType$,
|
|
95
|
-
]).pipe(map(([xProperty, yProperty, aggregation, chartType]) => ({
|
|
96
|
-
aggregation,
|
|
97
|
-
xProperty,
|
|
98
|
-
yProperty,
|
|
99
|
-
chartType,
|
|
100
|
-
})));
|
|
101
|
-
this.loading = false;
|
|
102
|
-
this.error = null;
|
|
103
|
-
this.errorInfo = null;
|
|
104
|
-
this.typeChoices = [
|
|
105
|
-
{ label: 'chart.type.bar', value: 'bar' },
|
|
106
|
-
{ label: 'chart.type.barHorizontal', value: 'bar-horizontal' },
|
|
107
|
-
{ label: 'chart.type.line', value: 'line' },
|
|
108
|
-
{ label: 'chart.type.lineSmooth', value: 'line-interpolated' },
|
|
109
|
-
{ label: 'chart.type.pie', value: 'pie' },
|
|
110
|
-
];
|
|
111
|
-
this.dataset$ = this.currentLink$.pipe(filter((link) => !!link), switchMap((link) => {
|
|
112
|
-
this.error = null;
|
|
113
|
-
this.loading = true;
|
|
114
|
-
if (link.accessRestricted) {
|
|
115
|
-
this.handleError('dataset.error.restrictedAccess');
|
|
116
|
-
return EMPTY;
|
|
117
|
-
}
|
|
118
|
-
return this.dataService.getDataset(link, this.cacheActive).pipe(catchError((error) => {
|
|
119
|
-
this.handleError(error);
|
|
120
|
-
return EMPTY;
|
|
121
|
-
}));
|
|
122
|
-
}), shareReplay(1));
|
|
123
|
-
this.properties$ = combineLatest([this.dataset$, this.featureCatalog$]).pipe(switchMap(([dataset, catalog]) => this.setProperties(dataset, catalog)), shareReplay(1));
|
|
124
|
-
this.yChoices$ = this.properties$.pipe(map((properties) => properties
|
|
125
|
-
.filter((prop) => prop.type === 'number' || prop.type === 'date')
|
|
126
|
-
.map((prop) => ({ value: prop.name, label: prop.label || prop.name }))), tap((choices) => {
|
|
127
|
-
if (!choices.find((choice) => choice.value === this.yProperty$.value)) {
|
|
128
|
-
const newProp = choices[0]?.value || '';
|
|
129
|
-
if (!newProp && this.aggregation$.value !== 'count') {
|
|
130
|
-
this.aggregation$.next('count');
|
|
131
|
-
}
|
|
132
|
-
this.yProperty$.next(newProp);
|
|
133
|
-
}
|
|
134
|
-
}));
|
|
135
|
-
this.xChoices$ = this.properties$.pipe(map((properties) => properties
|
|
136
|
-
.filter((prop) => prop.type === 'string')
|
|
137
|
-
.map((prop) => ({
|
|
138
|
-
value: prop.name,
|
|
139
|
-
label: prop.label || prop.name,
|
|
140
|
-
}))), tap((choices) => {
|
|
141
|
-
if (!choices.find((choice) => choice.value === this.xProperty$.value)) {
|
|
142
|
-
this.xProperty$.next(choices[0]?.value || '');
|
|
143
|
-
}
|
|
144
|
-
}));
|
|
145
|
-
this.chartData$ = combineLatest([
|
|
146
|
-
this.dataset$,
|
|
147
|
-
this.xProperty$.pipe(filter((value) => value !== undefined)),
|
|
148
|
-
this.yProperty$.pipe(filter((value) => value !== undefined)),
|
|
149
|
-
this.aggregation$,
|
|
150
|
-
]).pipe(filter(([_, x, y]) => !!x || !!y), switchMap(([dataset, xProp, yProp, aggregation]) => {
|
|
151
|
-
const fieldAgg = aggregation === 'count' ? ['count'] : [aggregation, yProp];
|
|
152
|
-
return dataset
|
|
153
|
-
.groupBy(['distinct', xProp])
|
|
154
|
-
.aggregate(fieldAgg)
|
|
155
|
-
.read()
|
|
156
|
-
.catch((error) => {
|
|
157
|
-
this.handleError(error);
|
|
158
|
-
return [];
|
|
159
|
-
})
|
|
160
|
-
.finally(() => {
|
|
161
|
-
this.loading = false;
|
|
162
|
-
});
|
|
163
|
-
}), map(getJsonDataItemsProxy), startWith([]), shareReplay(1));
|
|
164
|
-
this.prettyLabel$ = combineLatest([
|
|
165
|
-
this.aggregation$,
|
|
166
|
-
this.properties$,
|
|
167
|
-
this.yProperty$,
|
|
168
|
-
]).pipe(map(([aggregation, properties, yProperty]) => {
|
|
169
|
-
if (aggregation === 'count')
|
|
170
|
-
return 'count()';
|
|
171
|
-
const prop = properties.find((p) => p.name === yProperty);
|
|
172
|
-
return prop ? `${aggregation}(${prop.label})` : '';
|
|
173
|
-
}));
|
|
174
|
-
}
|
|
175
|
-
setProperties(dataset, catalog) {
|
|
176
|
-
return dataset.properties
|
|
177
|
-
.then((properties) => {
|
|
178
|
-
return properties.map((p) => {
|
|
179
|
-
if (catalog) {
|
|
180
|
-
const featureAttributes = catalog?.featureTypes[0]?.attributes ?? [];
|
|
181
|
-
const matchingAttribute = featureAttributes.find((attr) => attr.name === p.label);
|
|
182
|
-
if (matchingAttribute?.code) {
|
|
183
|
-
return { ...p, label: matchingAttribute.code };
|
|
184
|
-
}
|
|
185
|
-
return p;
|
|
186
|
-
}
|
|
187
|
-
return p;
|
|
188
|
-
});
|
|
189
|
-
})
|
|
190
|
-
.catch((error) => {
|
|
191
|
-
this.handleError(error);
|
|
192
|
-
return [];
|
|
193
|
-
});
|
|
194
|
-
}
|
|
195
|
-
handleError(error) {
|
|
196
|
-
if (error instanceof FetchError) {
|
|
197
|
-
this.error = this.translateService.instant(`dataset.error.${error.type}`, {
|
|
198
|
-
info: error.info,
|
|
199
|
-
});
|
|
200
|
-
console.warn(error.message);
|
|
201
|
-
}
|
|
202
|
-
else if (error instanceof Error) {
|
|
203
|
-
this.error = this.translateService.instant(error.message);
|
|
204
|
-
console.warn(error.stack || error);
|
|
205
|
-
}
|
|
206
|
-
else {
|
|
207
|
-
this.error = this.translateService.instant(error);
|
|
208
|
-
console.warn(error);
|
|
209
|
-
}
|
|
210
|
-
this.loading = false;
|
|
211
|
-
this.changeDetector.detectChanges();
|
|
212
|
-
}
|
|
213
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ChartViewComponent, deps: [{ token: i1.DataService }, { token: i0.ChangeDetectorRef }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
214
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ChartViewComponent, isStandalone: true, selector: "gn-ui-chart-view", inputs: { featureCatalog: "featureCatalog", cacheActive: "cacheActive", link: "link", aggregation: "aggregation", xProperty: "xProperty", yProperty: "yProperty", chartType: "chartType", userChartConfig: "userChartConfig" }, outputs: { chartConfig$: "chartConfig$" }, ngImport: i0, template: "<div class=\"w-full h-full flex flex-col\">\n <div\n class=\"flex flex-col space-y-2 sm:flex-row sm:space-y-0 sm:space-x-2 justify-between text-[13px]\"\n >\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"typeChoices\"\n [extraBtnClass]=\"'secondary min-w-full'\"\n (selectValue)=\"chartType$.next($event)\"\n [selected]=\"chartType$.value\"\n [title]=\"'chart.dropdown.type' | translate\"\n ></gn-ui-dropdown-selector>\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"xChoices$ | async\"\n [extraBtnClass]=\"'secondary min-w-full'\"\n (selectValue)=\"xProperty$.next($event)\"\n [selected]=\"xProperty$.value\"\n [title]=\"'chart.dropdown.xProperty' | translate\"\n ></gn-ui-dropdown-selector>\n <ng-container *ngIf=\"yChoices$ | async as yChoices\">\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n *ngIf=\"!isCountAggregation\"\n [choices]=\"yChoices\"\n (selectValue)=\"yProperty$.next($event)\"\n [selected]=\"yProperty$.value\"\n [title]=\"'chart.dropdown.yProperty' | translate\"\n class=\"select-y-prop\"\n ></gn-ui-dropdown-selector>\n </ng-container>\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"aggregationChoices\"\n class=\"aggregation-choices\"\n (selectValue)=\"aggregation$.next($event)\"\n [selected]=\"aggregation$.value\"\n [title]=\"'chart.dropdown.aggregation' | translate\"\n ></gn-ui-dropdown-selector>\n </div>\n <div\n class=\"relative h-full mt-2 bg-white border border-gray-300 rounded-lg overflow-hidden\"\n >\n <gn-ui-chart\n *ngIf=\"!error\"\n [data]=\"chartData$ | async\"\n [type]=\"chartType$.value\"\n [prettyLabel]=\"prettyLabel$ | async\"\n [labelProperty]=\"labelProperty\"\n [valueProperty]=\"valueProperty\"\n ></gn-ui-chart>\n <gn-ui-loading-mask\n *ngIf=\"loading\"\n class=\"absolute inset-0\"\n [message]=\"'chart.loading.data' | translate\"\n ></gn-ui-loading-mask>\n <gn-ui-popup-alert\n *ngIf=\"error\"\n type=\"warning\"\n icon=\"matErrorOutlineOutline\"\n class=\"absolute m-2 inset-0\"\n >\n <span>{{ error }}</span>\n </gn-ui-popup-alert>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }, { kind: "component", type: DropdownSelectorComponent, selector: "gn-ui-dropdown-selector", inputs: ["title", "showTitle", "ariaName", "choices", "selected", "maxRows", "extraBtnClass", "minWidth", "disabled"], outputs: ["selectValue"] }, { kind: "component", type: ChartComponent, selector: "gn-ui-chart", inputs: ["data", "labelProperty", "prettyLabel", "valueProperty", "secondaryValueProperty", "type"] }, { kind: "component", type: LoadingMaskComponent, selector: "gn-ui-loading-mask", inputs: ["message"] }, { kind: "component", type: PopupAlertComponent, selector: "gn-ui-popup-alert", inputs: ["icon", "type", "position"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
215
|
-
}
|
|
216
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ChartViewComponent, decorators: [{
|
|
217
|
-
type: Component,
|
|
218
|
-
args: [{ selector: 'gn-ui-chart-view', changeDetection: ChangeDetectionStrategy.OnPush, imports: [
|
|
219
|
-
CommonModule,
|
|
220
|
-
DropdownSelectorComponent,
|
|
221
|
-
ChartComponent,
|
|
222
|
-
LoadingMaskComponent,
|
|
223
|
-
PopupAlertComponent,
|
|
224
|
-
TranslatePipe,
|
|
225
|
-
], standalone: true, template: "<div class=\"w-full h-full flex flex-col\">\n <div\n class=\"flex flex-col space-y-2 sm:flex-row sm:space-y-0 sm:space-x-2 justify-between text-[13px]\"\n >\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"typeChoices\"\n [extraBtnClass]=\"'secondary min-w-full'\"\n (selectValue)=\"chartType$.next($event)\"\n [selected]=\"chartType$.value\"\n [title]=\"'chart.dropdown.type' | translate\"\n ></gn-ui-dropdown-selector>\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"xChoices$ | async\"\n [extraBtnClass]=\"'secondary min-w-full'\"\n (selectValue)=\"xProperty$.next($event)\"\n [selected]=\"xProperty$.value\"\n [title]=\"'chart.dropdown.xProperty' | translate\"\n ></gn-ui-dropdown-selector>\n <ng-container *ngIf=\"yChoices$ | async as yChoices\">\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n *ngIf=\"!isCountAggregation\"\n [choices]=\"yChoices\"\n (selectValue)=\"yProperty$.next($event)\"\n [selected]=\"yProperty$.value\"\n [title]=\"'chart.dropdown.yProperty' | translate\"\n class=\"select-y-prop\"\n ></gn-ui-dropdown-selector>\n </ng-container>\n <gn-ui-dropdown-selector\n class=\"basis-1/4\"\n [choices]=\"aggregationChoices\"\n class=\"aggregation-choices\"\n (selectValue)=\"aggregation$.next($event)\"\n [selected]=\"aggregation$.value\"\n [title]=\"'chart.dropdown.aggregation' | translate\"\n ></gn-ui-dropdown-selector>\n </div>\n <div\n class=\"relative h-full mt-2 bg-white border border-gray-300 rounded-lg overflow-hidden\"\n >\n <gn-ui-chart\n *ngIf=\"!error\"\n [data]=\"chartData$ | async\"\n [type]=\"chartType$.value\"\n [prettyLabel]=\"prettyLabel$ | async\"\n [labelProperty]=\"labelProperty\"\n [valueProperty]=\"valueProperty\"\n ></gn-ui-chart>\n <gn-ui-loading-mask\n *ngIf=\"loading\"\n class=\"absolute inset-0\"\n [message]=\"'chart.loading.data' | translate\"\n ></gn-ui-loading-mask>\n <gn-ui-popup-alert\n *ngIf=\"error\"\n type=\"warning\"\n icon=\"matErrorOutlineOutline\"\n class=\"absolute m-2 inset-0\"\n >\n <span>{{ error }}</span>\n </gn-ui-popup-alert>\n </div>\n</div>\n" }]
|
|
226
|
-
}], ctorParameters: () => [{ type: i1.DataService }, { type: i0.ChangeDetectorRef }, { type: i2.TranslateService }], propDecorators: { featureCatalog: [{
|
|
227
|
-
type: Input
|
|
228
|
-
}], cacheActive: [{
|
|
229
|
-
type: Input
|
|
230
|
-
}], link: [{
|
|
231
|
-
type: Input
|
|
232
|
-
}], aggregation: [{
|
|
233
|
-
type: Input
|
|
234
|
-
}], xProperty: [{
|
|
235
|
-
type: Input
|
|
236
|
-
}], yProperty: [{
|
|
237
|
-
type: Input
|
|
238
|
-
}], chartType: [{
|
|
239
|
-
type: Input
|
|
240
|
-
}], userChartConfig: [{
|
|
241
|
-
type: Input
|
|
242
|
-
}], chartConfig$: [{
|
|
243
|
-
type: Output
|
|
244
|
-
}] } });
|
|
245
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hhcnQtdmlldy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZGF0YXZpei9zcmMvbGliL2NoYXJ0LXZpZXcvY2hhcnQtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZGF0YXZpei9zcmMvbGliL2NoYXJ0LXZpZXcvY2hhcnQtdmlldy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsdUJBQXVCLEVBQ3ZCLGlCQUFpQixFQUNqQixTQUFTLEVBQ1QsS0FBSyxFQUNMLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQTtBQUN0QixPQUFPLEVBQUUsTUFBTSxFQUFFLE1BQU0seUNBQXlDLENBQUE7QUFDaEUsT0FBTyxFQUVMLFVBQVUsRUFFVixxQkFBcUIsR0FFdEIsTUFBTSw4Q0FBOEMsQ0FBQTtBQUNyRCxPQUFPLEVBRUwseUJBQXlCLEdBQzFCLE1BQU0sc0NBQXNDLENBQUE7QUFDN0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsS0FBSyxFQUFjLE1BQU0sTUFBTSxDQUFBO0FBQ3hFLE9BQU8sRUFDTCxVQUFVLEVBQ1YsTUFBTSxFQUNOLEdBQUcsRUFDSCxXQUFXLEVBQ1gsU0FBUyxFQUNULFNBQVMsRUFDVCxHQUFHLEdBQ0osTUFBTSxnQkFBZ0IsQ0FBQTtBQUN2QixPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0seUJBQXlCLENBQUE7QUFTckQsT0FBTyxFQUFFLGFBQWEsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3JFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sdUNBQXVDLENBQUE7QUFDdEUsT0FBTyxFQUNMLG9CQUFvQixFQUNwQixtQkFBbUIsR0FDcEIs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QUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDLENBQUE7WUFDakQsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTtRQUNyQixDQUFDO1FBQ0QsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUE7UUFDcEIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxhQUFhLEVBQUUsQ0FBQTtJQUNyQyxDQUFDOytHQTNPVSxrQkFBa0I7bUdBQWxCLGtCQUFrQix1VkN6RS9CLDh4RUFrRUEseURERkksWUFBWSx3TEFDWix5QkFBeUIscU5BQ3pCLGNBQWMsNkpBQ2Qsb0JBQW9CLG9GQUNwQixtQkFBbUIsK0ZBQ25CLGFBQWE7OzRGQUlKLGtCQUFrQjtrQkFmOUIsU0FBUzsrQkFDRSxrQkFBa0IsbUJBR1gsdUJBQXVCLENBQUMsTUFBTSxXQUN0Qzt3QkFDUCxZQUFZO3dCQUNaLHlCQUF5Qjt3QkFDekIsY0FBYzt3QkFDZCxvQkFBb0I7d0JBQ3BCLG1CQUFtQjt3QkFDbkIsYUFBYTtxQkFDZCxjQUNXLElBQUk7K0lBTUgsY0FBYztzQkFBMUIsS0FBSztnQkFHRyxXQUFXO3NCQUFuQixLQUFLO2dCQUNPLElBQUk7c0JBQWhCLEtBQUs7Z0JBUU8sV0FBVztzQkFBdkIsS0FBSztnQkFLTyxTQUFTO3NCQUFyQixLQUFLO2dCQUtPLFNBQVM7c0JBQXJCLEtBQUs7Z0JBS08sU0FBUztzQkFBckIsS0FBSztnQkFLTyxlQUFlO3NCQUEzQixLQUFLO2dCQU1JLFlBQVk7c0JBQXJCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IG1hcmtlciB9IGZyb20gJ0BiaWVzYmplcmcvbmd4LXRyYW5zbGF0ZS1leHRyYWN0LW1hcmtlcidcbmltcG9ydCB7XG4gIEJhc2VSZWFkZXIsXG4gIEZldGNoRXJyb3IsXG4gIEZpZWxkQWdncmVnYXRpb24sXG4gIGdldEpzb25EYXRhSXRlbXNQcm94eSxcbiAgUHJvcGVydHlJbmZvLFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvZGF0YS1mZXRjaGVyL3NyYydcbmltcG9ydCB7XG4gIERyb3Bkb3duQ2hvaWNlLFxuICBEcm9wZG93blNlbGVjdG9yQ29tcG9uZW50LFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5pbXBvcnQgeyBCZWhhdmlvclN1YmplY3QsIGNvbWJpbmVMYXRlc3QsIEVNUFRZLCBPYnNlcnZhYmxlIH0gZnJvbSAncnhqcydcbmltcG9ydCB7XG4gIGNhdGNoRXJyb3IsXG4gIGZpbHRlcixcbiAgbWFwLFxuICBzaGFyZVJlcGxheSxcbiAgc3RhcnRXaXRoLFxuICBzd2l0Y2hNYXAsXG4gIHRhcCxcbn0gZnJvbSAncnhqcy9vcGVyYXRvcnMnXG5pbXBvcnQgeyBEYXRhU2VydmljZSB9IGZyb20gJy4uL3NlcnZpY2UvZGF0YS5zZXJ2aWNlJ1xuaW1wb3J0IHtcbiAgRGF0YXZpekNoYXJ0Q29uZmlnTW9kZWwsXG4gIElucHV0Q2hhcnRUeXBlLFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9tb2RlbC9kYXRhdml6L2RhdGF2aXotY29uZmlndXJhdGlvbi5tb2RlbCdcbmltcG9ydCB7XG4gIERhdGFzZXRGZWF0dXJlQ2F0YWxvZyxcbiAgRGF0YXNldE9ubGluZVJlc291cmNlLFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbW1vbi9kb21haW4vc3JjL2xpYi9tb2RlbC9yZWNvcmQnXG5pbXBvcnQgeyBUcmFuc2xhdGVQaXBlLCBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSdcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcbmltcG9ydCB7IENoYXJ0Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9kYXRhdml6L3NyYydcbmltcG9ydCB7XG4gIExvYWRpbmdNYXNrQ29tcG9uZW50LFxuICBQb3B1cEFsZXJ0Q29tcG9uZW50LFxufSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL3dpZGdldHMvc3JjJ1xuXG5tYXJrZXIoJ2NoYXJ0LnR5cGUuYmFyJylcbm1hcmtlcignY2hhcnQudHlwZS5iYXJIb3Jpem9udGFsJylcbm1hcmtlcignY2hhcnQudHlwZS5saW5lJylcbm1hcmtlcignY2hhcnQudHlwZS5saW5lU21vb3RoJylcbm1hcmtlcignY2hhcnQudHlwZS5waWUnKVxuXG5tYXJrZXIoJ2NoYXJ0LmFnZ3JlZ2F0aW9uLnN1bScpXG5tYXJrZXIoJ2NoYXJ0LmFnZ3JlZ2F0aW9uLm1heCcpXG5tYXJrZXIoJ2NoYXJ0LmFnZ3JlZ2F0aW9uLm1pbicpXG5tYXJrZXIoJ2NoYXJ0LmFnZ3JlZ2F0aW9uLmF2ZXJhZ2UnKVxubWFya2VyKCdjaGFydC5hZ2dyZWdhdGlvbi5jb3VudCcpXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWNoYXJ0LXZpZXcnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2hhcnQtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2NoYXJ0LXZpZXcuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBEcm9wZG93blNlbGVjdG9yQ29tcG9uZW50LFxuICAgIENoYXJ0Q29tcG9uZW50LFxuICAgIExvYWRpbmdNYXNrQ29tcG9uZW50LFxuICAgIFBvcHVwQWxlcnRDb21wb25lbnQsXG4gICAgVHJhbnNsYXRlUGlwZSxcbiAgXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgQ2hhcnRWaWV3Q29tcG9uZW50IHtcbiAgcHVibGljIGZlYXR1cmVDYXRhbG9nJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8RGF0YXNldEZlYXR1cmVDYXRhbG9nIHwgbnVsbD4oXG4gICAgbnVsbFxuICApXG4gIEBJbnB1dCgpIHNldCBmZWF0dXJlQ2F0YWxvZyh2YWx1ZTogRGF0YXNldEZlYXR1cmVDYXRhbG9nKSB7XG4gICAgdGhpcy5mZWF0dXJlQ2F0YWxvZyQubmV4dCh2YWx1ZSlcbiAgfVxuICBASW5wdXQoKSBjYWNoZUFjdGl2ZSA9IHRydWVcbiAgQElucHV0KCkgc2V0IGxpbmsodmFsdWU6IERhdGFzZXRPbmxpbmVSZXNvdXJjZSkge1xuICAgIHRoaXMuY3VycmVudExpbmskLm5leHQodmFsdWUpXG4gICAgaWYgKHZhbHVlKSB7XG4gICAgICB0aGlzLmFnZ3JlZ2F0aW9uJC5uZXh0KCdzdW0nKVxuICAgIH1cbiAgfVxuICBwcml2YXRlIGN1cnJlbnRMaW5rJCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8RGF0YXNldE9ubGluZVJlc291cmNlPihudWxsKVxuXG4gIEBJbnB1dCgpIHNldCBhZ2dyZWdhdGlvbih2YWx1ZTogRmllbGRBZ2dyZWdhdGlvblswXSkge1xuICAgIHRoaXMuYWdncmVnYXRpb24kLm5leHQodmFsdWUpXG4gIH1cbiAgYWdncmVnYXRpb24kID0gbmV3IEJlaGF2aW9yU3ViamVjdDxGaWVsZEFnZ3JlZ2F0aW9uWzBdPignc3VtJylcblxuICBASW5wdXQoKSBzZXQgeFByb3BlcnR5KHZhbHVlOiBzdHJpbmcpIHtcbiAgICB0aGlzLnhQcm9wZXJ0eSQubmV4dCh2YWx1ZSlcbiAgfVxuICB4UHJvcGVydHkkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxzdHJpbmc+KHVuZGVmaW5lZClcblxuICBASW5wdXQoKSBzZXQgeVByb3BlcnR5KHZhbHVlOiBzdHJpbmcpIHtcbiAgICB0aGlzLnlQcm9wZXJ0eSQubmV4dCh2YWx1ZSlcbiAgfVxuICB5UHJvcGVydHkkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxzdHJpbmc+KHVuZGVmaW5lZClcblxuICBASW5wdXQoKSBzZXQgY2hhcnRUeXBlKHZhbHVlOiBJbnB1dENoYXJ0VHlwZSkge1xuICAgIHRoaXMuY2hhcnRUeXBlJC5uZXh0KHZhbHVlKVxuICB9XG4gIGNoYXJ0VHlwZSQgPSBuZXcgQmVoYXZpb3JTdWJqZWN0PElucHV0Q2hhcnRUeXBlPignYmFyJylcblxuICBASW5wdXQoKSBzZXQgdXNlckNoYXJ0Q29uZmlnKGNvbmZpZzogRGF0YXZpekNoYXJ0Q29uZmlnTW9kZWwpIHtcbiAgICB0aGlzLmFnZ3JlZ2F0aW9uJC5uZXh0KGNvbmZpZy5hZ2dyZWdhdGlvbilcbiAgICB0aGlzLnhQcm9wZXJ0eSQubmV4dChjb25maWcueFByb3BlcnR5KVxuICAgIHRoaXMueVByb3BlcnR5JC5uZXh0KGNvbmZpZy55UHJvcGVydHkpXG4gICAgdGhpcy5jaGFydFR5cGUkLm5leHQoY29uZmlnLmNoYXJ0VHlwZSlcbiAgfVxuICBAT3V0cHV0KCkgY2hhcnRDb25maWckID0gY29tYmluZUxhdGVzdChbXG4gICAgdGhpcy54UHJvcGVydHkkLnBpcGUoZmlsdGVyKCh2YWx1ZSkgPT4gdmFsdWUgIT09IHVuZGVmaW5lZCkpLFxuICAgIHRoaXMueVByb3BlcnR5JC5waXBlKGZpbHRlcigodmFsdWUpID0+IHZhbHVlICE9PSB1bmRlZmluZWQpKSxcbiAgICB0aGlzLmFnZ3JlZ2F0aW9uJCxcbiAgICB0aGlzLmNoYXJ0VHlwZSQsXG4gIF0pLnBpcGUoXG4gICAgbWFwKChbeFByb3BlcnR5LCB5UHJvcGVydHksIGFnZ3JlZ2F0aW9uLCBjaGFydFR5cGVdKSA9PiAoe1xuICAgICAgYWdncmVnYXRpb24sXG4gICAgICB4UHJvcGVydHksXG4gICAgICB5UHJvcGVydHksXG4gICAgICBjaGFydFR5cGUsXG4gICAgfSkpXG4gIClcblxuICBsb2FkaW5nID0gZmFsc2VcbiAgZXJyb3IgPSBudWxsXG4gIGVycm9ySW5mbyA9IG51bGxcblxuICB0eXBlQ2hvaWNlczogRHJvcGRvd25DaG9pY2VbXSA9IFtcbiAgICB7IGxhYmVsOiAnY2hhcnQudHlwZS5iYXInLCB2YWx1ZTogJ2JhcicgfSxcbiAgICB7IGxhYmVsOiAnY2hhcnQudHlwZS5iYXJIb3Jpem9udGFsJywgdmFsdWU6ICdiYXItaG9yaXpvbnRhbCcgfSxcbiAgICB7IGxhYmVsOiAnY2hhcnQudHlwZS5saW5lJywgdmFsdWU6ICdsaW5lJyB9LFxuICAgIHsgbGFiZWw6ICdjaGFydC50eXBlLmxpbmVTbW9vdGgnLCB2YWx1ZTogJ2xpbmUtaW50ZXJwb2xhdGVkJyB9LFxuICAgIHsgbGFiZWw6ICdjaGFydC50eXBlLnBpZScsIHZhbHVlOiAncGllJyB9LFxuICBdXG5cbiAgZ2V0IGFnZ3JlZ2F0aW9uQ2hvaWNlcygpIHtcbiAgICBpZiAoIXRoaXMueVByb3BlcnR5JC52YWx1ZSkge1xuICAgICAgcmV0dXJuIFt7IGxhYmVsOiAnY2hhcnQuYWdncmVnYXRpb24uY291bnQnLCB2YWx1ZTogJ2NvdW50JyB9XVxuICAgIH1cbiAgICByZXR1cm4gW1xuICAgICAgeyBsYWJlbDogJ2NoYXJ0LmFnZ3JlZ2F0aW9uLnN1bScsIHZhbHVlOiAnc3VtJyB9LFxuICAgICAgeyBsYWJlbDogJ2NoYXJ0LmFnZ3JlZ2F0aW9uLm1heCcsIHZhbHVlOiAnbWF4JyB9LFxuICAgICAgeyBsYWJlbDogJ2NoYXJ0LmFnZ3JlZ2F0aW9uLm1pbicsIHZhbHVlOiAnbWluJyB9LFxuICAgICAgeyBsYWJlbDogJ2NoYXJ0LmFnZ3JlZ2F0aW9uLmF2ZXJhZ2UnLCB2YWx1ZTogJ2F2ZXJhZ2UnIH0sXG4gICAgICB7IGxhYmVsOiAnY2hhcnQuYWdncmVnYXRpb24uY291bnQnLCB2YWx1ZTogJ2NvdW50JyB9LFxuICAgIF0gYXMgRHJvcGRvd25DaG9pY2VbXVxuICB9XG5cbiAgZGF0YXNldCQ6IE9ic2VydmFibGU8QmFzZVJlYWRlcj4gPSB0aGlzLmN1cnJlbnRMaW5rJC5waXBlKFxuICAgIGZpbHRlcigobGluaykgPT4gISFsaW5rKSxcbiAgICBzd2l0Y2hNYXAoKGxpbmspID0+IHtcbiAgICAgIHRoaXMuZXJyb3IgPSBudWxsXG4gICAgICB0aGlzLmxvYWRpbmcgPSB0cnVlXG4gICAgICBpZiAobGluay5hY2Nlc3NSZXN0cmljdGVkKSB7XG4gICAgICAgIHRoaXMuaGFuZGxlRXJyb3IoJ2RhdGFzZXQuZXJyb3IucmVzdHJpY3RlZEFjY2VzcycpXG4gICAgICAgIHJldHVybiBFTVBUWVxuICAgICAgfVxuICAgICAgcmV0dXJuIHRoaXMuZGF0YVNlcnZpY2UuZ2V0RGF0YXNldChsaW5rLCB0aGlzLmNhY2hlQWN0aXZlKS5waXBlKFxuICAgICAgICBjYXRjaEVycm9yKChlcnJvcikgPT4ge1xuICAgICAgICAgIHRoaXMuaGFuZGxlRXJyb3IoZXJyb3IpXG4gICAgICAgICAgcmV0dXJuIEVNUFRZXG4gICAgICAgIH0pXG4gICAgICApXG4gICAgfSksXG4gICAgc2hhcmVSZXBsYXkoMSlcbiAgKVxuICBwcm9wZXJ0aWVzJCA9IGNvbWJpbmVMYXRlc3QoW3RoaXMuZGF0YXNldCQsIHRoaXMuZmVhdHVyZUNhdGFsb2ckXSkucGlwZShcbiAgICBzd2l0Y2hNYXAoKFtkYXRhc2V0LCBjYXRhbG9nXSkgPT4gdGhpcy5zZXRQcm9wZXJ0aWVzKGRhdGFzZXQsIGNhdGFsb2cpKSxcbiAgICBzaGFyZVJlcGxheSgxKVxuICApXG4gIHlDaG9pY2VzJCA9IHRoaXMucHJvcGVydGllcyQucGlwZShcbiAgICBtYXAoKHByb3BlcnRpZXMpID0+XG4gICAgICBwcm9wZXJ0aWVzXG4gICAgICAgIC5maWx0ZXIoKHByb3ApID0+IHByb3AudHlwZSA9PT0gJ251bWJlcicgfHwgcHJvcC50eXBlID09PSAnZGF0ZScpXG4gICAgICAgIC5tYXAoKHByb3ApID0+ICh7IHZhbHVlOiBwcm9wLm5hbWUsIGxhYmVsOiBwcm9wLmxhYmVsIHx8IHByb3AubmFtZSB9KSlcbiAgICApLFxuICAgIHRhcCgoY2hvaWNlcykgPT4ge1xuICAgICAgaWYgKCFjaG9pY2VzLmZpbmQoKGNob2ljZSkgPT4gY2hvaWNlLnZhbHVlID09PSB0aGlzLnlQcm9wZXJ0eSQudmFsdWUpKSB7XG4gICAgICAgIGNvbnN0IG5ld1Byb3AgPSBjaG9pY2VzWzBdPy52YWx1ZSB8fCAnJ1xuICAgICAgICBpZiAoIW5ld1Byb3AgJiYgdGhpcy5hZ2dyZWdhdGlvbiQudmFsdWUgIT09ICdjb3VudCcpIHtcbiAgICAgICAgICB0aGlzLmFnZ3JlZ2F0aW9uJC5uZXh0KCdjb3VudCcpXG4gICAgICAgIH1cbiAgICAgICAgdGhpcy55UHJvcGVydHkkLm5leHQobmV3UHJvcClcbiAgICAgIH1cbiAgICB9KVxuICApXG4gIHhDaG9pY2VzJCA9IHRoaXMucHJvcGVydGllcyQucGlwZShcbiAgICBtYXAoKHByb3BlcnRpZXMpID0+XG4gICAgICBwcm9wZXJ0aWVzXG4gICAgICAgIC5maWx0ZXIoKHByb3ApID0+IHByb3AudHlwZSA9PT0gJ3N0cmluZycpXG4gICAgICAgIC5tYXAoKHByb3ApID0+ICh7XG4gICAgICAgICAgdmFsdWU6IHByb3AubmFtZSxcbiAgICAgICAgICBsYWJlbDogcHJvcC5sYWJlbCB8fCBwcm9wLm5hbWUsXG4gICAgICAgIH0pKVxuICAgICksXG4gICAgdGFwKChjaG9pY2VzKSA9PiB7XG4gICAgICBpZiAoIWNob2ljZXMuZmluZCgoY2hvaWNlKSA9PiBjaG9pY2UudmFsdWUgPT09IHRoaXMueFByb3BlcnR5JC52YWx1ZSkpIHtcbiAgICAgICAgdGhpcy54UHJvcGVydHkkLm5leHQoY2hvaWNlc1swXT8udmFsdWUgfHwgJycpXG4gICAgICB9XG4gICAgfSlcbiAgKVxuXG4gIGNoYXJ0RGF0YSQgPSBjb21iaW5lTGF0ZXN0KFtcbiAgICB0aGlzLmRhdGFzZXQkLFxuICAgIHRoaXMueFByb3BlcnR5JC5waXBlKGZpbHRlcigodmFsdWUpID0+IHZhbHVlICE9PSB1bmRlZmluZWQpKSxcbiAgICB0aGlzLnlQcm9wZXJ0eSQucGlwZShmaWx0ZXIoKHZhbHVlKSA9PiB2YWx1ZSAhPT0gdW5kZWZpbmVkKSksXG4gICAgdGhpcy5hZ2dyZWdhdGlvbiQsXG4gIF0pLnBpcGUoXG4gICAgZmlsdGVyKChbXywgeCwgeV0pID0+ICEheCB8fCAhIXkpLFxuICAgIHN3aXRjaE1hcCgoW2RhdGFzZXQsIHhQcm9wLCB5UHJvcCwgYWdncmVnYXRpb25dKSA9PiB7XG4gICAgICBjb25zdCBmaWVsZEFnZzogRmllbGRBZ2dyZWdhdGlvbiA9XG4gICAgICAgIGFnZ3JlZ2F0aW9uID09PSAnY291bnQnID8gWydjb3VudCddIDogW2FnZ3JlZ2F0aW9uLCB5UHJvcF1cbiAgICAgIHJldHVybiBkYXRhc2V0XG4gICAgICAgIC5ncm91cEJ5KFsnZGlzdGluY3QnLCB4UHJvcF0pXG4gICAgICAgIC5hZ2dyZWdhdGUoZmllbGRBZ2cpXG4gICAgICAgIC5yZWFkKClcbiAgICAgICAgLmNhdGNoKChlcnJvcikgPT4ge1xuICAgICAgICAgIHRoaXMuaGFuZGxlRXJyb3IoZXJyb3IpXG4gICAgICAgICAgcmV0dXJuIFtdXG4gICAgICAgIH0pXG4gICAgICAgIC5maW5hbGx5KCgpID0+IHtcbiAgICAgICAgICB0aGlzLmxvYWRpbmcgPSBmYWxzZVxuICAgICAgICB9KVxuICAgIH0pLFxuICAgIG1hcChnZXRKc29uRGF0YUl0ZW1zUHJveHkpLFxuICAgIHN0YXJ0V2l0aChbXSksXG4gICAgc2hhcmVSZXBsYXkoMSlcbiAgKVxuXG4gIHByZXR0eUxhYmVsJCA9IGNvbWJpbmVMYXRlc3QoW1xuICAgIHRoaXMuYWdncmVnYXRpb24kLFxuICAgIHRoaXMucHJvcGVydGllcyQsXG4gICAgdGhpcy55UHJvcGVydHkkLFxuICBdKS5waXBlKFxuICAgIG1hcCgoW2FnZ3JlZ2F0aW9uLCBwcm9wZXJ0aWVzLCB5UHJvcGVydHldKSA9PiB7XG4gICAgICBpZiAoYWdncmVnYXRpb24gPT09ICdjb3VudCcpIHJldHVybiAnY291bnQoKSdcbiAgICAgIGNvbnN0IHByb3AgPSBwcm9wZXJ0aWVzLmZpbmQoKHApID0+IHAubmFtZSA9PT0geVByb3BlcnR5KVxuICAgICAgcmV0dXJuIHByb3AgPyBgJHthZ2dyZWdhdGlvbn0oJHtwcm9wLmxhYmVsfSlgIDogJydcbiAgICB9KVxuICApXG5cbiAgZ2V0IGxhYmVsUHJvcGVydHkoKSB7XG4gICAgaWYgKCF0aGlzLnhQcm9wZXJ0eSQudmFsdWUpIHJldHVybiAnJ1xuICAgIHJldHVybiBgZGlzdGluY3QoJHt0aGlzLnhQcm9wZXJ0eSQudmFsdWV9KWBcbiAgfVxuICBnZXQgdmFsdWVQcm9wZXJ0eSgpIHtcbiAgICBpZiAodGhpcy5pc0NvdW50QWdncmVnYXRpb24pIHJldHVybiAnY291bnQoKSdcbiAgICByZXR1cm4gYCR7dGhpcy5hZ2dyZWdhdGlvbiQudmFsdWV9KCR7dGhpcy55UHJvcGVydHkkLnZhbHVlfSlgXG4gIH1cbiAgZ2V0IGlzQ291bnRBZ2dyZWdhdGlvbigpIHtcbiAgICByZXR1cm4gdGhpcy5hZ2dyZWdhdGlvbiQudmFsdWUgPT09ICdjb3VudCdcbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgZGF0YVNlcnZpY2U6IERhdGFTZXJ2aWNlLFxuICAgIHByaXZhdGUgY2hhbmdlRGV0ZWN0b3I6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHByaXZhdGUgdHJhbnNsYXRlU2VydmljZTogVHJhbnNsYXRlU2VydmljZVxuICApIHt9XG5cbiAgc2V0UHJvcGVydGllcyhcbiAgICBkYXRhc2V0OiBCYXNlUmVhZGVyLFxuICAgIGNhdGFsb2c6IERhdGFzZXRGZWF0dXJlQ2F0YWxvZ1xuICApOiBQcm9taXNlPFByb3BlcnR5SW5mb1tdPiB7XG4gICAgcmV0dXJuIGRhdGFzZXQucHJvcGVydGllc1xuICAgICAgLnRoZW4oKHByb3BlcnRpZXMpID0+IHtcbiAgICAgICAgcmV0dXJuIHByb3BlcnRpZXMubWFwKChwKSA9PiB7XG4gICAgICAgICAgaWYgKGNhdGFsb2cpIHtcbiAgICAgICAgICAgIGNvbnN0IGZlYXR1cmVBdHRyaWJ1dGVzID0gY2F0YWxvZz8uZmVhdHVyZVR5cGVzWzBdPy5hdHRyaWJ1dGVzID8/IFtdXG4gICAgICAgICAgICBjb25zdCBtYXRjaGluZ0F0dHJpYnV0ZSA9IGZlYXR1cmVBdHRyaWJ1dGVzLmZpbmQoXG4gICAgICAgICAgICAgIChhdHRyKSA9PiBhdHRyLm5hbWUgPT09IHAubGFiZWxcbiAgICAgICAgICAgIClcbiAgICAgICAgICAgIGlmIChtYXRjaGluZ0F0dHJpYnV0ZT8uY29kZSkge1xuICAgICAgICAgICAgICByZXR1cm4geyAuLi5wLCBsYWJlbDogbWF0Y2hpbmdBdHRyaWJ1dGUuY29kZSB9XG4gICAgICAgICAgICB9XG4gICAgICAgICAgICByZXR1cm4gcFxuICAgICAgICAgIH1cbiAgICAgICAgICByZXR1cm4gcFxuICAgICAgICB9KVxuICAgICAgfSlcbiAgICAgIC5jYXRjaCgoZXJyb3IpID0+IHtcbiAgICAgICAgdGhpcy5oYW5kbGVFcnJvcihlcnJvcilcbiAgICAgICAgcmV0dXJuIFtdXG4gICAgICB9KVxuICB9XG4gIGhhbmRsZUVycm9yKGVycm9yOiBGZXRjaEVycm9yIHwgRXJyb3IgfCBzdHJpbmcpIHtcbiAgICBpZiAoZXJyb3IgaW5zdGFuY2VvZiBGZXRjaEVycm9yKSB7XG4gICAgICB0aGlzLmVycm9yID0gdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoXG4gICAgICAgIGBkYXRhc2V0LmVycm9yLiR7ZXJyb3IudHlwZX1gLFxuICAgICAgICB7XG4gICAgICAgICAgaW5mbzogZXJyb3IuaW5mbyxcbiAgICAgICAgfVxuICAgICAgKVxuICAgICAgY29uc29sZS53YXJuKGVycm9yLm1lc3NhZ2UpXG4gICAgfSBlbHNlIGlmIChlcnJvciBpbnN0YW5jZW9mIEVycm9yKSB7XG4gICAgICB0aGlzLmVycm9yID0gdGhpcy50cmFuc2xhdGVTZXJ2aWNlLmluc3RhbnQoZXJyb3IubWVzc2FnZSlcbiAgICAgIGNvbnNvbGUud2FybihlcnJvci5zdGFjayB8fCBlcnJvcilcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5lcnJvciA9IHRoaXMudHJhbnNsYXRlU2VydmljZS5pbnN0YW50KGVycm9yKVxuICAgICAgY29uc29sZS53YXJuKGVycm9yKVxuICAgIH1cbiAgICB0aGlzLmxvYWRpbmcgPSBmYWxzZVxuICAgIHRoaXMuY2hhbmdlRGV0ZWN0b3IuZGV0ZWN0Q2hhbmdlcygpXG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJ3LWZ1bGwgaC1mdWxsIGZsZXggZmxleC1jb2xcIj5cbiAgPGRpdlxuICAgIGNsYXNzPVwiZmxleCBmbGV4LWNvbCBzcGFjZS15LTIgc206ZmxleC1yb3cgc206c3BhY2UteS0wIHNtOnNwYWNlLXgtMiBqdXN0aWZ5LWJldHdlZW4gdGV4dC1bMTNweF1cIlxuICA+XG4gICAgPGduLXVpLWRyb3Bkb3duLXNlbGVjdG9yXG4gICAgICBjbGFzcz1cImJhc2lzLTEvNFwiXG4gICAgICBbY2hvaWNlc109XCJ0eXBlQ2hvaWNlc1wiXG4gICAgICBbZXh0cmFCdG5DbGFzc109XCInc2Vjb25kYXJ5IG1pbi13LWZ1bGwnXCJcbiAgICAgIChzZWxlY3RWYWx1ZSk9XCJjaGFydFR5cGUkLm5leHQoJGV2ZW50KVwiXG4gICAgICBbc2VsZWN0ZWRdPVwiY2hhcnRUeXBlJC52YWx1ZVwiXG4gICAgICBbdGl0bGVdPVwiJ2NoYXJ0LmRyb3Bkb3duLnR5cGUnIHwgdHJhbnNsYXRlXCJcbiAgICA+PC9nbi11aS1kcm9wZG93bi1zZWxlY3Rvcj5cbiAgICA8Z24tdWktZHJvcGRvd24tc2VsZWN0b3JcbiAgICAgIGNsYXNzPVwiYmFzaXMtMS80XCJcbiAgICAgIFtjaG9pY2VzXT1cInhDaG9pY2VzJCB8IGFzeW5jXCJcbiAgICAgIFtleHRyYUJ0bkNsYXNzXT1cIidzZWNvbmRhcnkgbWluLXctZnVsbCdcIlxuICAgICAgKHNlbGVjdFZhbHVlKT1cInhQcm9wZXJ0eSQubmV4dCgkZXZlbnQpXCJcbiAgICAgIFtzZWxlY3RlZF09XCJ4UHJvcGVydHkkLnZhbHVlXCJcbiAgICAgIFt0aXRsZV09XCInY2hhcnQuZHJvcGRvd24ueFByb3BlcnR5JyB8IHRyYW5zbGF0ZVwiXG4gICAgPjwvZ24tdWktZHJvcGRvd24tc2VsZWN0b3I+XG4gICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cInlDaG9pY2VzJCB8IGFzeW5jIGFzIHlDaG9pY2VzXCI+XG4gICAgICA8Z24tdWktZHJvcGRvd24tc2VsZWN0b3JcbiAgICAgICAgY2xhc3M9XCJiYXNpcy0xLzRcIlxuICAgICAgICAqbmdJZj1cIiFpc0NvdW50QWdncmVnYXRpb25cIlxuICAgICAgICBbY2hvaWNlc109XCJ5Q2hvaWNlc1wiXG4gICAgICAgIChzZWxlY3RWYWx1ZSk9XCJ5UHJvcGVydHkkLm5leHQoJGV2ZW50KVwiXG4gICAgICAgIFtzZWxlY3RlZF09XCJ5UHJvcGVydHkkLnZhbHVlXCJcbiAgICAgICAgW3RpdGxlXT1cIidjaGFydC5kcm9wZG93bi55UHJvcGVydHknIHwgdHJhbnNsYXRlXCJcbiAgICAgICAgY2xhc3M9XCJzZWxlY3QteS1wcm9wXCJcbiAgICAgID48L2duLXVpLWRyb3Bkb3duLXNlbGVjdG9yPlxuICAgIDwvbmctY29udGFpbmVyPlxuICAgIDxnbi11aS1kcm9wZG93bi1zZWxlY3RvclxuICAgICAgY2xhc3M9XCJiYXNpcy0xLzRcIlxuICAgICAgW2Nob2ljZXNdPVwiYWdncmVnYXRpb25DaG9pY2VzXCJcbiAgICAgIGNsYXNzPVwiYWdncmVnYXRpb24tY2hvaWNlc1wiXG4gICAgICAoc2VsZWN0VmFsdWUpPVwiYWdncmVnYXRpb24kLm5leHQoJGV2ZW50KVwiXG4gICAgICBbc2VsZWN0ZWRdPVwiYWdncmVnYXRpb24kLnZhbHVlXCJcbiAgICAgIFt0aXRsZV09XCInY2hhcnQuZHJvcGRvd24uYWdncmVnYXRpb24nIHwgdHJhbnNsYXRlXCJcbiAgICA+PC9nbi11aS1kcm9wZG93bi1zZWxlY3Rvcj5cbiAgPC9kaXY+XG4gIDxkaXZcbiAgICBjbGFzcz1cInJlbGF0aXZlIGgtZnVsbCBtdC0yIGJnLXdoaXRlIGJvcmRlciBib3JkZXItZ3JheS0zMDAgcm91bmRlZC1sZyBvdmVyZmxvdy1oaWRkZW5cIlxuICA+XG4gICAgPGduLXVpLWNoYXJ0XG4gICAgICAqbmdJZj1cIiFlcnJvclwiXG4gICAgICBbZGF0YV09XCJjaGFydERhdGEkIHwgYXN5bmNcIlxuICAgICAgW3R5cGVdPVwiY2hhcnRUeXBlJC52YWx1ZVwiXG4gICAgICBbcHJldHR5TGFiZWxdPVwicHJldHR5TGFiZWwkIHwgYXN5bmNcIlxuICAgICAgW2xhYmVsUHJvcGVydHldPVwibGFiZWxQcm9wZXJ0eVwiXG4gICAgICBbdmFsdWVQcm9wZXJ0eV09XCJ2YWx1ZVByb3BlcnR5XCJcbiAgICA+PC9nbi11aS1jaGFydD5cbiAgICA8Z24tdWktbG9hZGluZy1tYXNrXG4gICAgICAqbmdJZj1cImxvYWRpbmdcIlxuICAgICAgY2xhc3M9XCJhYnNvbHV0ZSBpbnNldC0wXCJcbiAgICAgIFttZXNzYWdlXT1cIidjaGFydC5sb2FkaW5nLmRhdGEnIHwgdHJhbnNsYXRlXCJcbiAgICA+PC9nbi11aS1sb2FkaW5nLW1hc2s+XG4gICAgPGduLXVpLXBvcHVwLWFsZXJ0XG4gICAgICAqbmdJZj1cImVycm9yXCJcbiAgICAgIHR5cGU9XCJ3YXJuaW5nXCJcbiAgICAgIGljb249XCJtYXRFcnJvck91dGxpbmVPdXRsaW5lXCJcbiAgICAgIGNsYXNzPVwiYWJzb2x1dGUgbS0yIGluc2V0LTBcIlxuICAgID5cbiAgICAgIDxzcGFuPnt7IGVycm9yIH19PC9zcGFuPlxuICAgIDwvZ24tdWktcG9wdXAtYWxlcnQ+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
|
package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, Component, Input, } from '@angular/core';
|
|
2
|
-
import { FigureComponent } from '../../../../../../../libs/ui/dataviz/src';
|
|
3
|
-
import { FigureService } from '../figure.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "../figure.service";
|
|
6
|
-
export class FigureContainerComponent {
|
|
7
|
-
constructor(service) {
|
|
8
|
-
this.service = service;
|
|
9
|
-
this.digits = 2;
|
|
10
|
-
}
|
|
11
|
-
ngOnChanges() {
|
|
12
|
-
const figure = this.service
|
|
13
|
-
.compute(this.expression, this.dataset)
|
|
14
|
-
.toFixed(this.digits);
|
|
15
|
-
this.figure = parseFloat(figure).toString();
|
|
16
|
-
}
|
|
17
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FigureContainerComponent, deps: [{ token: i1.FigureService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
18
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FigureContainerComponent, isStandalone: true, selector: "gn-ui-figure-container", inputs: { dataset: "dataset", expression: "expression", icon: "icon", title: "title", unit: "unit", digits: "digits" }, usesOnChanges: true, ngImport: i0, template: "<gn-ui-figure\n [figure]=\"figure\"\n [icon]=\"icon\"\n [title]=\"title\"\n [unit]=\"unit\"\n></gn-ui-figure>\n", styles: [""], dependencies: [{ kind: "component", type: FigureComponent, selector: "gn-ui-figure", inputs: ["icon", "title", "figure", "unit", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
19
|
-
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FigureContainerComponent, decorators: [{
|
|
21
|
-
type: Component,
|
|
22
|
-
args: [{ selector: 'gn-ui-figure-container', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [FigureComponent], template: "<gn-ui-figure\n [figure]=\"figure\"\n [icon]=\"icon\"\n [title]=\"title\"\n [unit]=\"unit\"\n></gn-ui-figure>\n" }]
|
|
23
|
-
}], ctorParameters: () => [{ type: i1.FigureService }], propDecorators: { dataset: [{
|
|
24
|
-
type: Input
|
|
25
|
-
}], expression: [{
|
|
26
|
-
type: Input
|
|
27
|
-
}], icon: [{
|
|
28
|
-
type: Input
|
|
29
|
-
}], title: [{
|
|
30
|
-
type: Input
|
|
31
|
-
}], unit: [{
|
|
32
|
-
type: Input
|
|
33
|
-
}], digits: [{
|
|
34
|
-
type: Input
|
|
35
|
-
}] } });
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlndXJlLWNvbnRhaW5lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZGF0YXZpei9zcmMvbGliL2ZpZ3VyZS9maWd1cmUtY29udGFpbmVyL2ZpZ3VyZS1jb250YWluZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2RhdGF2aXovc3JjL2xpYi9maWd1cmUvZmlndXJlLWNvbnRhaW5lci9maWd1cmUtY29udGFpbmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULEtBQUssR0FFTixNQUFNLGVBQWUsQ0FBQTtBQUN0QixPQUFPLEVBQUUsZUFBZSxFQUFrQixNQUFNLDBDQUEwQyxDQUFBO0FBQzFGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQTs7O0FBVWpELE1BQU0sT0FBTyx3QkFBd0I7SUFTbkMsWUFBb0IsT0FBc0I7UUFBdEIsWUFBTyxHQUFQLE9BQU8sQ0FBZTtRQUhqQyxXQUFNLEdBQVksQ0FBQyxDQUFBO0lBR2lCLENBQUM7SUFFOUMsV0FBVztRQUNULE1BQU0sTUFBTSxHQUFHLElBQUksQ0FBQyxPQUFPO2FBQ3hCLE9BQU8sQ0FBQyxJQUFJLENBQUMsVUFBVSxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUM7YUFDdEMsT0FBTyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQTtRQUN2QixJQUFJLENBQUMsTUFBTSxHQUFHLFVBQVUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxRQUFRLEVBQUUsQ0FBQTtJQUM3QyxDQUFDOytHQWhCVSx3QkFBd0I7bUdBQXhCLHdCQUF3QiwrTkNqQnJDLHFIQU1BLDBERFNZLGVBQWU7OzRGQUVkLHdCQUF3QjtrQkFScEMsU0FBUzsrQkFDRSx3QkFBd0IsbUJBR2pCLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsZUFBZSxDQUFDO2tGQUdqQixPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSztnQkFDRyxNQUFNO3NCQUFkLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBJbnB1dCxcbiAgT25DaGFuZ2VzLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgRmlndXJlQ29tcG9uZW50LCBUYWJsZUl0ZW1Nb2RlbCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZGF0YXZpei9zcmMnXG5pbXBvcnQgeyBGaWd1cmVTZXJ2aWNlIH0gZnJvbSAnLi4vZmlndXJlLnNlcnZpY2UnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZpZ3VyZS1jb250YWluZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vZmlndXJlLWNvbnRhaW5lci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2ZpZ3VyZS1jb250YWluZXIuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0ZpZ3VyZUNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIEZpZ3VyZUNvbnRhaW5lckNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIGRhdGFzZXQ6IFRhYmxlSXRlbU1vZGVsW11cbiAgQElucHV0KCkgZXhwcmVzc2lvbjogc3RyaW5nXG4gIEBJbnB1dCgpIGljb246IHN0cmluZ1xuICBASW5wdXQoKSB0aXRsZTogc3RyaW5nXG4gIEBJbnB1dCgpIHVuaXQ6IHN0cmluZ1xuICBASW5wdXQoKSBkaWdpdHM/OiBudW1iZXIgPSAyXG4gIGZpZ3VyZTogc3RyaW5nXG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBzZXJ2aWNlOiBGaWd1cmVTZXJ2aWNlKSB7fVxuXG4gIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgIGNvbnN0IGZpZ3VyZSA9IHRoaXMuc2VydmljZVxuICAgICAgLmNvbXB1dGUodGhpcy5leHByZXNzaW9uLCB0aGlzLmRhdGFzZXQpXG4gICAgICAudG9GaXhlZCh0aGlzLmRpZ2l0cylcbiAgICB0aGlzLmZpZ3VyZSA9IHBhcnNlRmxvYXQoZmlndXJlKS50b1N0cmluZygpXG4gIH1cbn1cbiIsIjxnbi11aS1maWd1cmVcbiAgW2ZpZ3VyZV09XCJmaWd1cmVcIlxuICBbaWNvbl09XCJpY29uXCJcbiAgW3RpdGxlXT1cInRpdGxlXCJcbiAgW3VuaXRdPVwidW5pdFwiXG4+PC9nbi11aS1maWd1cmU+XG4iXX0=
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export const FIGURE_OPERATION_DELIMITER = '|';
|
|
4
|
-
export class FigureService {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.operations = {
|
|
7
|
-
sum: (data) => data.reduce((sum, value) => (sum += value), 0),
|
|
8
|
-
average: (data) => this.operations.sum(data) / data.length,
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
compute(expression, dataset) {
|
|
12
|
-
try {
|
|
13
|
-
const computing = expression.split(FIGURE_OPERATION_DELIMITER)[0];
|
|
14
|
-
const column = expression.split(FIGURE_OPERATION_DELIMITER)[1];
|
|
15
|
-
const data = dataset.map((row) => row[column]);
|
|
16
|
-
return this.operations[computing](data);
|
|
17
|
-
}
|
|
18
|
-
catch (e) {
|
|
19
|
-
return NaN;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FigureService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
23
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FigureService, providedIn: 'root' }); }
|
|
24
|
-
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FigureService, decorators: [{
|
|
26
|
-
type: Injectable,
|
|
27
|
-
args: [{
|
|
28
|
-
providedIn: 'root',
|
|
29
|
-
}]
|
|
30
|
-
}] });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlndXJlLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZGF0YXZpei9zcmMvbGliL2ZpZ3VyZS9maWd1cmUuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFBOztBQVExQyxNQUFNLENBQUMsTUFBTSwwQkFBMEIsR0FBRyxHQUFHLENBQUE7QUFLN0MsTUFBTSxPQUFPLGFBQWE7SUFIMUI7UUFJVSxlQUFVLEdBQTBCO1lBQzFDLEdBQUcsRUFBRSxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxLQUFLLEVBQUUsRUFBRSxDQUFDLENBQUMsR0FBRyxJQUFJLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQztZQUM3RCxPQUFPLEVBQUUsQ0FBQyxJQUFJLEVBQUUsRUFBRSxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxHQUFHLElBQUksQ0FBQyxNQUFNO1NBQzNELENBQUE7S0FZRjtJQVZDLE9BQU8sQ0FBQyxVQUFrQixFQUFFLE9BQXlCO1FBQ25ELElBQUksQ0FBQztZQUNILE1BQU0sU0FBUyxHQUFHLFVBQVUsQ0FBQyxLQUFLLENBQUMsMEJBQTBCLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtZQUNqRSxNQUFNLE1BQU0sR0FBRyxVQUFVLENBQUMsS0FBSyxDQUFDLDBCQUEwQixDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUE7WUFDOUQsTUFBTSxJQUFJLEdBQUcsT0FBTyxDQUFDLEdBQUcsQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUE7WUFDOUMsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFBO1FBQ3pDLENBQUM7UUFBQyxPQUFPLENBQUMsRUFBRSxDQUFDO1lBQ1gsT0FBTyxHQUFHLENBQUE7UUFDWixDQUFDO0lBQ0gsQ0FBQzsrR0FmVSxhQUFhO21IQUFiLGFBQWEsY0FGWixNQUFNOzs0RkFFUCxhQUFhO2tCQUh6QixVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgVGFibGVJdGVtTW9kZWwgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2RhdGF2aXovc3JjJ1xuXG50eXBlIEZpZ3VyZU9wZXJhdGlvblR5cGVzID0gJ3N1bScgfCAnYXZlcmFnZSdcbnR5cGUgRmlndXJlT3BlcmF0aW9uc01vZGVsID0gUmVjb3JkPFxuICBGaWd1cmVPcGVyYXRpb25UeXBlcyxcbiAgKGRhdGE6IG51bWJlcltdKSA9PiBudW1iZXJcbj5cbmV4cG9ydCBjb25zdCBGSUdVUkVfT1BFUkFUSU9OX0RFTElNSVRFUiA9ICd8J1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290Jyxcbn0pXG5leHBvcnQgY2xhc3MgRmlndXJlU2VydmljZSB7XG4gIHByaXZhdGUgb3BlcmF0aW9uczogRmlndXJlT3BlcmF0aW9uc01vZGVsID0ge1xuICAgIHN1bTogKGRhdGEpID0+IGRhdGEucmVkdWNlKChzdW0sIHZhbHVlKSA9PiAoc3VtICs9IHZhbHVlKSwgMCksXG4gICAgYXZlcmFnZTogKGRhdGEpID0+IHRoaXMub3BlcmF0aW9ucy5zdW0oZGF0YSkgLyBkYXRhLmxlbmd0aCxcbiAgfVxuXG4gIGNvbXB1dGUoZXhwcmVzc2lvbjogc3RyaW5nLCBkYXRhc2V0OiBUYWJsZUl0ZW1Nb2RlbFtdKTogbnVtYmVyIHtcbiAgICB0cnkge1xuICAgICAgY29uc3QgY29tcHV0aW5nID0gZXhwcmVzc2lvbi5zcGxpdChGSUdVUkVfT1BFUkFUSU9OX0RFTElNSVRFUilbMF1cbiAgICAgIGNvbnN0IGNvbHVtbiA9IGV4cHJlc3Npb24uc3BsaXQoRklHVVJFX09QRVJBVElPTl9ERUxJTUlURVIpWzFdXG4gICAgICBjb25zdCBkYXRhID0gZGF0YXNldC5tYXAoKHJvdykgPT4gcm93W2NvbHVtbl0pXG4gICAgICByZXR1cm4gdGhpcy5vcGVyYXRpb25zW2NvbXB1dGluZ10oZGF0YSlcbiAgICB9IGNhdGNoIChlKSB7XG4gICAgICByZXR1cm4gTmFOXG4gICAgfVxuICB9XG59XG4iXX0=
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, ViewChild, } from '@angular/core';
|
|
2
|
-
import { DataTableComponent, } from '../../../../../../libs/ui/dataviz/src';
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
4
|
-
import { FeatureDetailComponent, MapContainerComponent, } from '../../../../../../libs/ui/map/src';
|
|
5
|
-
import { BaseReader } from '../../../../../../libs/util/data-fetcher/src';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class GeoTableViewComponent {
|
|
8
|
-
constructor(changeRef) {
|
|
9
|
-
this.changeRef = changeRef;
|
|
10
|
-
this.subscription = new Subscription();
|
|
11
|
-
}
|
|
12
|
-
async ngOnInit() {
|
|
13
|
-
this.mapContext = await this.initMapContext();
|
|
14
|
-
}
|
|
15
|
-
onTableSelect(tableEntry) {
|
|
16
|
-
const { id } = tableEntry;
|
|
17
|
-
this.selectionId = id;
|
|
18
|
-
// this.selection = this.getFeatureFromId(id)
|
|
19
|
-
if (this.selection) {
|
|
20
|
-
this.animateToFeature(this.selection);
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
onMapFeatureSelect(features) {
|
|
24
|
-
this.selection = features?.length > 0 && features[0];
|
|
25
|
-
if (this.selection) {
|
|
26
|
-
// FIXME: show styling for selection
|
|
27
|
-
this.selectionId = this.selection.id;
|
|
28
|
-
this.changeRef.detectChanges();
|
|
29
|
-
// this.vectorLayer.changed()
|
|
30
|
-
this.uiTable.scrollToItem(this.selectionId);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
geojsonToTableData(geojson) {
|
|
34
|
-
return geojson.features.map((f) => ({
|
|
35
|
-
id: f.id,
|
|
36
|
-
...f.properties,
|
|
37
|
-
}));
|
|
38
|
-
}
|
|
39
|
-
async initMapContext() {
|
|
40
|
-
this.dataset.selectAll();
|
|
41
|
-
return {
|
|
42
|
-
layers: [
|
|
43
|
-
{
|
|
44
|
-
type: 'xyz',
|
|
45
|
-
url: 'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
type: 'geojson',
|
|
49
|
-
data: {
|
|
50
|
-
type: 'FeatureCollection',
|
|
51
|
-
// FIXME: we're not getting geojson here
|
|
52
|
-
features: await this.dataset.read(),
|
|
53
|
-
},
|
|
54
|
-
},
|
|
55
|
-
],
|
|
56
|
-
view: {
|
|
57
|
-
center: [0, 0],
|
|
58
|
-
zoom: 2,
|
|
59
|
-
},
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
animateToFeature(feature) {
|
|
63
|
-
this.mapContext = {
|
|
64
|
-
...this.mapContext,
|
|
65
|
-
view: {
|
|
66
|
-
geometry: feature.geometry,
|
|
67
|
-
maxZoom: 13,
|
|
68
|
-
},
|
|
69
|
-
};
|
|
70
|
-
// FIXME: animate the view
|
|
71
|
-
// this.view.fit(feature.getGeometry().getExtent(), {
|
|
72
|
-
// duration: 1000,
|
|
73
|
-
// maxZoom: 11,
|
|
74
|
-
// })
|
|
75
|
-
}
|
|
76
|
-
getFeatureFromId(id) {
|
|
77
|
-
// FIXME: restore this once we need it?
|
|
78
|
-
// return this.features.find((feature) => feature.id === id)
|
|
79
|
-
}
|
|
80
|
-
ngOnDestroy() {
|
|
81
|
-
this.subscription.unsubscribe();
|
|
82
|
-
}
|
|
83
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GeoTableViewComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
84
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: GeoTableViewComponent, isStandalone: true, selector: "gn-ui-geo-table-view", inputs: { dataset: "dataset" }, viewQueries: [{ propertyName: "uiTable", first: true, predicate: ["table"], descendants: true }, { propertyName: "mapContainer", first: true, predicate: ["mapContainer"], descendants: true }], ngImport: i0, template: "<div class=\"flex flex-row h-full overflow-auto\">\n <gn-ui-data-table\n #table\n class=\"w-1/2 overflow-auto\"\n [dataset]=\"dataset\"\n [activeId]=\"selectionId\"\n (selected)=\"onTableSelect($event)\"\n ></gn-ui-data-table>\n <gn-ui-map-container\n #mapContainer\n class=\"w-1/2 h-full\"\n [context]=\"mapContext\"\n (featuresClick)=\"onMapFeatureSelect($event)\"\n ></gn-ui-map-container>\n <gn-ui-feature-detail\n style=\"width: 300px\"\n class=\"p-3 shrink-0 overflow-auto\"\n [feature]=\"selection\"\n ></gn-ui-feature-detail>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: MapContainerComponent, selector: "gn-ui-map-container", inputs: ["context"], outputs: ["featuresClick", "featuresHover", "mapClick", "sourceLoadError"] }, { kind: "component", type: FeatureDetailComponent, selector: "gn-ui-feature-detail", inputs: ["feature", "featureCatalog"] }, { kind: "component", type: DataTableComponent, selector: "gn-ui-data-table", inputs: ["featureAttributes", "dataset", "activeId"], outputs: ["selected"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
85
|
-
}
|
|
86
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: GeoTableViewComponent, decorators: [{
|
|
87
|
-
type: Component,
|
|
88
|
-
args: [{ selector: 'gn-ui-geo-table-view', changeDetection: ChangeDetectionStrategy.OnPush, imports: [MapContainerComponent, FeatureDetailComponent, DataTableComponent], standalone: true, template: "<div class=\"flex flex-row h-full overflow-auto\">\n <gn-ui-data-table\n #table\n class=\"w-1/2 overflow-auto\"\n [dataset]=\"dataset\"\n [activeId]=\"selectionId\"\n (selected)=\"onTableSelect($event)\"\n ></gn-ui-data-table>\n <gn-ui-map-container\n #mapContainer\n class=\"w-1/2 h-full\"\n [context]=\"mapContext\"\n (featuresClick)=\"onMapFeatureSelect($event)\"\n ></gn-ui-map-container>\n <gn-ui-feature-detail\n style=\"width: 300px\"\n class=\"p-3 shrink-0 overflow-auto\"\n [feature]=\"selection\"\n ></gn-ui-feature-detail>\n</div>\n" }]
|
|
89
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { dataset: [{
|
|
90
|
-
type: Input
|
|
91
|
-
}], uiTable: [{
|
|
92
|
-
type: ViewChild,
|
|
93
|
-
args: ['table']
|
|
94
|
-
}], mapContainer: [{
|
|
95
|
-
type: ViewChild,
|
|
96
|
-
args: ['mapContainer']
|
|
97
|
-
}] } });
|
|
98
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VvLXRhYmxlLXZpZXcuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2RhdGF2aXovc3JjL2xpYi9nZW8tdGFibGUtdmlldy9nZW8tdGFibGUtdmlldy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZGF0YXZpei9zcmMvbGliL2dlby10YWJsZS12aWV3L2dlby10YWJsZS12aWV3LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxLQUFLLEVBR0wsU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFDTCxrQkFBa0IsR0FHbkIsTUFBTSx1Q0FBdUMsQ0FBQTtBQUU5QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sTUFBTSxDQUFBO0FBRW5DLE9BQU8sRUFDTCxzQkFBc0IsRUFDdEIscUJBQXFCLEdBQ3RCLE1BQU0sbUNBQW1DLENBQUE7QUFDMUMsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLDhDQUE4QyxDQUFBOztBQVV6RSxNQUFNLE9BQU8scUJBQXFCO0lBV2hDLFlBQW9CLFNBQTRCO1FBQTVCLGNBQVMsR0FBVCxTQUFTLENBQW1CO1FBRnhDLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQTtJQUVVLENBQUM7SUFFcEQsS0FBSyxDQUFDLFFBQVE7UUFDWixJQUFJLENBQUMsVUFBVSxHQUFHLE1BQU0sSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFBO0lBQy9DLENBQUM7SUFFRCxhQUFhLENBQUMsVUFBMEI7UUFDdEMsTUFBTSxFQUFFLEVBQUUsRUFBRSxHQUFHLFVBQVUsQ0FBQTtRQUN6QixJQUFJLENBQUMsV0FBVyxHQUFHLEVBQUUsQ0FBQTtRQUNyQiw2Q0FBNkM7UUFDN0MsSUFBSSxJQUFJLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDbkIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQTtRQUN2QyxDQUFDO0lBQ0gsQ0FBQztJQUVELGtCQUFrQixDQUFDLFFBQW1CO1FBQ3BDLElBQUksQ0FBQyxTQUFTLEdBQUcsUUFBUSxFQUFFLE1BQU0sR0FBRyxDQUFDLElBQUksUUFBUSxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQ3BELElBQUksSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDO1lBQ25CLG9DQUFvQztZQUNwQyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFBO1lBQ3BDLElBQUksQ0FBQyxTQUFTLENBQUMsYUFBYSxFQUFFLENBQUE7WUFDOUIsNkJBQTZCO1lBQzdCLElBQUksQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQTtRQUM3QyxDQUFDO0lBQ0gsQ0FBQztJQUVPLGtCQUFrQixDQUFDLE9BQTBCO1FBQ25ELE9BQU8sT0FBTyxDQUFDLFFBQVEsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUM7WUFDbEMsRUFBRSxFQUFFLENBQUMsQ0FBQyxFQUFFO1lBQ1IsR0FBRyxDQUFDLENBQUMsVUFBVTtTQUNoQixDQUFDLENBQUMsQ0FBQTtJQUNMLENBQUM7SUFFTyxLQUFLLENBQUMsY0FBYztRQUMxQixJQUFJLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxDQUFBO1FBQ3hCLE9BQU87WUFDTCxNQUFNLEVBQUU7Z0JBQ047b0JBQ0UsSUFBSSxFQUFFLEtBQUs7b0JBQ1gsR0FBRyxFQUFFLHNEQUFzRDtpQkFDNUQ7Z0JBQ0Q7b0JBQ0UsSUFBSSxFQUFFLFNBQVM7b0JBQ2YsSUFBSSxFQUFFO3dCQUNKLElBQUksRUFBRSxtQkFBbUI7d0JBQ3pCLHdDQUF3Qzt3QkFDeEMsUUFBUSxFQUFFLE1BQU0sSUFBSSxDQUFDLE9BQU8sQ0FBQyxJQUFJLEVBQUU7cUJBQ3BDO2lCQUNGO2FBQ0Y7WUFDRCxJQUFJLEVBQUU7Z0JBQ0osTUFBTSxFQUFFLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQztnQkFDZCxJQUFJLEVBQUUsQ0FBQzthQUNSO1NBQ0YsQ0FBQTtJQUNILENBQUM7SUFFTyxnQkFBZ0IsQ0FBQyxPQUFnQjtRQUN2QyxJQUFJLENBQUMsVUFBVSxHQUFHO1lBQ2hCLEdBQUcsSUFBSSxDQUFDLFVBQVU7WUFDbEIsSUFBSSxFQUFFO2dCQUNKLFFBQVEsRUFBRSxPQUFPLENBQUMsUUFBUTtnQkFDMUIsT0FBTyxFQUFFLEVBQUU7YUFDWjtTQUNGLENBQUE7UUFDRCwwQkFBMEI7UUFDMUIscURBQXFEO1FBQ3JELG9CQUFvQjtRQUNwQixpQkFBaUI7UUFDakIsS0FBSztJQUNQLENBQUM7SUFFTyxnQkFBZ0IsQ0FBQyxFQUFlO1FBQ3RDLHVDQUF1QztRQUN2Qyw0REFBNEQ7SUFDOUQsQ0FBQztJQUVELFdBQVc7UUFDVCxJQUFJLENBQUMsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFBO0lBQ2pDLENBQUM7K0dBMUZVLHFCQUFxQjttR0FBckIscUJBQXFCLGlUQy9CbEMsMmtCQW9CQSwwRERRWSxxQkFBcUIsaUtBQUUsc0JBQXNCLHdHQUFFLGtCQUFrQjs7NEZBR2hFLHFCQUFxQjtrQkFSakMsU0FBUzsrQkFDRSxzQkFBc0IsbUJBR2YsdUJBQXVCLENBQUMsTUFBTSxXQUN0QyxDQUFDLHFCQUFxQixFQUFFLHNCQUFzQixFQUFFLGtCQUFrQixDQUFDLGNBQ2hFLElBQUk7c0ZBR1AsT0FBTztzQkFBZixLQUFLO2dCQUNjLE9BQU87c0JBQTFCLFNBQVM7dUJBQUMsT0FBTztnQkFDUyxZQUFZO3NCQUF0QyxTQUFTO3VCQUFDLGNBQWMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgSW5wdXQsXG4gIE9uRGVzdHJveSxcbiAgT25Jbml0LFxuICBWaWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQge1xuICBEYXRhVGFibGVDb21wb25lbnQsXG4gIFRhYmxlSXRlbUlkLFxuICBUYWJsZUl0ZW1Nb2RlbCxcbn0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9kYXRhdml6L3NyYydcbmltcG9ydCB0eXBlIHsgRmVhdHVyZSwgRmVhdHVyZUNvbGxlY3Rpb24gfSBmcm9tICdnZW9qc29uJ1xuaW1wb3J0IHsgU3Vic2NyaXB0aW9uIH0gZnJvbSAncnhqcydcbmltcG9ydCB7IE1hcENvbnRleHQgfSBmcm9tICdAZ2Vvc3BhdGlhbC1zZGsvY29yZSdcbmltcG9ydCB7XG4gIEZlYXR1cmVEZXRhaWxDb21wb25lbnQsXG4gIE1hcENvbnRhaW5lckNvbXBvbmVudCxcbn0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9tYXAvc3JjJ1xuaW1wb3J0IHsgQmFzZVJlYWRlciB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdXRpbC9kYXRhLWZldGNoZXIvc3JjJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1nZW8tdGFibGUtdmlldycsXG4gIHRlbXBsYXRlVXJsOiAnLi9nZW8tdGFibGUtdmlldy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2dlby10YWJsZS12aWV3LmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGltcG9ydHM6IFtNYXBDb250YWluZXJDb21wb25lbnQsIEZlYXR1cmVEZXRhaWxDb21wb25lbnQsIERhdGFUYWJsZUNvbXBvbmVudF0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIEdlb1RhYmxlVmlld0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgQElucHV0KCkgZGF0YXNldDogQmFzZVJlYWRlclxuICBAVmlld0NoaWxkKCd0YWJsZScpIHVpVGFibGU6IERhdGFUYWJsZUNvbXBvbmVudFxuICBAVmlld0NoaWxkKCdtYXBDb250YWluZXInKSBtYXBDb250YWluZXI6IE1hcENvbnRhaW5lckNvbXBvbmVudFxuXG4gIHRhYmxlRGF0YTogVGFibGVJdGVtTW9kZWxbXVxuICBtYXBDb250ZXh0OiBNYXBDb250ZXh0XG4gIHNlbGVjdGlvbklkOiBUYWJsZUl0ZW1JZFxuICBzZWxlY3Rpb246IEZlYXR1cmVcbiAgcHJpdmF0ZSBzdWJzY3JpcHRpb24gPSBuZXcgU3Vic2NyaXB0aW9uKClcblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGNoYW5nZVJlZjogQ2hhbmdlRGV0ZWN0b3JSZWYpIHt9XG5cbiAgYXN5bmMgbmdPbkluaXQoKSB7XG4gICAgdGhpcy5tYXBDb250ZXh0ID0gYXdhaXQgdGhpcy5pbml0TWFwQ29udGV4dCgpXG4gIH1cblxuICBvblRhYmxlU2VsZWN0KHRhYmxlRW50cnk6IFRhYmxlSXRlbU1vZGVsKSB7XG4gICAgY29uc3QgeyBpZCB9ID0gdGFibGVFbnRyeVxuICAgIHRoaXMuc2VsZWN0aW9uSWQgPSBpZFxuICAgIC8vIHRoaXMuc2VsZWN0aW9uID0gdGhpcy5nZXRGZWF0dXJlRnJvbUlkKGlkKVxuICAgIGlmICh0aGlzLnNlbGVjdGlvbikge1xuICAgICAgdGhpcy5hbmltYXRlVG9GZWF0dXJlKHRoaXMuc2VsZWN0aW9uKVxuICAgIH1cbiAgfVxuXG4gIG9uTWFwRmVhdHVyZVNlbGVjdChmZWF0dXJlczogRmVhdHVyZVtdKTogdm9pZCB7XG4gICAgdGhpcy5zZWxlY3Rpb24gPSBmZWF0dXJlcz8ubGVuZ3RoID4gMCAmJiBmZWF0dXJlc1swXVxuICAgIGlmICh0aGlzLnNlbGVjdGlvbikge1xuICAgICAgLy8gRklYTUU6IHNob3cgc3R5bGluZyBmb3Igc2VsZWN0aW9uXG4gICAgICB0aGlzLnNlbGVjdGlvbklkID0gdGhpcy5zZWxlY3Rpb24uaWRcbiAgICAgIHRoaXMuY2hhbmdlUmVmLmRldGVjdENoYW5nZXMoKVxuICAgICAgLy8gdGhpcy52ZWN0b3JMYXllci5jaGFuZ2VkKClcbiAgICAgIHRoaXMudWlUYWJsZS5zY3JvbGxUb0l0ZW0odGhpcy5zZWxlY3Rpb25JZClcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGdlb2pzb25Ub1RhYmxlRGF0YShnZW9qc29uOiBGZWF0dXJlQ29sbGVjdGlvbikge1xuICAgIHJldHVybiBnZW9qc29uLmZlYXR1cmVzLm1hcCgoZikgPT4gKHtcbiAgICAgIGlkOiBmLmlkLFxuICAgICAgLi4uZi5wcm9wZXJ0aWVzLFxuICAgIH0pKVxuICB9XG5cbiAgcHJpdmF0ZSBhc3luYyBpbml0TWFwQ29udGV4dCgpOiBQcm9taXNlPE1hcENvbnRleHQ+IHtcbiAgICB0aGlzLmRhdGFzZXQuc2VsZWN0QWxsKClcbiAgICByZXR1cm4ge1xuICAgICAgbGF5ZXJzOiBbXG4gICAgICAgIHtcbiAgICAgICAgICB0eXBlOiAneHl6JyxcbiAgICAgICAgICB1cmw6ICdodHRwczovL3thLWN9LnRpbGUub3BlbnN0cmVldG1hcC5vcmcve3p9L3t4fS97eX0ucG5nJyxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIHR5cGU6ICdnZW9qc29uJyxcbiAgICAgICAgICBkYXRhOiB7XG4gICAgICAgICAgICB0eXBlOiAnRmVhdHVyZUNvbGxlY3Rpb24nLFxuICAgICAgICAgICAgLy8gRklYTUU6IHdlJ3JlIG5vdCBnZXR0aW5nIGdlb2pzb24gaGVyZVxuICAgICAgICAgICAgZmVhdHVyZXM6IGF3YWl0IHRoaXMuZGF0YXNldC5yZWFkKCksXG4gICAgICAgICAgfSxcbiAgICAgICAgfSxcbiAgICAgIF0sXG4gICAgICB2aWV3OiB7XG4gICAgICAgIGNlbnRlcjogWzAsIDBdLFxuICAgICAgICB6b29tOiAyLFxuICAgICAgfSxcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGFuaW1hdGVUb0ZlYXR1cmUoZmVhdHVyZTogRmVhdHVyZSk6IHZvaWQge1xuICAgIHRoaXMubWFwQ29udGV4dCA9IHtcbiAgICAgIC4uLnRoaXMubWFwQ29udGV4dCxcbiAgICAgIHZpZXc6IHtcbiAgICAgICAgZ2VvbWV0cnk6IGZlYXR1cmUuZ2VvbWV0cnksXG4gICAgICAgIG1heFpvb206IDEzLFxuICAgICAgfSxcbiAgICB9XG4gICAgLy8gRklYTUU6IGFuaW1hdGUgdGhlIHZpZXdcbiAgICAvLyB0aGlzLnZpZXcuZml0KGZlYXR1cmUuZ2V0R2VvbWV0cnkoKS5nZXRFeHRlbnQoKSwge1xuICAgIC8vICAgZHVyYXRpb246IDEwMDAsXG4gICAgLy8gICBtYXhab29tOiAxMSxcbiAgICAvLyB9KVxuICB9XG5cbiAgcHJpdmF0ZSBnZXRGZWF0dXJlRnJvbUlkKGlkOiBUYWJsZUl0ZW1JZCkge1xuICAgIC8vIEZJWE1FOiByZXN0b3JlIHRoaXMgb25jZSB3ZSBuZWVkIGl0P1xuICAgIC8vIHJldHVybiB0aGlzLmZlYXR1cmVzLmZpbmQoKGZlYXR1cmUpID0+IGZlYXR1cmUuaWQgPT09IGlkKVxuICB9XG5cbiAgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5zdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKVxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZmxleCBmbGV4LXJvdyBoLWZ1bGwgb3ZlcmZsb3ctYXV0b1wiPlxuICA8Z24tdWktZGF0YS10YWJsZVxuICAgICN0YWJsZVxuICAgIGNsYXNzPVwidy0xLzIgb3ZlcmZsb3ctYXV0b1wiXG4gICAgW2RhdGFzZXRdPVwiZGF0YXNldFwiXG4gICAgW2FjdGl2ZUlkXT1cInNlbGVjdGlvbklkXCJcbiAgICAoc2VsZWN0ZWQpPVwib25UYWJsZVNlbGVjdCgkZXZlbnQpXCJcbiAgPjwvZ24tdWktZGF0YS10YWJsZT5cbiAgPGduLXVpLW1hcC1jb250YWluZXJcbiAgICAjbWFwQ29udGFpbmVyXG4gICAgY2xhc3M9XCJ3LTEvMiBoLWZ1bGxcIlxuICAgIFtjb250ZXh0XT1cIm1hcENvbnRleHRcIlxuICAgIChmZWF0dXJlc0NsaWNrKT1cIm9uTWFwRmVhdHVyZVNlbGVjdCgkZXZlbnQpXCJcbiAgPjwvZ24tdWktbWFwLWNvbnRhaW5lcj5cbiAgPGduLXVpLWZlYXR1cmUtZGV0YWlsXG4gICAgc3R5bGU9XCJ3aWR0aDogMzAwcHhcIlxuICAgIGNsYXNzPVwicC0zIHNocmluay0wIG92ZXJmbG93LWF1dG9cIlxuICAgIFtmZWF0dXJlXT1cInNlbGVjdGlvblwiXG4gID48L2duLXVpLWZlYXR1cmUtZGV0YWlsPlxuPC9kaXY+XG4iXX0=
|