geonetwork-ui 2.6.0-dev.f073bbb4e → 2.6.1-dev.57ac0f034
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
- package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +17 -15
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +11 -2
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +59 -15
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +6 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +14 -6
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +7 -7
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +8 -8
- package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +17 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +4 -4
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +5 -2
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +21 -27
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +79 -16
- package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +7 -1
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +8 -8
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +14 -11
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +64 -43
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +2 -1
- package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -31
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +9 -8
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +51 -11
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +4 -5
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +2 -2
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +42 -3
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +31 -8
- package/esm2022/libs/feature/editor/src/index.mjs +2 -4
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +13 -7
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +5 -1
- package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +5 -7
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +8 -13
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -6
- package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +275 -0
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +5 -15
- package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +5 -8
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +4 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -10
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +9 -14
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +4 -15
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +7 -7
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +6 -17
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +4 -5
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +12 -30
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +1 -3
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +5 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +11 -8
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +11 -8
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -6
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -5
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +3 -36
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -11
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -6
- package/esm2022/libs/feature/record/src/index.mjs +2 -4
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +24 -19
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +10 -15
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +5 -6
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +12 -17
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +7 -4
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +8 -22
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +5 -5
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +15 -7
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +101 -21
- package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +1 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +3 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +16 -5
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +13 -15
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +7 -1
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +3 -1
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +3 -1
- package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +10 -2
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -3
- package/esm2022/libs/feature/search/src/index.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/constants.mjs +4 -2
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +12 -8
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +33 -42
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +8 -6
- package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +4 -2
- package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +44 -0
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +35 -15
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +13 -10
- package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +5 -7
- package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +4 -4
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +74 -4
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +4 -3
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +3 -3
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +4 -5
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +4 -5
- package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +4 -5
- package/esm2022/libs/ui/dataviz/src/index.mjs +1 -2
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +5 -3
- package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +13 -8
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/index.mjs +7 -4
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +7 -7
- package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +4 -3
- package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -3
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +5 -6
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +20 -9
- package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +4 -5
- package/esm2022/libs/ui/elements/src/lib/external-link-card/external-link-card.component.mjs +59 -0
- package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +54 -0
- package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +4 -5
- package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +89 -0
- package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +70 -0
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +3 -6
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +4 -5
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +5 -6
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +10 -8
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +40 -17
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +8 -5
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +9 -6
- package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +71 -0
- package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +170 -0
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +4 -5
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -4
- package/esm2022/libs/ui/inputs/src/index.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +10 -13
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
- package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +4 -3
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +7 -6
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +29 -7
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +5 -6
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +5 -7
- package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +43 -0
- package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +73 -0
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -3
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -5
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/index.mjs +3 -2
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +44 -3
- package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +61 -14
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
- package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +110 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +34 -13
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +4 -5
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +26 -5
- package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +4 -5
- package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +4 -5
- package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +6 -6
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +4 -3
- package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +71 -0
- package/esm2022/libs/ui/map/src/index.mjs +2 -1
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +29 -4
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +4 -5
- package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +80 -0
- package/esm2022/libs/ui/search/src/index.mjs +3 -1
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +6 -6
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +17 -10
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +53 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +2 -2
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +24 -17
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +45 -20
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +39 -26
- package/esm2022/libs/ui/widgets/src/index.mjs +1 -2
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +4 -3
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +3 -1
- package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
- package/esm2022/libs/util/i18n/src/index.mjs +2 -3
- package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +3 -2
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +36 -28
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +10 -9
- package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +41 -0
- package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +63 -3
- package/esm2022/libs/util/shared/src/index.mjs +3 -2
- package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +6 -0
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +3 -2
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +5 -1
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +16 -6
- package/esm2022/libs/util/shared/src/lib/record.util.mjs +56 -0
- package/esm2022/translations/de.json +90 -24
- package/esm2022/translations/en.json +90 -24
- package/esm2022/translations/es.json +89 -23
- package/esm2022/translations/fr.json +91 -25
- package/esm2022/translations/it.json +89 -24
- package/esm2022/translations/nl.json +89 -23
- package/esm2022/translations/pt.json +89 -23
- package/esm2022/translations/sk.json +607 -0
- package/fesm2022/geonetwork-ui.mjs +12094 -9878
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +1 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +21 -0
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +4 -4
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +9 -7
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +14 -3
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +4 -4
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +8 -4
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +7 -1
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +26 -17
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +4 -8
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +3 -3
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +12 -8
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +6 -3
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/index.d.ts +1 -3
- package/libs/feature/editor/src/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +8 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +10 -12
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +2 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +1 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +52 -0
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +6 -6
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -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.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -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.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +10 -17
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -11
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/record/src/index.d.ts +1 -3
- package/libs/feature/record/src/index.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +19 -7
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +2 -3
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -2
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/feature-record.module.d.ts +8 -12
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
- package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +13 -6
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +2 -2
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +13 -3
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +30 -23
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +4 -2
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +3 -1
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/constants.d.ts +2 -0
- package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/router.config.d.ts +2 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +5 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
- package/libs/feature/search/src/index.d.ts +1 -1
- package/libs/feature/search/src/index.d.ts.map +1 -1
- package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +2 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/feature-search.module.d.ts +24 -22
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +2 -1
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/record-url.token.d.ts +3 -1
- package/libs/feature/search/src/lib/record-url.token.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +22 -0
- package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +5 -3
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +6 -5
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +1 -2
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +22 -2
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
- package/libs/ui/dataviz/src/index.d.ts +0 -1
- package/libs/ui/dataviz/src/index.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -1
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +6 -1
- package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -1
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +6 -3
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +2 -0
- package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/{link-card/link-card.component.d.ts → external-link-card/external-link-card.component.d.ts} +5 -5
- package/libs/ui/elements/src/lib/external-link-card/external-link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +30 -0
- package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +3 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +27 -0
- package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +31 -0
- package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +2 -2
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +1 -2
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +14 -0
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +6 -0
- package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +2 -1
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +2 -1
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +10 -3
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +11 -3
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +28 -0
- package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +15 -8
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +5 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +22 -0
- package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +1 -0
- package/libs/ui/map/src/index.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +6 -2
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +15 -0
- package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +1 -0
- package/libs/ui/search/src/index.d.ts +2 -0
- package/libs/ui/search/src/index.d.ts.map +1 -1
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +2 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +17 -0
- package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -3
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/ui-search.module.d.ts +22 -19
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
- package/libs/ui/widgets/src/index.d.ts +0 -1
- package/libs/ui/widgets/src/index.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +1 -1
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/app-config.d.ts +0 -1
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/model.d.ts +1 -0
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
- package/libs/util/i18n/src/index.d.ts +1 -2
- package/libs/util/i18n/src/index.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +1 -1
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +6 -15
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +5 -5
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/i18n.providers.d.ts +4 -0
- package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/language-codes.d.ts +15 -19
- package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
- package/libs/util/shared/src/index.d.ts +2 -1
- package/libs/util/shared/src/index.d.ts.map +1 -1
- package/libs/util/shared/src/lib/gn-ui-version.d.ts +3 -0
- package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +1 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts +1 -1
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +14 -7
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
- package/libs/util/shared/src/lib/record.util.d.ts +3 -0
- package/libs/util/shared/src/lib/record.util.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/libs/api/metadata-converter/src/index.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/base.converter.ts +1 -4
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +29 -15
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +10 -1
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +3 -3
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4240 -0
- 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.service+napitswallonia.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +81 -11
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +4 -4
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +0 -1
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +11 -5
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -8
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +12 -8
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +8 -7
- package/src/libs/api/metadata-converter/src/lib/translate-utils.ts +17 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +3 -6
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +4 -1
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +17 -17
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +119 -16
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +8 -7
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +13 -6
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +77 -65
- package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +3 -0
- package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +9 -1
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +27 -11
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -1
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +11 -1
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +36 -26
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +16 -2
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +5 -5
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +114 -1
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -17
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +7 -3
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +12 -9
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +60 -12
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +49 -1
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +33 -3
- package/src/libs/feature/editor/src/index.ts +1 -3
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +9 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +23 -12
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
- package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +9 -1
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +3 -4
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +5 -16
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +7 -5
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +120 -0
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +331 -0
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +3 -12
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +5 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +3 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +4 -11
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -9
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +2 -17
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +2 -15
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +4 -17
- package/src/libs/feature/editor/src/lib/models/index.ts +0 -2
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +2 -1
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +8 -3
- package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -3
- package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +8 -2
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +8 -2
- package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -17
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +3 -8
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
- package/src/libs/feature/record/src/index.ts +1 -3
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +17 -11
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +29 -22
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +4 -5
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +1 -1
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +2 -2
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +6 -7
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +2 -2
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +3 -2
- package/src/libs/feature/record/src/lib/feature-record.module.ts +4 -13
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +4 -3
- package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +10 -4
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +38 -11
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +140 -21
- package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +2 -2
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +12 -2
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +31 -3
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +23 -19
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +14 -2
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +9 -0
- package/src/libs/feature/router/src/lib/default/constants.ts +2 -0
- package/src/libs/feature/router/src/lib/default/router.config.ts +2 -0
- package/src/libs/feature/router/src/lib/default/router.service.ts +10 -0
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +10 -1
- package/src/libs/feature/search/src/index.ts +1 -1
- package/src/libs/feature/search/src/lib/constants.ts +3 -1
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +2 -7
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +16 -7
- package/src/libs/feature/search/src/lib/feature-search.module.ts +17 -23
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -0
- package/src/libs/feature/search/src/lib/record-url.token.ts +10 -1
- package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +17 -0
- package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +60 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +6 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +26 -5
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +13 -3
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +10 -4
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +2 -2
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -5
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +103 -3
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
- package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +2 -2
- package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +2 -1
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -3
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +7 -6
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +0 -1
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +4 -0
- package/src/libs/ui/elements/src/index.ts +6 -3
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +4 -4
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +3 -2
- package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +6 -6
- package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +3 -0
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +6 -2
- package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +5 -1
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +8 -5
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +42 -11
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +28 -4
- package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/{link-card/link-card.component.html → external-link-card/external-link-card.component.html} +5 -2
- package/src/libs/ui/elements/src/lib/{link-card/link-card.component.ts → external-link-card/external-link-card.component.ts} +9 -13
- package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.css +4 -0
- package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +13 -0
- package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +54 -0
- package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +87 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.scss +115 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +98 -0
- package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.css +6 -0
- package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +15 -0
- package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts +72 -0
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -4
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +3 -5
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +12 -9
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +24 -7
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +11 -6
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +20 -21
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +51 -13
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +6 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +6 -3
- package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +107 -0
- package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.ts +83 -0
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.css +0 -0
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -0
- package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +196 -0
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +4 -0
- package/src/libs/ui/inputs/src/index.ts +2 -2
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +3 -3
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -9
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +3 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +27 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -4
- package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +23 -0
- package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.ts +47 -0
- package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.ts +5 -0
- package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +43 -0
- package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.ts +83 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -1
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +11 -8
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +1 -0
- package/src/libs/ui/layout/src/index.ts +2 -1
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +47 -2
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +22 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +2 -3
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +57 -9
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -1
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +1 -1
- package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +40 -0
- package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +141 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -8
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +36 -10
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +4 -7
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +22 -2
- package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
- package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +2 -2
- package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -2
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +17 -5
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +3 -3
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +3 -0
- package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +27 -0
- package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +84 -0
- package/src/libs/ui/map/src/index.ts +1 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +3 -3
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +27 -3
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -2
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.html +4 -0
- package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts → ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts} +8 -8
- package/src/libs/ui/search/src/index.ts +2 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +4 -1
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +9 -81
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -1
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +1 -1
- package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.html +25 -0
- package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.ts +53 -0
- package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +2 -2
- package/src/libs/ui/search/src/lib/results-list/results-list.component.html +1 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +0 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +16 -6
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +18 -15
- package/src/libs/ui/search/src/lib/results-table/results-table.component.css +4 -0
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +29 -24
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +49 -17
- package/src/libs/ui/search/src/lib/ui-search.module.ts +19 -10
- package/src/libs/ui/widgets/src/index.ts +0 -1
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +1 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +4 -3
- package/src/libs/util/app-config/src/lib/app-config.ts +4 -2
- package/src/libs/util/app-config/src/lib/fixtures.ts +2 -0
- package/src/libs/util/app-config/src/lib/model.ts +1 -0
- package/src/libs/util/i18n/src/index.ts +1 -2
- package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +4 -3
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +39 -29
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +11 -9
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +68 -0
- package/src/libs/util/i18n/src/lib/language-codes.ts +67 -2
- package/src/libs/util/shared/src/index.ts +2 -1
- package/src/libs/util/shared/src/lib/gn-ui-version.ts +8 -0
- package/src/libs/util/shared/src/lib/image-fallback.directive.ts +1 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +15 -3
- package/src/libs/util/shared/src/lib/links/link-utils.ts +33 -12
- package/src/libs/util/shared/src/lib/record.util.ts +114 -0
- package/tailwind.base.config.js +3 -0
- package/tailwind.base.css +24 -26
- package/translations/de.json +90 -24
- package/translations/en.json +90 -24
- package/translations/es.json +89 -23
- package/translations/fr.json +91 -25
- package/translations/it.json +89 -24
- package/translations/nl.json +89 -23
- package/translations/pt.json +89 -23
- package/translations/sk.json +89 -23
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +0 -79
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +0 -44
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +0 -75
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +0 -160
- package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +0 -53
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +0 -2
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +0 -8
- package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +0 -87
- package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +0 -3
- package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +0 -18
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +0 -47
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +0 -60
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +0 -46
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +0 -106
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +0 -16
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +0 -161
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +0 -31
- package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +0 -46
- package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +0 -31
- package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +0 -37
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +0 -18
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +0 -15
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +0 -14
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +0 -31
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +0 -43
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +0 -17
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +0 -10
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +0 -7
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts +0 -33
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +0 -1
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +0 -3
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +0 -1
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +0 -9
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +0 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +0 -11
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +0 -12
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +0 -27
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +0 -8
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +0 -34
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +0 -1
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +0 -12
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +0 -1
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +0 -15
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/lang.service.d.ts +0 -13
- package/libs/util/i18n/src/lib/lang.service.d.ts.map +0 -1
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts +0 -12
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +0 -1
- package/libs/util/shared/src/lib/util-shared.module.d.ts +0 -9
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +0 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +0 -1
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +0 -5
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +0 -22
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +0 -93
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +0 -31
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +0 -62
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +0 -206
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +0 -3
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +0 -21
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +0 -58
- package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +0 -10
- package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +0 -6
- package/src/libs/feature/editor/src/lib/services/wizard.service.ts +0 -105
- package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +0 -3
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +0 -4
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +0 -10
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +0 -27
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +0 -30
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +0 -48
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +0 -61
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -3
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +0 -9
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +0 -15
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -96
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -18
- package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -25
- package/src/libs/util/i18n/src/lib/lang.service.ts +0 -23
- package/src/libs/util/i18n/src/lib/util-i18n.module.ts +0 -26
- package/src/libs/util/shared/src/lib/util-shared.module.ts +0 -10
- /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-map-container/form-field-map-container.component.css → multilingual-panel/multilingual-panel.component.css} +0 -0
- /package/src/libs/{ui/elements/src/lib/link-card/link-card.component.css → feature/search/src/lib/results-hits/results-hits.container.component.css} +0 -0
- /package/src/libs/ui/elements/src/lib/{related-record-card/related-record-card.component.css → external-link-card/external-link-card.component.css} +0 -0
|
@@ -10,7 +10,9 @@ export type ResultsListShowMoreStrategy = 'auto' | 'button' | 'none';
|
|
|
10
10
|
export declare class ResultsListContainerComponent implements OnInit {
|
|
11
11
|
facade: SearchFacade;
|
|
12
12
|
private resultsLayoutConfig;
|
|
13
|
-
private
|
|
13
|
+
private recordDatasetUrlTemplate;
|
|
14
|
+
private recordServiceUrlTemplate;
|
|
15
|
+
private recordReuseUrlTemplate;
|
|
14
16
|
metadataQualityDisplay: boolean;
|
|
15
17
|
layout: string;
|
|
16
18
|
showMore: ResultsListShowMoreStrategy;
|
|
@@ -23,12 +25,12 @@ export declare class ResultsListContainerComponent implements OnInit {
|
|
|
23
25
|
allowShowMore$: Observable<boolean>;
|
|
24
26
|
errorTypes: typeof ErrorType;
|
|
25
27
|
recordUrlGetter: any;
|
|
26
|
-
constructor(facade: SearchFacade, resultsLayoutConfig: ResultsLayoutConfigModel,
|
|
28
|
+
constructor(facade: SearchFacade, resultsLayoutConfig: ResultsLayoutConfigModel, recordDatasetUrlTemplate: string, recordServiceUrlTemplate: string, recordReuseUrlTemplate: string);
|
|
27
29
|
ngOnInit(): void;
|
|
28
30
|
onMetadataSelection(metadata: CatalogRecord): void;
|
|
29
31
|
onShowMore(): void;
|
|
30
32
|
getRecordUrl(metadata: CatalogRecord): string;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ResultsListContainerComponent, [null, null, { optional: true; }]>;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResultsListContainerComponent, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
32
34
|
static ɵcmp: i0.ɵɵComponentDeclaration<ResultsListContainerComponent, "gn-ui-results-list-container", never, { "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "showMore": { "alias": "showMore"; "required": false; }; }, { "mdSelect": "mdSelect"; }, never, never, false, never>;
|
|
33
35
|
}
|
|
34
36
|
//# sourceMappingURL=results-list.container.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"results-list.container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-list/results-list.container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAGZ,MAAM,EAGP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAiB,UAAU,EAAO,MAAM,MAAM,CAAA;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAClE,OAAO,EAEL,uBAAuB,EACvB,wBAAwB,EACzB,MAAM,sCAAsC,CAAA;
|
|
1
|
+
{"version":3,"file":"results-list.container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-list/results-list.container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAGZ,MAAM,EAGP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAiB,UAAU,EAAO,MAAM,MAAM,CAAA;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAClE,OAAO,EAEL,uBAAuB,EACvB,wBAAwB,EACzB,MAAM,sCAAsC,CAAA;AAM7C,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,MAAM,MAAM,2BAA2B,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAA;AAEpE,qBAKa,6BAA8B,YAAW,MAAM;IAkBjD,MAAM,EAAE,YAAY;IAE3B,OAAO,CAAC,mBAAmB;IAG3B,OAAO,CAAC,wBAAwB;IAGhC,OAAO,CAAC,wBAAwB;IAGhC,OAAO,CAAC,sBAAsB;IA5BvB,sBAAsB,EAAE,OAAO,CAAA;IAC/B,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,2BAA2B,CAAS;IAC7C,QAAQ,8BAAoC;IAEtD,aAAa,EAAE,UAAU,CAAC,uBAAuB,CAAC,CAAA;IAElD,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAC/B,UAAU,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC9B,aAAa,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IACjC,gCAAgC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACrD,cAAc,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAEnC,UAAU,mBAAY;IACtB,eAAe,MAA+B;gBAGrC,MAAM,EAAE,YAAY,EAEnB,mBAAmB,EAAE,wBAAwB,EAG7C,wBAAwB,EAAE,MAAM,EAGhC,wBAAwB,EAAE,MAAM,EAGhC,sBAAsB,EAAE,MAAM;IAGxC,QAAQ,IAAI,IAAI;IAyChB,mBAAmB,CAAC,QAAQ,EAAE,aAAa,GAAG,IAAI;IAIlD,UAAU;IAIV,YAAY,CAAC,QAAQ,EAAE,aAAa;yCAjFzB,6BAA6B;2CAA7B,6BAA6B;CAgGzC"}
|
|
@@ -4,7 +4,7 @@ import { SearchFacade } from '../state/search.facade';
|
|
|
4
4
|
import { SelectionService } from '../../../../../../libs/api/repository/src';
|
|
5
5
|
import { SearchService } from '../utils/service/search.service';
|
|
6
6
|
import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface';
|
|
7
|
-
import { Subscription } from 'rxjs';
|
|
7
|
+
import { Observable, Subscription } from 'rxjs';
|
|
8
8
|
import { NotificationsService } from '../../../../../../libs/feature/notifications/src';
|
|
9
9
|
import { TranslateService } from '@ngx-translate/core';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
@@ -15,15 +15,16 @@ export declare class ResultsTableContainerComponent implements OnDestroy {
|
|
|
15
15
|
private recordsRepository;
|
|
16
16
|
private notificationsService;
|
|
17
17
|
private translateService;
|
|
18
|
-
canDuplicate: (record: CatalogRecord) => boolean;
|
|
19
|
-
canDelete: (record: CatalogRecord) => boolean;
|
|
20
18
|
isDuplicating: false;
|
|
21
19
|
recordClick: EventEmitter<CatalogRecord>;
|
|
22
20
|
duplicateRecord: EventEmitter<CatalogRecord>;
|
|
23
21
|
subscription: Subscription;
|
|
24
22
|
selectedRecords$: import("rxjs").BehaviorSubject<string[]>;
|
|
25
|
-
sortBy$:
|
|
23
|
+
sortBy$: Observable<import("../../../../../common/domain/src/lib/model/search").SortByField>;
|
|
26
24
|
hasDraft: (record: CatalogRecord) => boolean;
|
|
25
|
+
canDuplicate: (record: CatalogRecord) => boolean;
|
|
26
|
+
canDelete: (record: CatalogRecord) => Observable<boolean>;
|
|
27
|
+
canEdit: (record: CatalogRecord) => Observable<boolean>;
|
|
27
28
|
constructor(searchFacade: SearchFacade, searchService: SearchService, selectionService: SelectionService, recordsRepository: RecordsRepositoryInterface, notificationsService: NotificationsService, translateService: TranslateService);
|
|
28
29
|
handleRecordClick(item: unknown): void;
|
|
29
30
|
handleDuplicateRecord(item: unknown): void;
|
|
@@ -32,6 +33,6 @@ export declare class ResultsTableContainerComponent implements OnDestroy {
|
|
|
32
33
|
handleRecordsSelectedChange(records: CatalogRecord[], selected: boolean): void;
|
|
33
34
|
ngOnDestroy(): void;
|
|
34
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResultsTableContainerComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableContainerComponent, "gn-ui-results-table-container", never, { "
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableContainerComponent, "gn-ui-results-table-container", never, { "isDuplicating": { "alias": "isDuplicating"; "required": false; }; }, { "recordClick": "recordClick"; "duplicateRecord": "duplicateRecord"; }, never, never, true, never>;
|
|
36
37
|
}
|
|
37
38
|
//# sourceMappingURL=results-table-container.component.d.ts.map
|
package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"results-table-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-table/results-table-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAEZ,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AAGjI,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"results-table-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-table/results-table-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAEZ,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AAGjI,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;AAC/C,OAAO,EAAE,oBAAoB,EAAE,MAAM,kDAAkD,CAAA;AACvF,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAEtD,qBAOa,8BAA+B,YAAW,SAAS;IA2B5D,SAAS,CAAC,YAAY,EAAE,YAAY;IACpC,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IA/BjB,aAAa,EAAE,KAAK,CAAA;IAEnB,WAAW,8BAAoC;IAC/C,eAAe,8BAAoC;IAE7D,YAAY,eAAqB;IAEjC,gBAAgB,2CAAoD;IACpE,OAAO,sFAA4B;IAEnC,QAAQ,WAAY,aAAa,KAAG,OAAO,CACqB;IAEhE,YAAY,WAAY,aAAa,KAAG,OAAO,CAE9C;IAED,SAAS,WAAY,aAAa,KAAG,UAAU,CAAC,OAAO,CAAC,CAEvD;IAED,OAAO,WAAY,aAAa,KAAG,UAAU,CAAC,OAAO,CAAC,CAErD;gBAGW,YAAY,EAAE,YAAY,EAC5B,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAAE,0BAA0B,EAC7C,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB;IAG5C,iBAAiB,CAAC,IAAI,EAAE,OAAO;IAI/B,qBAAqB,CAAC,IAAI,EAAE,OAAO;IAI7B,kBAAkB,CAAC,IAAI,EAAE,OAAO;IA0CtC,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,MAAM;IAIrD,2BAA2B,CAAC,OAAO,EAAE,aAAa,EAAE,EAAE,QAAQ,EAAE,OAAO;IAQvE,WAAW;yCAjGA,8BAA8B;2CAA9B,8BAA8B;CAoG1C"}
|
package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { InjectionToken, OnInit } from '@angular/core';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { SearchFacade } from '../state/search.facade';
|
|
4
4
|
import { SearchService } from '../utils/service/search.service';
|
|
5
5
|
import { FieldFilters } from '../../../../../../libs/common/domain/src/lib/model/search';
|
|
6
|
-
import { InjectionToken } from '@angular/core';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare const FILTER_SUMMARY_IGNORE_LIST: InjectionToken<string[]>;
|
|
9
8
|
export declare class SearchFiltersSummaryComponent implements OnInit {
|
package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-filters-summary.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"search-filters-summary.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,cAAc,EAEd,MAAM,EAEP,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAc,UAAU,EAAE,MAAM,MAAM,CAAA;AAG7C,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,2DAA2D,CAAA;;AAExF,eAAO,MAAM,0BAA0B,0BAEtC,CAAA;AACD,qBAOa,6BAA8B,YAAW,MAAM;IAOxD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,aAAa;IAPd,YAAY,EAAE,MAAM,EAAE,CAAK;IACpC,uBAAuB,EAAE,MAAM,EAAE,CAAA;IAEjC,mBAAmB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;gBAG9B,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,EAGpC,uBAAuB,EAAE,MAAM,EAAE;IASnC,QAAQ,IAAI,IAAI;IAMhB,iBAAiB,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO;IAejD,YAAY;yCAzCD,6BAA6B;2CAA7B,6BAA6B;CAyDzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-filters-summary-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAA;AACxD,OAAO,EAAgB,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AACxD,OAAO,EAIL,UAAU,EAGX,MAAM,MAAM,CAAA;AAEb,OAAO,
|
|
1
|
+
{"version":3,"file":"search-filters-summary-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAoB,MAAM,EAAE,MAAM,eAAe,CAAA;AACxD,OAAO,EAAgB,QAAQ,EAAE,MAAM,iBAAiB,CAAA;AACxD,OAAO,EAIL,UAAU,EAGX,MAAM,MAAM,CAAA;AAEb,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAE,SAAS,EAAE,MAAM,2CAA2C,CAAA;AACrE,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;;AAO/D,UAAU,cAAc;IACtB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,UAAU,GAAG,SAAS,CAAA;CAC9B;AAED,qBAQa,iCAAkC,YAAW,MAAM;IAqB5D,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,SAAS;IAxBV,SAAS,EAAE,MAAM,CAAA;IAC1B,SAAS,EAAE,SAAS,CAAA;IACpB,eAAe,EAAE,MAAM,CAAA;IAEvB,YAAY,EAaP,UAAU,CAAC,cAAc,EAAE,CAAC,CAAA;gBAGvB,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,EAC5B,aAAa,EAAE,aAAa,EAC5B,QAAQ,EAAE,QAAQ,EAClB,SAAS,EAAE,gBAAgB;IAGrC,QAAQ;IAKR,cAAc;IAcd,iBAAiB,CAAC,WAAW,EAAE,UAAU,EAAE,GAAG,SAAS,EAAE,GAAG,cAAc,EAAE;IAkBtE,iBAAiB,CAAC,UAAU,EAAE,UAAU,GAAG,SAAS;yCAjE/C,iCAAiC;2CAAjC,iCAAiC;CAiF7C"}
|
|
@@ -9,6 +9,7 @@ export type FieldValue = string | number;
|
|
|
9
9
|
export interface FieldAvailableValue {
|
|
10
10
|
value: FieldValue;
|
|
11
11
|
label: string;
|
|
12
|
+
count?: number;
|
|
12
13
|
}
|
|
13
14
|
export declare abstract class AbstractSearchField {
|
|
14
15
|
abstract getAvailableValues(): Observable<FieldAvailableValue[] | DateRange[]>;
|
|
@@ -52,8 +53,7 @@ export declare class MultilingualSearchField extends SimpleSearchField {
|
|
|
52
53
|
protected injector: Injector;
|
|
53
54
|
protected order: 'asc' | 'desc';
|
|
54
55
|
protected orderType: 'key' | 'count';
|
|
55
|
-
private
|
|
56
|
-
private searchLanguage;
|
|
56
|
+
private get searchLanguage();
|
|
57
57
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
58
58
|
}
|
|
59
59
|
export declare class FullTextSearchField implements AbstractSearchField {
|
|
@@ -112,4 +112,24 @@ export declare class AvailableServicesField extends SimpleSearchField {
|
|
|
112
112
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
113
113
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
114
114
|
}
|
|
115
|
+
/**
|
|
116
|
+
* This class is meant to be used with the legacy filter on `resourceType` (now deprecated, the use of `recordKind` field is recommended).
|
|
117
|
+
* Since creating filters on the same ES field is not possible, in order to make the resource type filter still working,
|
|
118
|
+
* we create an ES on the fly: `resourceTypeLegacy` that references the `resourceType` under the hood.
|
|
119
|
+
* @deprecated Use `recordKind` field instead.
|
|
120
|
+
*/
|
|
121
|
+
export declare class ResourceTypeLegacyField extends TranslatedSearchField {
|
|
122
|
+
constructor(injector: Injector);
|
|
123
|
+
}
|
|
124
|
+
export declare class RecordKindField extends SimpleSearchField {
|
|
125
|
+
TYPE_MAPPING: {
|
|
126
|
+
dataset: string[];
|
|
127
|
+
service: string[];
|
|
128
|
+
reuse: string[];
|
|
129
|
+
};
|
|
130
|
+
constructor(injector: Injector);
|
|
131
|
+
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
132
|
+
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
133
|
+
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
134
|
+
}
|
|
115
135
|
//# sourceMappingURL=fields.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,UAAU,EAAiB,MAAM,MAAM,CAAA;AAEhE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAIxC,OAAO,EAAE,0BAA0B,EAAE,MAAM,yFAAyF,CAAA;AACpI,OAAO,EAAE,wBAAwB,EAAE,MAAM,4EAA4E,CAAA;AACrH,OAAO,EAEL,kBAAkB,EAGlB,YAAY,EACZ,UAAU,EACX,MAAM,8DAA8D,CAAA;AACrE,OAAO,EACL,SAAS,EACT,oBAAoB,EAGrB,MAAM,8CAA8C,CAAA;AAIrD,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,WAAW,CAAA;AAE9C,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,MAAM,CAAA;AACxC,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,UAAU,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,UAAU,EAAiB,MAAM,MAAM,CAAA;AAEhE,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAIxC,OAAO,EAAE,0BAA0B,EAAE,MAAM,yFAAyF,CAAA;AACpI,OAAO,EAAE,wBAAwB,EAAE,MAAM,4EAA4E,CAAA;AACrH,OAAO,EAEL,kBAAkB,EAGlB,YAAY,EACZ,UAAU,EACX,MAAM,8DAA8D,CAAA;AACrE,OAAO,EACL,SAAS,EACT,oBAAoB,EAGrB,MAAM,8CAA8C,CAAA;AAIrD,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,WAAW,CAAA;AAE9C,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,MAAM,CAAA;AACxC,MAAM,WAAW,mBAAmB;IAClC,KAAK,EAAE,UAAU,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AAED,8BAAsB,mBAAmB;IACvC,QAAQ,CAAC,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,GAAG,SAAS,EAAE,CAAC;IAC9E,QAAQ,CAAC,mBAAmB,CAC1B,MAAM,EAAE,UAAU,EAAE,GAAG,SAAS,EAAE,GACjC,UAAU,CAAC,YAAY,CAAC;IAC3B,QAAQ,CAAC,kBAAkB,CACzB,OAAO,EAAE,YAAY,GACpB,UAAU,CAAC,UAAU,EAAE,GAAG,UAAU,GAAG,SAAS,CAAC;IACpD,QAAQ,CAAC,OAAO,IAAI,SAAS;CAC9B;AAED,qBAAa,iBAAkB,YAAW,mBAAmB;IAOzD,SAAS,CAAC,WAAW,EAAE,MAAM;IAC7B,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAC5B,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,MAAM;IAC/B,SAAS,CAAC,SAAS,EAAE,KAAK,GAAG,OAAO;IATtC,SAAS,CAAC,UAAU,6BAAgD;IAGpE,SAAS,CAAC,SAAS,uBAA0C;gBAGjD,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,QAAQ,EAClB,KAAK,GAAE,KAAK,GAAG,MAAc,EAC7B,SAAS,GAAE,KAAK,GAAG,OAAe;IAG9C,SAAS,CAAC,eAAe,IAAI,kBAAkB;cAW/B,cAAc,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,CAAC;IAInE,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;IAgBvD,mBAAmB,CACjB,MAAM,EAAE,UAAU,EAAE,GAAG,SAAS,EAAE,GACjC,UAAU,CAAC,YAAY,CAAC;IAkB3B,kBAAkB,CAChB,OAAO,EAAE,YAAY,GACpB,UAAU,CAAC,UAAU,EAAE,GAAG,UAAU,GAAG,SAAS,CAAC;IAgBpD,OAAO,IAAI,SAAS;CAGrB;AAED,qBAAa,qBAAsB,SAAQ,iBAAiB;IAIxD,SAAS,CAAC,WAAW,EAAE,MAAM;IAC7B,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAC5B,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,MAAM;IAC/B,SAAS,CAAC,SAAS,EAAE,KAAK,GAAG,OAAO;IANtC,SAAS,CAAC,eAAe,2BAA8C;gBAG3D,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,QAAQ,EAClB,KAAK,GAAE,KAAK,GAAG,MAAc,EAC7B,SAAS,GAAE,KAAK,GAAG,OAAe;cAK9B,cAAc,CAAC,GAAG,EAAE,MAAM;cAI1B,cAAc,CAAC,MAAM,EAAE,UAAU;IAIjD,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;CAWxD;AAED;;;;GAIG;AACH,qBAAa,uBAAwB,SAAQ,iBAAiB;IAO1D,SAAS,CAAC,WAAW,EAAE,MAAM;IAC7B,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAC5B,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,MAAM;IAC/B,SAAS,CAAC,SAAS,EAAE,KAAK,GAAG,OAAO;IARtC,OAAO,KAAK,cAAc,GAEzB;gBAGW,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,QAAQ,EAClB,KAAK,GAAE,KAAK,GAAG,MAAc,EAC7B,SAAS,GAAE,KAAK,GAAG,OAAe;CAW/C;AAED,qBAAa,mBAAoB,YAAW,mBAAmB;IAC7D,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;IAGvD,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,YAAY,CAAC;IAKnE,kBAAkB,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;IAGnE,OAAO,IAAI,SAAS;CAGrB;AAKD,qBAAa,oBAAqB,SAAQ,iBAAiB;IACzD,OAAO,CAAC,gBAAgB,CAAsC;gBAElD,QAAQ,EAAE,QAAQ;IAa9B,SAAS,CAAC,eAAe,IAAI,kBAAkB;cAW/B,cAAc,CAAC,MAAM,EAAE,UAAU;IAMjD,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,YAAY,CAAC;IAQnE,kBAAkB,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;CAMpE;AAaD,qBAAa,kBAAmB,SAAQ,iBAAiB;IACvD,OAAO,CAAC,gBAAgB,CAAsC;gBAElD,QAAQ,EAAE,QAAQ;IA+C9B,SAAS,CAAC,eAAe,IAAI,kBAAkB;cAW/B,cAAc,CAAC,MAAM,EAAE,UAAU;CAKlD;AAID,qBAAa,uBAAwB,YAAW,mBAAmB;IAGrD,OAAO,CAAC,QAAQ;IAF5B,OAAO,CAAC,WAAW,CAAmD;gBAElD,QAAQ,EAAE,QAAQ;IAEtC,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,YAAY,CAAC;IAanE,kBAAkB,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;IAMnE,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;IAevD,OAAO,IAAI,SAAS;CAGrB;AACD,qBAAa,gBAAiB,SAAQ,iBAAiB;gBACzC,QAAQ,EAAE,QAAQ;IAI9B,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;CAGxD;AAED,qBAAa,eAAgB,SAAQ,iBAAiB;gBACxC,QAAQ,EAAE,QAAQ;IAI9B,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;CAUxD;AAED,qBAAa,oBAAqB,SAAQ,iBAAiB;IAEvD,SAAS,CAAC,WAAW,EAAE,MAAM;IAC7B,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAC5B,SAAS,CAAC,KAAK,EAAE,KAAK,GAAG,MAAM;IAC/B,SAAS,CAAC,SAAS,EAAE,KAAK,GAAG,OAAO;gBAH1B,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,QAAQ,EAClB,KAAK,GAAE,KAAK,GAAG,MAAc,EAC7B,SAAS,GAAE,KAAK,GAAG,OAAe;IAK9C,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;IAKvD,OAAO,IAAI,SAAS;CAGrB;AAKD,qBAAa,sBAAuB,SAAQ,iBAAiB;IAC3D,OAAO,CAAC,gBAAgB,CAAsC;gBAElD,QAAQ,EAAE,QAAQ;IAI9B,sBAAsB,SAAkB;IACxC,0BAA0B,SAAgB;cAE1B,cAAc,CAAC,MAAM,EAAE,UAAU;IAQjD,SAAS,CAAC,eAAe,IAAI,kBAAkB;IAY/C,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,YAAY,CAAC;IAWnE,kBAAkB,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;CAQpE;AAED;;;;;GAKG;AACH,qBAAa,uBAAwB,SAAQ,qBAAqB;gBACpD,QAAQ,EAAE,QAAQ;CAS/B;AAED,qBAAa,eAAgB,SAAQ,iBAAiB;IACpD,YAAY;;;;MAMX;gBAEW,QAAQ,EAAE,QAAQ;IAI9B,kBAAkB,IAAI,UAAU,CAAC,mBAAmB,EAAE,CAAC;IA+BvD,mBAAmB,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,YAAY,CAAC;IAenE,kBAAkB,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,UAAU,EAAE,CAAC;CAiBpE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EACL,mBAAmB,EAGnB,UAAU,
|
|
1
|
+
{"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EACL,mBAAmB,EAGnB,UAAU,EAYX,MAAM,UAAU,CAAA;AACjB,OAAO,EAAY,UAAU,EAAM,MAAM,MAAM,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;AAE3F,OAAO,EAAE,SAAS,EAAE,MAAM,8CAA8C,CAAA;;AAGxE,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,GAAG,SAAS,CAAC,CAAA;AAmB/E,qBAGa,aAAa;IAqDZ,SAAS,CAAC,QAAQ,EAAE,QAAQ;IApDxC,SAAS,CAAC,MAAM,EA8CX,MAAM,CAAC,MAAM,EAAE,mBAAmB,CAAC,CAAA;IAExC,IAAI,eAAe,aAElB;gBAEqB,QAAQ,EAAE,QAAQ;IAExC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,OAAO,CAAC,mBAAmB;IAM3B,OAAO,CAAC,mBAAmB;IAI3B,YAAY,CAAC,SAAS,EAAE,MAAM;IAI9B,2BAA2B,CACzB,WAAW,EAAE,WAAW,GACvB,UAAU,CAAC,YAAY,CAAC;IAqB3B,0BAA0B,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC;yCAlG/D,aAAa;6CAAb,aAAa;CA8GzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/dataviz/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/dataviz/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA;AAC3C,cAAc,uCAAuC,CAAA;AACrD,cAAc,sCAAsC,CAAA;AACpD,cAAc,+BAA+B,CAAA"}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class ChartComponent implements OnChanges, AfterViewInit {
|
|
6
6
|
set data(value: object[]);
|
|
7
7
|
labelProperty: string;
|
|
8
|
+
prettyLabel: string;
|
|
8
9
|
valueProperty: string;
|
|
9
10
|
secondaryValueProperty: string;
|
|
10
11
|
type: InputChartType;
|
|
@@ -24,6 +25,6 @@ export declare class ChartComponent implements OnChanges, AfterViewInit {
|
|
|
24
25
|
private getDataProxy;
|
|
25
26
|
refreshChart(): Promise<void>;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "gn-ui-chart", never, { "data": { "alias": "data"; "required": false; }; "labelProperty": { "alias": "labelProperty"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; "secondaryValueProperty": { "alias": "secondaryValueProperty"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "gn-ui-chart", never, { "data": { "alias": "data"; "required": false; }; "labelProperty": { "alias": "labelProperty"; "required": false; }; "prettyLabel": { "alias": "prettyLabel"; "required": false; }; "valueProperty": { "alias": "valueProperty"; "required": false; }; "secondaryValueProperty": { "alias": "secondaryValueProperty"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
29
|
}
|
|
29
30
|
//# sourceMappingURL=chart.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chart.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/chart/chart.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAGb,UAAU,EAEV,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,cAAc,EAAE,MAAM,wFAAwF,CAAA;AACvH,OAAO,EAKL,KAAK,EACL,SAAS,EACT,YAAY,EACZ,SAAS,EAUV,MAAM,UAAU,CAAA;;AAmBjB,qBAOa,cAAe,YAAW,SAAS,EAAE,aAAa;IAC7D,IAAa,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,EAEhC;IACQ,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,sBAAsB,EAAE,MAAM,CAAA;IAC9B,IAAI,EAAE,cAAc,CAAQ;IACX,SAAS,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAA;IAElE,OAAO,CAAC,OAAO,CAAe;IAE9B,KAAK,EAAE,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE,CAAC,CAAA;IAClC,KAAK,mBAAsD;IAC3D,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAA;IAE/B,eAAe;IAIf,WAAW;IAIX,WAAW;IAQX,YAAY,IAAI,SAAS;IAkBzB,UAAU,IAAI,YAAY;IA2D1B,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAOlD,YAAY,IAAI,SAAS;IAczB,qBAAqB,IAAI,OAAO;IAIhC,OAAO,CAAC,YAAY;IAyBd,YAAY;
|
|
1
|
+
{"version":3,"file":"chart.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/chart/chart.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAGb,UAAU,EAEV,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,cAAc,EAAE,MAAM,wFAAwF,CAAA;AACvH,OAAO,EAKL,KAAK,EACL,SAAS,EACT,YAAY,EACZ,SAAS,EAUV,MAAM,UAAU,CAAA;;AAmBjB,qBAOa,cAAe,YAAW,SAAS,EAAE,aAAa;IAC7D,IAAa,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,EAEhC;IACQ,aAAa,EAAE,MAAM,CAAA;IACrB,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,MAAM,CAAA;IACrB,sBAAsB,EAAE,MAAM,CAAA;IAC9B,IAAI,EAAE,cAAc,CAAQ;IACX,SAAS,EAAE,UAAU,CAAC,iBAAiB,CAAC,CAAA;IAElE,OAAO,CAAC,OAAO,CAAe;IAE9B,KAAK,EAAE,KAAK,CAAC,SAAS,EAAE,OAAO,EAAE,CAAC,CAAA;IAClC,KAAK,mBAAsD;IAC3D,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAA;IAE/B,eAAe;IAIf,WAAW;IAIX,WAAW;IAQX,YAAY,IAAI,SAAS;IAkBzB,UAAU,IAAI,YAAY;IA2D1B,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM;IAOlD,YAAY,IAAI,SAAS;IAczB,qBAAqB,IAAI,OAAO;IAIhC,OAAO,CAAC,YAAY;IAyBd,YAAY;yCAhKP,cAAc;2CAAd,cAAc;CAwK1B"}
|
|
@@ -16,6 +16,11 @@ export declare class DataTableComponent implements OnInit, AfterViewInit, OnChan
|
|
|
16
16
|
private eltRef;
|
|
17
17
|
private cdr;
|
|
18
18
|
private translateService;
|
|
19
|
+
_featureAttributes: any[];
|
|
20
|
+
set featureAttributes(value: {
|
|
21
|
+
value: string;
|
|
22
|
+
label: string;
|
|
23
|
+
}[]);
|
|
19
24
|
set dataset(value: BaseReader);
|
|
20
25
|
activeId: TableItemId;
|
|
21
26
|
selected: EventEmitter<any>;
|
|
@@ -39,7 +44,7 @@ export declare class DataTableComponent implements OnInit, AfterViewInit, OnChan
|
|
|
39
44
|
getRowEltId(id: TableItemId): string;
|
|
40
45
|
handleError(error: FetchError | Error): void;
|
|
41
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "gn-ui-data-table", never, { "dataset": { "alias": "dataset"; "required": false; }; "activeId": { "alias": "activeId"; "required": false; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "gn-ui-data-table", never, { "featureAttributes": { "alias": "featureAttributes"; "required": false; }; "dataset": { "alias": "dataset"; "required": false; }; "activeId": { "alias": "activeId"; "required": false; }; }, { "selected": "selected"; }, never, never, true, never>;
|
|
43
48
|
}
|
|
44
49
|
export {};
|
|
45
50
|
//# sourceMappingURL=data-table.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-table.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAiB,MAAM,wBAAwB,CAAA;AAE/D,OAAO,
|
|
1
|
+
{"version":3,"file":"data-table.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts"],"names":[],"mappings":"AACA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,MAAM,EAGP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAiB,MAAM,wBAAwB,CAAA;AAE/D,OAAO,EAAiB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACrE,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAA;AAC9D,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8CAA8C,CAAA;AACrF,OAAO,EACL,YAAY,EAGb,MAAM,6BAA6B,CAAA;AAGpC,OAAO,EAAE,eAAe,EAA0B,MAAM,MAAM,CAAA;;AAS9D,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,MAAM,CAAA;AACzC,KAAK,aAAa,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;AAE3C,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,WAAW,CAAA;IACf,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;CAC7B;AAED,qBAmBa,kBAAmB,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS;IA0BvE,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,GAAG;IACX,OAAO,CAAC,gBAAgB;IA3B1B,kBAAkB,QAAK;IACvB,IAAa,iBAAiB,CAAC,KAAK,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,EAGvE;IACD,IAAa,OAAO,CAAC,KAAK,EAAE,UAAU,EAIrC;IACQ,QAAQ,EAAE,WAAW,CAAA;IACpB,QAAQ,oBAA0B;IAExB,IAAI,EAAE,OAAO,CAAA;IACR,SAAS,EAAE,YAAY,CAAA;IAEhD,QAAQ,EAAE,UAAU,CAAA;IACpB,WAAW,4BAAsC;IACjD,UAAU,EAAE,mBAAmB,CAAA;IAC/B,YAAY,EAAE,MAAM,CAAA;IACpB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,2BAAsC;IAC9C,KAAK,MAAO;gBAGF,MAAM,EAAE,UAAU,EAClB,GAAG,EAAE,iBAAiB,EACtB,gBAAgB,EAAE,gBAAgB;IAG5C,QAAQ;IAIR,eAAe;IAOf,WAAW;IAIX,OAAO,CAAC,IAAI,EAAE,OAAO;IAUrB,aAAa;IAUP,QAAQ;IAmBd,YAAY,CAAC,MAAM,EAAE,WAAW,GAAG,IAAI;IAOhC,WAAW,CAAC,EAAE,EAAE,WAAW,GAAG,MAAM;IAI3C,WAAW,CAAC,KAAK,EAAE,UAAU,GAAG,KAAK;yCAhG1B,kBAAkB;2CAAlB,kBAAkB;CA+G9B"}
|
|
@@ -8,6 +8,6 @@ export declare class FigureComponent {
|
|
|
8
8
|
get textClass(): "text-primary" | "text-secondary";
|
|
9
9
|
get bgClass(): "bg-primary-white" | "bg-secondary-white";
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FigureComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FigureComponent, "gn-ui-figure", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "figure": { "alias": "figure"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never,
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FigureComponent, "gn-ui-figure", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "figure": { "alias": "figure"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
12
12
|
}
|
|
13
13
|
//# sourceMappingURL=figure.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"figure.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/figure/figure.component.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"figure.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/figure/figure.component.ts"],"names":[],"mappings":";AAIA,qBAQa,eAAe;IACjB,IAAI,EAAG,MAAM,CAAA;IACb,KAAK,EAAG,MAAM,CAAA;IACd,MAAM,EAAG,MAAM,GAAG,MAAM,CAAA;IACxB,IAAI,SAAK;IACT,KAAK,EAAE,SAAS,GAAG,WAAW,CAAY;IAEnD,IAAI,SAAS,sCAEZ;IAED,IAAI,OAAO,8CAEV;yCAbU,eAAe;2CAAf,eAAe;CAc3B"}
|
|
@@ -5,9 +5,11 @@ export * from './lib/content-ghost/content-ghost.component';
|
|
|
5
5
|
export * from './lib/download-item/download-item.component';
|
|
6
6
|
export * from './lib/downloads-list/downloads-list.component';
|
|
7
7
|
export * from './lib/error/error.component';
|
|
8
|
+
export * from './lib/geo-data-badge/geo-data-badge.component';
|
|
8
9
|
export * from './lib/image-input/image-input.component';
|
|
9
10
|
export * from './lib/image-overlay-preview/image-overlay-preview.component';
|
|
10
|
-
export * from './lib/
|
|
11
|
+
export * from './lib/kind-badge/kind-badge.component';
|
|
12
|
+
export * from './lib/external-link-card/external-link-card.component';
|
|
11
13
|
export * from './lib/markdown-editor/markdown-editor.component';
|
|
12
14
|
export * from './lib/markdown-parser/markdown-parser.component';
|
|
13
15
|
export * from './lib/metadata-catalog/metadata-catalog.component';
|
|
@@ -17,10 +19,11 @@ export * from './lib/metadata-quality-item/metadata-quality-item.component';
|
|
|
17
19
|
export * from './lib/metadata-quality/metadata-quality.component';
|
|
18
20
|
export * from './lib/notification/notification.component';
|
|
19
21
|
export * from './lib/record-api-form/record-api-form.component';
|
|
20
|
-
export * from './lib/related-record-card/related-record-card.component';
|
|
21
22
|
export * from './lib/thumbnail/thumbnail.component';
|
|
22
|
-
export * from './lib/ui-elements.module';
|
|
23
23
|
export * from './lib/user-feedback-item/user-feedback-item.component';
|
|
24
24
|
export * from './lib/user-preview/user-preview.component';
|
|
25
25
|
export * from './lib/application-banner/application-banner.component';
|
|
26
|
+
export * from './lib/internal-link-card/internal-link-card.component';
|
|
27
|
+
export * from './lib/service-capabilities/service-capabilities.component';
|
|
28
|
+
export * from './lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component';
|
|
26
29
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,yDAAyD,CAAA;AACvE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,6BAA6B,CAAA;AAC3C,cAAc,yCAAyC,CAAA;AACvD,cAAc,6DAA6D,CAAA;AAC3E,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,yDAAyD,CAAA;AACvE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+CAA+C,CAAA;AAC7D,cAAc,yCAAyC,CAAA;AACvD,cAAc,6DAA6D,CAAA;AAC3E,cAAc,uCAAuC,CAAA;AACrD,cAAc,uDAAuD,CAAA;AACrE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6DAA6D,CAAA;AAC3E,cAAc,mDAAmD,CAAA;AACjE,cAAc,2CAA2C,CAAA;AACzD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,qCAAqC,CAAA;AACnD,cAAc,uDAAuD,CAAA;AACrE,cAAc,2CAA2C,CAAA;AACzD,cAAc,uDAAuD,CAAA;AACrE,cAAc,uDAAuD,CAAA;AACrE,cAAc,2DAA2D,CAAA;AACzE,cAAc,kFAAkF,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/api-card/api-card.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEN,aAAa,EACd,MAAM,eAAe,CAAA;;AAQtB,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AAEtC,
|
|
1
|
+
{"version":3,"file":"api-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/api-card/api-card.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAGL,YAAY,EAEZ,SAAS,EACT,MAAM,EAEN,aAAa,EACd,MAAM,eAAe,CAAA;;AAQtB,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AAEtC,qBAoBa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IACxD,OAAO,CAAC,KAAK,CAAwB;IAC5B,IAAI,EAAE,0BAA0B,CAAA;IAChC,WAAW,EAAE,0BAA0B,CAAA;IAChD,OAAO,CAAC,QAAQ,CAAC,YAAY,CAK5B;IAED,IAAa,IAAI,CAAC,KAAK,EAAE,QAAQ,EAGhC;IACD,IAAI,IAAI,IAAI,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAEjC;IACD,SAAS,SAAK;IACd,oBAAoB,EAAE,OAAO,CAAA;IAC7B,eAAe,UAAQ;IACb,iBAAiB,EAAE,YAAY,CAAC,0BAA0B,CAAC,CACrB;IAEhD,IAAI,aAAa,oFAIhB;IAED,QAAQ;IAOR,WAAW,CAAC,OAAO,EAAE,aAAa;IAKlC,sBAAsB;yCA1CX,gBAAgB;2CAAhB,gBAAgB;CAgD5B"}
|
|
@@ -4,6 +4,6 @@ export declare class AvatarComponent {
|
|
|
4
4
|
avatarPlaceholder?: string;
|
|
5
5
|
hideImage(): void;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "gn-ui-avatar", never, { "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "avatarPlaceholder": { "alias": "avatarPlaceholder"; "required": false; }; }, {}, never, never,
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "gn-ui-avatar", never, { "avatarUrl": { "alias": "avatarUrl"; "required": false; }; "avatarPlaceholder": { "alias": "avatarPlaceholder"; "required": false; }; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
9
9
|
//# sourceMappingURL=avatar.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"avatar.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/avatar/avatar.component.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"avatar.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/avatar/avatar.component.ts"],"names":[],"mappings":";AAGA,qBAOa,eAAe;IACjB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAEnC,SAAS;yCAJE,eAAe;2CAAf,eAAe;CAO3B"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface ConfirmationDialogData {
|
|
4
|
+
focusCancel: string;
|
|
4
5
|
title: string;
|
|
5
6
|
message: string;
|
|
6
7
|
confirmText: string;
|
|
@@ -9,6 +10,7 @@ export interface ConfirmationDialogData {
|
|
|
9
10
|
export declare class ConfirmationDialogComponent {
|
|
10
11
|
dialogRef: MatDialogRef<ConfirmationDialogComponent>;
|
|
11
12
|
data: ConfirmationDialogData;
|
|
13
|
+
focusCancel: any;
|
|
12
14
|
constructor(dialogRef: MatDialogRef<ConfirmationDialogComponent>, data: ConfirmationDialogData);
|
|
13
15
|
onConfirm(): void;
|
|
14
16
|
onCancel(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"confirmation-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EACb,MAAM,0BAA0B,CAAA;;AAGjC,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAQa,2BAA2B;
|
|
1
|
+
{"version":3,"file":"confirmation-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EACb,MAAM,0BAA0B,CAAA;;AAGjC,MAAM,WAAW,sBAAsB;IACrC,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAQa,2BAA2B;IAG7B,SAAS,EAAE,YAAY,CAAC,2BAA2B,CAAC;IAC3B,IAAI,EAAE,sBAAsB;IAH9D,WAAW,MAAO;gBAET,SAAS,EAAE,YAAY,CAAC,2BAA2B,CAAC,EAC3B,IAAI,EAAE,sBAAsB;IAK9D,SAAS;IAIT,QAAQ;yCAbG,2BAA2B;2CAA3B,2BAA2B;CAgBvC"}
|
|
@@ -10,7 +10,7 @@ export declare class DownloadItemComponent {
|
|
|
10
10
|
isFromApi: boolean;
|
|
11
11
|
private readonly sizeClassMap;
|
|
12
12
|
set size(value: CardSize);
|
|
13
|
-
get size():
|
|
13
|
+
get size(): CardSize;
|
|
14
14
|
cardClass: string;
|
|
15
15
|
exportUrl: EventEmitter<string>;
|
|
16
16
|
openUrl(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"download-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/download-item/download-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAMjG,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AAEtC,qBAaa,qBAAqB;IAChC,OAAO,CAAC,KAAK,
|
|
1
|
+
{"version":3,"file":"download-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/download-item/download-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAMjG,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AAEtC,qBAaa,qBAAqB;IAChC,OAAO,CAAC,KAAK,CAAU;IACd,IAAI,EAAE,qBAAqB,CAAA;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,OAAO,CAAA;IAC3B,OAAO,CAAC,QAAQ,CAAC,YAAY,CAK5B;IAED,IAAa,IAAI,CAAC,KAAK,EAAE,QAAQ,EAGhC;IACD,IAAI,IAAI,IAAI,QAAQ,CAEnB;IACD,SAAS,SAAK;IACJ,SAAS,uBAA6B;IAEhD,OAAO;yCAvBI,qBAAqB;2CAArB,qBAAqB;CA0BjC"}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
+
import { ChangeDetectorRef } from '@angular/core';
|
|
1
2
|
import { TranslateService } from '@ngx-translate/core';
|
|
2
3
|
import { DatasetDownloadDistribution } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
4
|
+
import { BlockListComponent } from '../../../../../../libs/ui/layout/src';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
declare const FILTER_FORMATS: readonly ["all", "csv", "excel", "json", "shp", "others"];
|
|
5
7
|
type FilterFormat = (typeof FILTER_FORMATS)[number];
|
|
6
8
|
export declare class DownloadsListComponent {
|
|
7
9
|
private translateService;
|
|
8
|
-
|
|
10
|
+
private changeDetector;
|
|
11
|
+
constructor(translateService: TranslateService, changeDetector: ChangeDetectorRef);
|
|
12
|
+
_list: BlockListComponent;
|
|
9
13
|
links: DatasetDownloadDistribution[];
|
|
14
|
+
get linksCount(): number;
|
|
10
15
|
activeFilterFormats: FilterFormat[];
|
|
16
|
+
updateList($event: BlockListComponent): void;
|
|
11
17
|
private removeDuplicateFormats;
|
|
12
18
|
get filteredLinks(): DatasetDownloadDistribution[];
|
|
13
19
|
get visibleFormats(): FilterFormat[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"downloads-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"downloads-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAGlB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAsB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAG1E,OAAO,EAAE,2BAA2B,EAAE,MAAM,2DAA2D,CAAA;AAIvG,OAAO,EACL,kBAAkB,EAEnB,MAAM,sCAAsC,CAAA;;AAK7C,QAAA,MAAM,cAAc,2DAA4D,CAAA;AAChF,KAAK,YAAY,GAAG,CAAC,OAAO,cAAc,CAAC,CAAC,MAAM,CAAC,CAAA;AAEnD,qBAea,sBAAsB;IAE/B,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,cAAc;gBADd,gBAAgB,EAAE,gBAAgB,EAClC,cAAc,EAAE,iBAAiB;IAG3C,KAAK,EAAE,kBAAkB,CAAA;IAChB,KAAK,EAAE,2BAA2B,EAAE,CAAA;IAE7C,IAAI,UAAU,IAAI,MAAM,CAEvB;IAED,mBAAmB,EAAE,YAAY,EAAE,CAAU;IAE7C,UAAU,CAAC,MAAM,EAAE,kBAAkB;IAKrC,OAAO,CAAC,sBAAsB;IA4B9B,IAAI,aAAa,IAAI,2BAA2B,EAAE,CAOjD;IAED,IAAI,cAAc,IAAI,YAAY,EAAE,CAInC;IAED,kBAAkB,CAAC,MAAM,EAAE,YAAY,GAAG,IAAI;IAoB9C,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO;IAI7C,oBAAoB,CAAC,MAAM,EAAE,YAAY;IAOzC,cAAc,CACZ,IAAI,EAAE,2BAA2B,EACjC,MAAM,EAAE,YAAY,GACnB,OAAO;IAkBV,aAAa,CAAC,IAAI,EAAE,2BAA2B;IAI/C,YAAY,CAAC,IAAI,EAAE,2BAA2B;IAI9C,SAAS,CAAC,IAAI,EAAE,2BAA2B;yCA3HhC,sBAAsB;2CAAtB,sBAAsB;CAkIlC"}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { DatasetOnlineResource } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
type CardSize = 'L' | 'M' | 'S' | 'XS';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class ExternalLinkCardComponent {
|
|
5
5
|
private _size;
|
|
6
6
|
link: DatasetOnlineResource;
|
|
7
7
|
private readonly sizeClassMap;
|
|
8
8
|
set size(value: CardSize);
|
|
9
|
-
get size():
|
|
9
|
+
get size(): CardSize;
|
|
10
10
|
cardClass: string;
|
|
11
11
|
get title(): string;
|
|
12
12
|
getLinkFormat(link: any): "html" | "svg" | "gml" | "json" | "pdf" | "csv" | "excel" | "geojson" | "shp" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
|
|
13
13
|
getLinkColor(link: any): string;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalLinkCardComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExternalLinkCardComponent, "gn-ui-external-link-card", never, { "link": { "alias": "link"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
17
17
|
export {};
|
|
18
|
-
//# sourceMappingURL=link-card.component.d.ts.map
|
|
18
|
+
//# sourceMappingURL=external-link-card.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"external-link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2DAA2D,CAAA;;AAWjG,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AACtC,qBAca,yBAAyB;IACpC,OAAO,CAAC,KAAK,CAAU;IACd,IAAI,EAAE,qBAAqB,CAAA;IACpC,OAAO,CAAC,QAAQ,CAAC,YAAY,CAK5B;IAED,IAAa,IAAI,CAAC,KAAK,EAAE,QAAQ,EAGhC;IACD,IAAI,IAAI,IAAI,QAAQ,CAEnB;IACD,SAAS,SAAK;IAEd,IAAI,KAAK,WAKR;IAED,aAAa,CAAC,IAAI,EAAE,GAAG;IAIvB,YAAY,CAAC,IAAI,EAAE,GAAG;yCA9BX,yBAAyB;2CAAzB,yBAAyB;CAiCrC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
2
|
+
import { LinkClassifierService } from '../../../../../../libs/util/shared/src';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GeoDataBadgeComponent {
|
|
5
|
+
linkClassifier: LinkClassifierService;
|
|
6
|
+
showLabel: boolean;
|
|
7
|
+
styling: string;
|
|
8
|
+
record: CatalogRecord;
|
|
9
|
+
isGeodata(): boolean;
|
|
10
|
+
get badgeClasses(): string;
|
|
11
|
+
constructor(linkClassifier: LinkClassifierService);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeoDataBadgeComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GeoDataBadgeComponent, "gn-ui-geo-data-badge", never, { "showLabel": { "alias": "showLabel"; "required": false; }; "styling": { "alias": "styling"; "required": false; }; "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=geo-data-badge.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geo-data-badge.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AAIzF,OAAO,EAAE,qBAAqB,EAAa,MAAM,wCAAwC,CAAA;;AAEzF,qBAaa,qBAAqB;IA+Bb,cAAc,EAAE,qBAAqB;IA9B/C,SAAS,UAAO;IAChB,OAAO,SAAY;IACnB,MAAM,EAAE,aAAa,CAAA;IAE9B,SAAS;IAYT,IAAI,YAAY,IAAI,MAAM,CAYzB;gBAEkB,cAAc,EAAE,qBAAqB;yCA/B7C,qBAAqB;2CAArB,qBAAqB;CAgCjC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
type CardSize = 'L' | 'M' | 'S' | 'XS';
|
|
6
|
+
export declare class InternalLinkCardComponent implements OnInit {
|
|
7
|
+
protected elementRef: ElementRef;
|
|
8
|
+
record: CatalogRecord;
|
|
9
|
+
linkTarget: string;
|
|
10
|
+
linkHref: string;
|
|
11
|
+
metadataQualityDisplay: boolean;
|
|
12
|
+
favoriteTemplate: TemplateRef<{
|
|
13
|
+
$implicit: CatalogRecord;
|
|
14
|
+
}>;
|
|
15
|
+
set size(value: CardSize);
|
|
16
|
+
get size(): CardSize;
|
|
17
|
+
mdSelect: EventEmitter<CatalogRecord>;
|
|
18
|
+
subscription: Subscription;
|
|
19
|
+
abstract: string;
|
|
20
|
+
cardClass: string;
|
|
21
|
+
private _size;
|
|
22
|
+
constructor(elementRef: ElementRef);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
get shouldShowThumbnail(): boolean;
|
|
25
|
+
get displayContactIconOnly(): boolean;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InternalLinkCardComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "favoriteTemplate": { "alias": "favoriteTemplate"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdSelect": "mdSelect"; }, never, never, true, never>;
|
|
28
|
+
}
|
|
29
|
+
export {};
|
|
30
|
+
//# sourceMappingURL=internal-link-card.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"internal-link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,WAAW,EACZ,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAa,YAAY,EAAE,MAAM,MAAM,CAAA;AAQ9C,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAOzF,KAAK,QAAQ,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,IAAI,CAAA;AAEtC,qBAyBa,yBAA0B,YAAW,MAAM;IAqB1C,SAAS,CAAC,UAAU,EAAE,UAAU;IApBnC,MAAM,EAAE,aAAa,CAAA;IACrB,UAAU,SAAW;IACrB,QAAQ,EAAE,MAAM,CAAO;IACvB,sBAAsB,EAAE,OAAO,CAAA;IAC/B,gBAAgB,EAAE,WAAW,CAAC;QAAE,SAAS,EAAE,aAAa,CAAA;KAAE,CAAC,CAAA;IACpE,IAAa,IAAI,CAAC,KAAK,EAAE,QAAQ,EAGhC;IACD,IAAI,IAAI,IAAI,QAAQ,CAEnB;IACS,QAAQ,8BAAoC;IACtD,YAAY,eAAqB;IAEjC,QAAQ,EAAE,MAAM,CAAA;IAChB,SAAS,EAAE,MAAM,CAAA;IAEjB,OAAO,CAAC,KAAK,CAAgB;gBAEP,UAAU,EAAE,UAAU;IAE5C,QAAQ,IAAI,IAAI;IAQhB,IAAI,mBAAmB,IAAI,OAAO,CAEjC;IAED,IAAI,sBAAsB,YASzB;yCA5CU,yBAAyB;2CAAzB,yBAAyB;CA6CrC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class KindBadgeComponent {
|
|
4
|
+
styling: string;
|
|
5
|
+
contentTemplate: TemplateRef<unknown>;
|
|
6
|
+
kind: string;
|
|
7
|
+
extraClass: string;
|
|
8
|
+
hasProjectedContent: boolean;
|
|
9
|
+
get iconKind(): any;
|
|
10
|
+
get badgeClasses(): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KindBadgeComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KindBadgeComponent, "gn-ui-kind-badge", never, { "styling": { "alias": "styling"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=kind-badge.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"kind-badge.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,WAAW,EACZ,MAAM,eAAe,CAAA;;AAsBtB,qBAgBa,kBAAkB;IACpB,OAAO,SAAY;IACnB,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IACrC,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,SAAkB;IAErC,mBAAmB,UAAQ;IAE3B,IAAI,QAAQ,QAEX;IAED,IAAI,YAAY,IAAI,MAAM,CAczB;yCA1BU,kBAAkB;2CAAlB,kBAAkB;CA2B9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;
|
|
1
|
+
{"version":3,"file":"markdown-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAMtB,qBAca,uBAAuB;IACzB,OAAO,UAAQ;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,kBAAkB,SAAK;IACtB,kBAAkB,EAAE,YAAY,CAAC,MAAM,CAAC,CACtB;IAE5B,yBAAyB,CAAC,WAAW,EAAE,MAAM;yCARlC,uBAAuB;2CAAvB,uBAAuB;CAYnC"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { CatalogRecord, Keyword } from '../../../../../../libs/common/domain/src/lib/model/record';
|
|
3
3
|
import { DateService } from '../../../../../../libs/util/shared/src';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class MetadataInfoComponent {
|
|
6
6
|
private dateService;
|
|
7
|
-
metadata: Partial<
|
|
7
|
+
metadata: Partial<CatalogRecord>;
|
|
8
8
|
incomplete: boolean;
|
|
9
9
|
keyword: EventEmitter<Keyword>;
|
|
10
10
|
updatedTimes: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata-info.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,aAAa,EACb,OAAO,EACR,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,WAAW,EAAyB,MAAM,wCAAwC,CAAA;;
|
|
1
|
+
{"version":3,"file":"metadata-info.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,aAAa,EACb,OAAO,EACR,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,WAAW,EAAyB,MAAM,wCAAwC,CAAA;;AAqB3F,qBA4Ba,qBAAqB;IAMpB,OAAO,CAAC,WAAW;IALtB,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,UAAU,EAAE,OAAO,CAAA;IAClB,OAAO,wBAA8B;IAC/C,YAAY,EAAE,MAAM,CAAA;gBAEA,WAAW,EAAE,WAAW;IAE5C,IAAI,QAAQ,YASX;IAED,IAAI,gBAAgB,UAanB;IAED,IAAI,gBAAgB,UAQnB;IAED,IAAI,QAAQ,IAAI;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,EAAE,CAU9C;IAED,IAAI,eAAe,IAAI,MAAM,CAS5B;IAED,IAAI,cAAc,IAAI;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAInD;IAED,IAAI,iBAAiB,gGAEpB;IAED,IAAI,eAAe,yFAElB;IAED,UAAU,CAAC,QAAQ,EAAE,MAAM;IAI3B,cAAc,CAAC,OAAO,EAAE,OAAO;IAI/B,UAAU,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM;IAI9B,cAAc,CAAC,IAAI,EAAE,IAAI,GAAG,MAAM;yCA7FvB,qBAAqB;2CAArB,qBAAqB;CAgGjC"}
|
|
@@ -10,6 +10,9 @@ export declare class MetadataQualityComponent implements OnChanges {
|
|
|
10
10
|
get qualityScore(): number;
|
|
11
11
|
get calculatedQualityScore(): number;
|
|
12
12
|
private add;
|
|
13
|
+
hasGetCapabilities(url: string): boolean;
|
|
14
|
+
private readonly COMMON_CHECKS;
|
|
15
|
+
private readonly SPECIFIC_CHECKS;
|
|
13
16
|
initialize(): void;
|
|
14
17
|
ngOnChanges(changes: SimpleChanges): void;
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityComponent, never>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,mBAAmB,EAEpB,MAAM,0DAA0D,CAAA;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;
|
|
1
|
+
{"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,mBAAmB,EAEpB,MAAM,0DAA0D,CAAA;AACjE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAczF,qBAwBa,wBAAyB,YAAW,SAAS;IAC/C,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,OAAO,UAAQ;IACf,sBAAsB,EAAE,OAAO,CAAA;IAExC,KAAK,EAAE,mBAAmB,EAAE,CAAK;IAEjC,IAAI,YAAY,WAKf;IAED,IAAI,sBAAsB,IAAI,MAAM,CAInC;IAED,OAAO,CAAC,GAAG;IAKX,kBAAkB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;IAIxC,OAAO,CAAC,QAAQ,CAAC,aAAa,CAO7B;IAED,OAAO,CAAC,QAAQ,CAAC,eAAe,CAiB/B;IAED,UAAU;IAiBV,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCA1E9B,wBAAwB;2CAAxB,wBAAwB;CA+EpC"}
|
package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metadata-quality-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"metadata-quality-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts"],"names":[],"mappings":";AA2BA,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,OAAO,CAAA;CACf;AAED,qBAQa,4BAA6B,YAAW,mBAAmB;IAC7D,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,OAAO,CAAA;IAEvB,IAAI,IAAI,mCAEP;IAED,IAAI,QAAQ,WAIX;yCAZU,4BAA4B;2CAA5B,4BAA4B;CAaxC"}
|