geonetwork-ui 2.9.0-dev.fc19cbfed → 2.10.0-dev.02185426a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/geonetwork-ui.mjs +2382 -6943
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +378 -196
- package/index.d.ts.map +1 -1
- package/material-styles.css +483 -0
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +72 -37
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +48 -2
- package/src/libs/common/domain/src/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/index.ts +3 -0
- package/src/libs/common/domain/src/lib/model/record/index.ts +2 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
- package/src/libs/common/domain/src/lib/model/search/index.ts +1 -1
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +56 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +3 -3
- package/src/libs/feature/editor/src/index.ts +2 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +10 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -20
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +11 -6
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +18 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +33 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- 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 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.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.html +6 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +21 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +14 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +118 -5
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +310 -336
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- package/src/libs/feature/notify-reuse/src/index.ts +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +8 -4
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/elements/src/index.ts +3 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +41 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +5 -3
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +3 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +26 -68
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +8 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
- 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 +3 -3
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +1 -1
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +6 -2
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +15 -64
- package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +72 -9
- package/src/libs/util/app-config/src/lib/model.ts +8 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
- package/src/libs/util/i18n/src/index.ts +0 -1
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
- package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/style.css +0 -1
- package/tailwind.base.css +28 -2
- package/translations/de.json +82 -48
- package/translations/en.json +87 -53
- package/translations/es.json +56 -22
- package/translations/fr.json +84 -50
- package/translations/it.json +82 -48
- package/translations/nl.json +55 -21
- package/translations/pt.json +56 -22
- package/translations/sk.json +56 -22
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
package/index.d.ts
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
import * as geojson from 'geojson';
|
|
2
|
-
import { Geometry, Feature, FeatureCollection } from 'geojson';
|
|
2
|
+
import { Geometry, Feature, Polygon, FeatureCollection } from 'geojson';
|
|
3
3
|
import { XmlElement, XmlDocument, XmlComment, XmlProcessingInstruction, XmlDeclaration, XmlDocumentType, XmlCdata, XmlText } from '@rgrove/parse-xml';
|
|
4
4
|
export { XmlDocument, XmlElement } from '@rgrove/parse-xml';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { InjectionToken, Provider, OnInit, AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleChanges, TemplateRef, Type, ViewContainerRef, AfterViewChecked, QueryList, Injector, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
6
|
+
import { InjectionToken, Provider, OnInit, AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleChanges, TemplateRef, Type, ViewContainerRef, AfterViewChecked, QueryList, Injector, Signal, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
7
7
|
import * as rxjs from 'rxjs';
|
|
8
8
|
import { Observable, Subject, BehaviorSubject, Subscription, ReplaySubject } from 'rxjs';
|
|
9
9
|
import { Store, NamedNode } from 'rdflib';
|
|
10
10
|
import { ContentType } from 'rdflib/lib/types';
|
|
11
11
|
import { HttpParameterCodec, HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
|
|
12
|
-
import { TranslateService, TranslateModuleConfig
|
|
12
|
+
import { TranslateService, TranslateModuleConfig } from '@ngx-translate/core';
|
|
13
13
|
import * as _geospatial_sdk_core from '@geospatial-sdk/core';
|
|
14
|
-
import { MapContext, MapContextLayer, Extent, SourceLoadErrorEvent } from '@geospatial-sdk/core';
|
|
14
|
+
import { MapContext, MapContextLayer, Extent, SourceLoadErrorEvent, MapContextLayerGeojson } from '@geospatial-sdk/core';
|
|
15
15
|
import * as _ngrx_store from '@ngrx/store';
|
|
16
16
|
import { Action } from '@ngrx/store';
|
|
17
17
|
import { Style } from 'ol/style.js';
|
|
18
18
|
import { StyleLike } from 'ol/style/Style.js';
|
|
19
19
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
20
|
+
import * as geonetwork_ui from 'geonetwork-ui';
|
|
20
21
|
import { UntypedFormControl, FormControl } from '@angular/forms';
|
|
21
22
|
import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
22
23
|
import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
|
|
@@ -26,13 +27,12 @@ import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/
|
|
|
26
27
|
import { MatSort } from '@angular/material/sort';
|
|
27
28
|
import { DataSource } from '@angular/cdk/collections';
|
|
28
29
|
import { MatPaginator } from '@angular/material/paginator';
|
|
29
|
-
import * as geonetwork_ui from 'geonetwork-ui';
|
|
30
30
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
31
31
|
import * as i2 from '@ngrx/router-store';
|
|
32
32
|
import * as _angular_router from '@angular/router';
|
|
33
33
|
import { Router, QueryParamsHandling, Routes } from '@angular/router';
|
|
34
34
|
import Collection from 'ol/Collection.js';
|
|
35
|
-
import {
|
|
35
|
+
import { DragPan, MouseWheelZoom, Interaction } from 'ol/interaction.js';
|
|
36
36
|
import MapBrowserEvent from 'ol/MapBrowserEvent.js';
|
|
37
37
|
import * as chart_js from 'chart.js';
|
|
38
38
|
import { Chart, ChartType, ChartData, ChartOptions } from 'chart.js';
|
|
@@ -46,7 +46,6 @@ import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
|
46
46
|
import { Locale } from 'date-fns/locale';
|
|
47
47
|
import { ViewportScroller } from '@angular/common';
|
|
48
48
|
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
49
|
-
import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-compiler';
|
|
50
49
|
|
|
51
50
|
type LanguageCode = string;
|
|
52
51
|
type FieldTranslation = Record<LanguageCode, string>;
|
|
@@ -72,6 +71,7 @@ interface OnlineResourceTranslations {
|
|
|
72
71
|
interface SpatialExtentTranslations {
|
|
73
72
|
description?: FieldTranslation;
|
|
74
73
|
}
|
|
74
|
+
type ModelTranslations = RecordTranslations | OrganizationTranslations | KeywordTranslations | ConstraintTranslations | OnlineResourceTranslations | SpatialExtentTranslations;
|
|
75
75
|
|
|
76
76
|
interface Organization {
|
|
77
77
|
name: string;
|
|
@@ -84,6 +84,7 @@ interface Organization {
|
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
declare const RoleValues: string[];
|
|
87
|
+
declare const RoleLabels: Map<string, string>;
|
|
87
88
|
type Role = (typeof RoleValues)[number];
|
|
88
89
|
interface Individual {
|
|
89
90
|
firstName?: string;
|
|
@@ -98,7 +99,7 @@ interface Individual {
|
|
|
98
99
|
|
|
99
100
|
type KeywordType = 'place' | 'temporal' | 'theme' | 'other';
|
|
100
101
|
interface ThesaurusModel {
|
|
101
|
-
id
|
|
102
|
+
id?: string;
|
|
102
103
|
name?: string;
|
|
103
104
|
url?: URL;
|
|
104
105
|
thesaurusKey?: string;
|
|
@@ -134,12 +135,9 @@ interface Keyword {
|
|
|
134
135
|
type: KeywordType;
|
|
135
136
|
thesaurus?: ThesaurusModel;
|
|
136
137
|
bbox?: [number, number, number, number];
|
|
138
|
+
hierarchyPath?: string[];
|
|
137
139
|
translations?: KeywordTranslations;
|
|
138
140
|
}
|
|
139
|
-
interface INSPIRE_topic {
|
|
140
|
-
value: string;
|
|
141
|
-
label: string;
|
|
142
|
-
}
|
|
143
141
|
interface ResourceIdentifier$1 {
|
|
144
142
|
code: string;
|
|
145
143
|
codeSpace?: string;
|
|
@@ -227,10 +225,19 @@ interface DatasetTemporalExtent {
|
|
|
227
225
|
start: Date;
|
|
228
226
|
end?: Date;
|
|
229
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* Represents a source dataset referenced from a lineage entry.
|
|
230
|
+
*/
|
|
231
|
+
interface SourceRecord {
|
|
232
|
+
uuid?: string;
|
|
233
|
+
title?: string;
|
|
234
|
+
href?: string;
|
|
235
|
+
}
|
|
230
236
|
interface DatasetRecord extends BaseRecord {
|
|
231
237
|
kind: 'dataset';
|
|
232
238
|
status: RecordStatus;
|
|
233
239
|
lineage: string;
|
|
240
|
+
sourceRecords: Array<SourceRecord>;
|
|
234
241
|
onlineResources: Array<DatasetOnlineResource>;
|
|
235
242
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
236
243
|
temporalExtents: Array<DatasetTemporalExtent>;
|
|
@@ -254,6 +261,7 @@ interface ServiceRecord extends BaseRecord {
|
|
|
254
261
|
interface ReuseRecord extends BaseRecord {
|
|
255
262
|
kind: 'reuse';
|
|
256
263
|
lineage: string;
|
|
264
|
+
sourceRecords: Array<SourceRecord>;
|
|
257
265
|
onlineResources: Array<DatasetOnlineResource>;
|
|
258
266
|
reuseType: ReuseType;
|
|
259
267
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
@@ -278,6 +286,14 @@ interface DatasetFeatureAttribute {
|
|
|
278
286
|
code: string;
|
|
279
287
|
values?: Array<DatasetFeatureAttributeValue>;
|
|
280
288
|
}
|
|
289
|
+
interface DatasetFeatureType {
|
|
290
|
+
aliases: string;
|
|
291
|
+
code: string;
|
|
292
|
+
isAbstract: string;
|
|
293
|
+
typeName: string;
|
|
294
|
+
definition: string;
|
|
295
|
+
attributeTable: Array<DatasetFeatureAttribute>;
|
|
296
|
+
}
|
|
281
297
|
type ReuseType = 'application' | 'map' | 'other';
|
|
282
298
|
type OnlineResource = DatasetOnlineResource | ServiceOnlineResource;
|
|
283
299
|
type CatalogRecord = DatasetRecord | ReuseRecord | ServiceRecord;
|
|
@@ -417,6 +433,7 @@ type ThesaurusName = string;
|
|
|
417
433
|
interface Thesaurus {
|
|
418
434
|
id?: string;
|
|
419
435
|
title?: string;
|
|
436
|
+
multilingualTitle?: MultilingualField;
|
|
420
437
|
theme?: string;
|
|
421
438
|
link?: string;
|
|
422
439
|
keywords: MultilingualField[];
|
|
@@ -677,7 +694,17 @@ declare const getAsUrl: (field: any, location?: string) => URL;
|
|
|
677
694
|
declare const mapLogo: (source: SourceWithUnknownProps) => URL;
|
|
678
695
|
declare const mapOrganization: (sourceContact: SourceWithUnknownProps, lang3: string) => Organization;
|
|
679
696
|
declare const mapContact: (sourceContact: SourceWithUnknownProps, lang3: string) => Individual;
|
|
680
|
-
|
|
697
|
+
interface KeywordTree {
|
|
698
|
+
default?: string[];
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* Resolves a keyword's ancestor path within its thesaurus tree, or null for a
|
|
702
|
+
* root-level keyword (no ancestors to show). Tree entries are `^`-joined label
|
|
703
|
+
* paths (default language); they aren't index-aligned with the keywords, so we
|
|
704
|
+
* match on the last segment (not by position/URI), shortest path on poly-hierarchy.
|
|
705
|
+
*/
|
|
706
|
+
declare const getKeywordHierarchyPath: (keywordDefaultLabel: string, tree?: KeywordTree | null) => string[] | null;
|
|
707
|
+
declare const mapKeywords: (thesauri: Record<string, Thesaurus>, language: string, source?: SourceWithUnknownProps) => any[];
|
|
681
708
|
|
|
682
709
|
type ESResponseSource = SourceWithUnknownProps;
|
|
683
710
|
type EsFieldMapperFn = (output: Partial<CatalogRecord>, source: ESResponseSource) => Partial<CatalogRecord>;
|
|
@@ -706,6 +733,17 @@ type FieldFilterByRange = {
|
|
|
706
733
|
};
|
|
707
734
|
type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange;
|
|
708
735
|
type FieldFilters = Record<FieldName$1, FieldFilter$1>;
|
|
736
|
+
type QueryString = {
|
|
737
|
+
query_string: string;
|
|
738
|
+
};
|
|
739
|
+
type QueryRange = {
|
|
740
|
+
range: Record<string, {
|
|
741
|
+
format: string;
|
|
742
|
+
gte: string;
|
|
743
|
+
lte: string;
|
|
744
|
+
}>;
|
|
745
|
+
};
|
|
746
|
+
type FilterQuery = Array<QueryString | QueryRange>;
|
|
709
747
|
|
|
710
748
|
interface TermsAggregationParams {
|
|
711
749
|
type: 'terms';
|
|
@@ -727,7 +765,7 @@ interface FiltersAggregationParams {
|
|
|
727
765
|
type AggregationParams = TermsAggregationParams | HistogramAggregationParams | FiltersAggregationParams;
|
|
728
766
|
type AggregationsParams = Record<FieldName$1, AggregationParams>;
|
|
729
767
|
type AggregationsTypes = AggregationParams['type'];
|
|
730
|
-
interface TermBucket
|
|
768
|
+
interface TermBucket {
|
|
731
769
|
term: string;
|
|
732
770
|
count: number;
|
|
733
771
|
}
|
|
@@ -740,7 +778,7 @@ interface FiltersBucket {
|
|
|
740
778
|
name: string;
|
|
741
779
|
count: number;
|
|
742
780
|
}
|
|
743
|
-
type Bucket = TermBucket
|
|
781
|
+
type Bucket = TermBucket | HistogramBucket | FiltersBucket;
|
|
744
782
|
type AggregationSort = ['desc' | 'asc', 'key' | 'count'];
|
|
745
783
|
interface AggregationBuckets {
|
|
746
784
|
buckets: Bucket[];
|
|
@@ -765,6 +803,8 @@ interface SearchResults {
|
|
|
765
803
|
count: number;
|
|
766
804
|
}
|
|
767
805
|
|
|
806
|
+
declare const SortByEnum: Record<string, SortByField>;
|
|
807
|
+
|
|
768
808
|
declare abstract class OrganizationsServiceInterface {
|
|
769
809
|
abstract organisations$: Observable<Organization[]>;
|
|
770
810
|
abstract organisationsCount$: Observable<number>;
|
|
@@ -1053,6 +1093,8 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1053
1093
|
}
|
|
1054
1094
|
|
|
1055
1095
|
type RecordAsXml = string;
|
|
1096
|
+
declare const DISABLE_DRAFT: InjectionToken<boolean>;
|
|
1097
|
+
declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
|
|
1056
1098
|
declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
1057
1099
|
private httpClient;
|
|
1058
1100
|
private gn4SearchApi;
|
|
@@ -1062,6 +1104,8 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1062
1104
|
private platformService;
|
|
1063
1105
|
private gn4LanguagesApi;
|
|
1064
1106
|
private settingsService;
|
|
1107
|
+
private disableDraft;
|
|
1108
|
+
private defaultConverter;
|
|
1065
1109
|
_draftsChanged: Subject<void>;
|
|
1066
1110
|
draftsChanged$: Observable<void>;
|
|
1067
1111
|
search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
|
|
@@ -1721,6 +1765,15 @@ interface UserModel {
|
|
|
1721
1765
|
profileIcon?: string;
|
|
1722
1766
|
}
|
|
1723
1767
|
|
|
1768
|
+
interface GroupModel {
|
|
1769
|
+
groupId: number;
|
|
1770
|
+
groupName: string;
|
|
1771
|
+
isMember: boolean;
|
|
1772
|
+
canEdit: boolean;
|
|
1773
|
+
canApprove: boolean;
|
|
1774
|
+
canAdministrate: boolean;
|
|
1775
|
+
}
|
|
1776
|
+
|
|
1724
1777
|
interface RecordAttachment {
|
|
1725
1778
|
url: URL;
|
|
1726
1779
|
fileName: string;
|
|
@@ -1740,6 +1793,7 @@ declare abstract class PlatformServiceInterface {
|
|
|
1740
1793
|
abstract getMe(): Observable<UserModel>;
|
|
1741
1794
|
abstract isAnonymous(): Observable<boolean>;
|
|
1742
1795
|
abstract getUsers(): Observable<UserModel[]>;
|
|
1796
|
+
abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1743
1797
|
abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1744
1798
|
abstract getOrganizations(): Observable<Organization[]>;
|
|
1745
1799
|
abstract translateKey(key: string): Observable<string>;
|
|
@@ -1890,6 +1944,7 @@ declare class SelectionService {
|
|
|
1890
1944
|
|
|
1891
1945
|
interface Gn4ProvideOptions {
|
|
1892
1946
|
disableAuth?: boolean;
|
|
1947
|
+
disableDraft?: boolean;
|
|
1893
1948
|
}
|
|
1894
1949
|
declare function provideGn4(provideOptions?: Gn4ProvideOptions): Provider[];
|
|
1895
1950
|
|
|
@@ -1897,6 +1952,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
|
|
|
1897
1952
|
declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
1898
1953
|
private meApi;
|
|
1899
1954
|
private usersApi;
|
|
1955
|
+
private groupsApi;
|
|
1900
1956
|
private mapper;
|
|
1901
1957
|
private toolsApiService;
|
|
1902
1958
|
private registriesApiService;
|
|
@@ -1928,6 +1984,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
|
1928
1984
|
getOrganizations(): Observable<Organization[]>;
|
|
1929
1985
|
getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1930
1986
|
getUsers(): Observable<UserModel[]>;
|
|
1987
|
+
getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1931
1988
|
translateKey(key: string): Observable<string>;
|
|
1932
1989
|
private allThesaurus$;
|
|
1933
1990
|
searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
|
|
@@ -2092,6 +2149,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
|
|
|
2092
2149
|
declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
|
|
2093
2150
|
type BoundingBox = [number, number, number, number];
|
|
2094
2151
|
declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
|
|
2152
|
+
/**
|
|
2153
|
+
* Builds the closed GeoJSON Polygon matching the given bounding box.
|
|
2154
|
+
*/
|
|
2155
|
+
declare function bboxToPolygon(bbox: BoundingBox): Polygon;
|
|
2156
|
+
/**
|
|
2157
|
+
* Returns the geometry carried by a spatial extent, falling back to the polygon
|
|
2158
|
+
* derived from its bounding box. Returns null when the extent has neither.
|
|
2159
|
+
*/
|
|
2160
|
+
declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
|
|
2161
|
+
/**
|
|
2162
|
+
* Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
|
|
2163
|
+
* e.g. to be used as the data source of a map layer.
|
|
2164
|
+
*/
|
|
2165
|
+
declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
|
|
2095
2166
|
|
|
2096
2167
|
declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
|
|
2097
2168
|
declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
|
|
@@ -2139,6 +2210,10 @@ declare function getTemporalRangeUnion(ranges: {
|
|
|
2139
2210
|
*/
|
|
2140
2211
|
declare function removeSearchParams(url: string, searchParams: string[]): string;
|
|
2141
2212
|
|
|
2213
|
+
declare function getIndividualDisplayName(individual: Individual): string;
|
|
2214
|
+
declare function getAddressLines(address: string | undefined): string[];
|
|
2215
|
+
declare function toIndividual(user: UserModel): Individual;
|
|
2216
|
+
|
|
2142
2217
|
declare const FORMATS: {
|
|
2143
2218
|
readonly csv: {
|
|
2144
2219
|
readonly extensions: readonly ["csv"];
|
|
@@ -2316,8 +2391,12 @@ declare class ImageFallbackDirective {
|
|
|
2316
2391
|
declare const GEONETWORK_UI_VERSION: string;
|
|
2317
2392
|
declare const GEONETWORK_UI_TAG_NAME: string;
|
|
2318
2393
|
|
|
2394
|
+
type TValidatorEntry = {
|
|
2395
|
+
validator: (metadata: Partial<CatalogRecord>) => boolean;
|
|
2396
|
+
alias?: string;
|
|
2397
|
+
};
|
|
2319
2398
|
type TValidatorMapper = {
|
|
2320
|
-
[key: string]:
|
|
2399
|
+
[key: string]: TValidatorEntry;
|
|
2321
2400
|
};
|
|
2322
2401
|
declare const ValidatorMapper: TValidatorMapper;
|
|
2323
2402
|
type ValidatorMapperKeys = keyof typeof ValidatorMapper & string;
|
|
@@ -2325,6 +2404,7 @@ declare function getAllKeysValidator(): string[];
|
|
|
2325
2404
|
declare function getQualityValidators(record: Partial<CatalogRecord>, propsToValidate: ValidatorMapperKeys[]): {
|
|
2326
2405
|
name: string;
|
|
2327
2406
|
validator: () => boolean;
|
|
2407
|
+
alias: string;
|
|
2328
2408
|
}[];
|
|
2329
2409
|
|
|
2330
2410
|
declare function updateLanguages<T extends CatalogRecord>(record: T, defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): T;
|
|
@@ -2342,6 +2422,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
|
|
|
2342
2422
|
|
|
2343
2423
|
declare class MapUtilsService {
|
|
2344
2424
|
getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
|
|
2425
|
+
/**
|
|
2426
|
+
* Builds a non-interactive overlay layer drawing the spatial extent(s)
|
|
2427
|
+
* declared in the record's metadata (bounding boxes and/or geometries).
|
|
2428
|
+
* Returns null when the record has no usable spatial extent.
|
|
2429
|
+
*
|
|
2430
|
+
* This is purely for display and is independent from the map's initial view,
|
|
2431
|
+
* which is derived separately (see {@link getRecordExtent}).
|
|
2432
|
+
*/
|
|
2433
|
+
getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
|
|
2345
2434
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
|
|
2346
2435
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
|
|
2347
2436
|
}
|
|
@@ -2667,14 +2756,16 @@ declare class BadgeComponent {
|
|
|
2667
2756
|
clickable?: boolean;
|
|
2668
2757
|
removable?: boolean;
|
|
2669
2758
|
badgeRemoveClicked: EventEmitter<void>;
|
|
2759
|
+
badgeClicked: EventEmitter<void>;
|
|
2670
2760
|
removeBadge(): void;
|
|
2761
|
+
handleClick(event: MouseEvent): void;
|
|
2671
2762
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
2672
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; }, never, ["*"], true, never>;
|
|
2763
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; "badgeClicked": "badgeClicked"; }, never, ["*"], true, never>;
|
|
2673
2764
|
}
|
|
2674
2765
|
|
|
2675
2766
|
declare class ButtonComponent {
|
|
2676
2767
|
private btnClass;
|
|
2677
|
-
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black');
|
|
2768
|
+
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
|
|
2678
2769
|
disabled: boolean;
|
|
2679
2770
|
extraClass: string;
|
|
2680
2771
|
buttonClick: EventEmitter<Event>;
|
|
@@ -2785,7 +2876,7 @@ declare class DropdownMultiselectComponent {
|
|
|
2785
2876
|
overlayPositions: ConnectedPosition[];
|
|
2786
2877
|
scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2787
2878
|
overlayOpen: boolean;
|
|
2788
|
-
|
|
2879
|
+
overlayMinWidth: string;
|
|
2789
2880
|
overlayMaxHeight: string;
|
|
2790
2881
|
id: string;
|
|
2791
2882
|
get hasSelectedChoices(): boolean;
|
|
@@ -3000,7 +3091,7 @@ declare class UrlInputComponent implements OnChanges {
|
|
|
3000
3091
|
inputValue: string;
|
|
3001
3092
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3002
3093
|
handleInput(event: Event): void;
|
|
3003
|
-
handleUpload(element: HTMLInputElement): void;
|
|
3094
|
+
handleUpload(element: HTMLInputElement, event: Event): void;
|
|
3004
3095
|
isValidUrl(url: string): boolean;
|
|
3005
3096
|
static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
|
|
3006
3097
|
static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showValidateButton": { "alias": "showValidateButton"; "required": false; }; "resetUrlOnChange": { "alias": "resetUrlOnChange"; "required": false; }; }, { "valueChange": "valueChange"; "uploadClick": "uploadClick"; }, never, ["*"], true, never>;
|
|
@@ -3109,6 +3200,22 @@ declare class ResultsTableComponent {
|
|
|
3109
3200
|
static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableComponent, "gn-ui-results-table", never, { "records": { "alias": "records"; "required": false; }; "selectedRecordsIdentifiers": { "alias": "selectedRecordsIdentifiers"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; "hasDraft": { "alias": "hasDraft"; "required": false; }; "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "canEdit": { "alias": "canEdit"; "required": false; }; "isDraftPage": { "alias": "isDraftPage"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; }, { "sortByChange": "sortByChange"; "recordClick": "recordClick"; "duplicateRecord": "duplicateRecord"; "deleteRecord": "deleteRecord"; "rollbackDraft": "rollbackDraft"; "recordsSelectedChange": "recordsSelectedChange"; }, never, never, true, never>;
|
|
3110
3201
|
}
|
|
3111
3202
|
|
|
3203
|
+
type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
|
|
3204
|
+
declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
|
|
3205
|
+
type InputChartType = (typeof CHART_TYPE_VALUES)[number];
|
|
3206
|
+
interface DatavizChartConfigModel {
|
|
3207
|
+
xProperty: string;
|
|
3208
|
+
yProperty: string;
|
|
3209
|
+
aggregation: AggregationTypes;
|
|
3210
|
+
chartType: InputChartType;
|
|
3211
|
+
}
|
|
3212
|
+
interface DatavizConfigModel {
|
|
3213
|
+
view: string;
|
|
3214
|
+
source: DatasetOnlineResource;
|
|
3215
|
+
chartConfig?: DatavizChartConfigModel;
|
|
3216
|
+
styleTMSIndex?: number;
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3112
3219
|
type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu';
|
|
3113
3220
|
declare class ActionMenuComponent {
|
|
3114
3221
|
dialog: MatDialog;
|
|
@@ -3117,6 +3224,7 @@ declare class ActionMenuComponent {
|
|
|
3117
3224
|
isDuplicating: boolean;
|
|
3118
3225
|
canDelete: boolean;
|
|
3119
3226
|
page: 'draft' | 'main' | 'record';
|
|
3227
|
+
recordKind: RecordKind;
|
|
3120
3228
|
duplicate: EventEmitter<void>;
|
|
3121
3229
|
delete: EventEmitter<void>;
|
|
3122
3230
|
closeActionMenu: EventEmitter<void>;
|
|
@@ -3127,7 +3235,7 @@ declare class ActionMenuComponent {
|
|
|
3127
3235
|
displayMainMenu(): void;
|
|
3128
3236
|
displayDeleteMenu(): void;
|
|
3129
3237
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
|
|
3130
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "page": { "alias": "page"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; "closeActionMenu": "closeActionMenu"; "rollback": "rollback"; "switch": "switch"; }, never, never, true, never>;
|
|
3238
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "page": { "alias": "page"; "required": false; }; "recordKind": { "alias": "recordKind"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; "closeActionMenu": "closeActionMenu"; "rollback": "rollback"; "switch": "switch"; }, never, never, true, never>;
|
|
3131
3239
|
}
|
|
3132
3240
|
|
|
3133
3241
|
declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
@@ -3400,13 +3508,13 @@ type SearchActions = AddSearch | SetConfigFilters | SetFilters | UpdateFilters |
|
|
|
3400
3508
|
|
|
3401
3509
|
declare const getSearchState: _ngrx_store.MemoizedSelector<object, SearchState, _ngrx_store.DefaultProjectorFn<SearchState>>;
|
|
3402
3510
|
declare const getSearchStateSearch: _ngrx_store.MemoizedSelector<object, SearchStateSearch, (s1: SearchState) => SearchStateSearch>;
|
|
3403
|
-
declare const getSearchFilters: _ngrx_store.MemoizedSelector<object, FieldFilters, (s1: SearchStateSearch) => FieldFilters>;
|
|
3404
|
-
declare const getSearchSortBy: _ngrx_store.MemoizedSelector<object, SortByField, (s1: SearchStateSearch) => SortByField>;
|
|
3511
|
+
declare const getSearchFilters: _ngrx_store.MemoizedSelector<object, geonetwork_ui.FieldFilters, (s1: SearchStateSearch) => geonetwork_ui.FieldFilters>;
|
|
3512
|
+
declare const getSearchSortBy: _ngrx_store.MemoizedSelector<object, geonetwork_ui.SortByField, (s1: SearchStateSearch) => geonetwork_ui.SortByField>;
|
|
3405
3513
|
declare const getSearchResultsLayout: _ngrx_store.MemoizedSelector<object, string, (s1: SearchStateSearch) => string>;
|
|
3406
|
-
declare const getSearchConfigAggregations: _ngrx_store.MemoizedSelector<object, AggregationsParams, (s1: SearchStateSearch) => AggregationsParams>;
|
|
3407
|
-
declare const getSearchResults: _ngrx_store.MemoizedSelector<object, CatalogRecord[], (s1: SearchStateSearch) => CatalogRecord[]>;
|
|
3514
|
+
declare const getSearchConfigAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.AggregationsParams, (s1: SearchStateSearch) => geonetwork_ui.AggregationsParams>;
|
|
3515
|
+
declare const getSearchResults: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord[], (s1: SearchStateSearch) => geonetwork_ui.CatalogRecord[]>;
|
|
3408
3516
|
declare const getSearchResultsLoading: _ngrx_store.MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
|
|
3409
|
-
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, Aggregations, (s1: SearchStateSearch) => Aggregations>;
|
|
3517
|
+
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.Aggregations, (s1: SearchStateSearch) => geonetwork_ui.Aggregations>;
|
|
3410
3518
|
declare const getSearchResultsHits: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3411
3519
|
declare const totalPages: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3412
3520
|
declare const currentPage: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
@@ -3523,7 +3631,7 @@ declare class SimpleSearchField implements AbstractSearchField {
|
|
|
3523
3631
|
protected esService: ElasticsearchService;
|
|
3524
3632
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3525
3633
|
protected getAggregations(): AggregationsParams;
|
|
3526
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3634
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3527
3635
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3528
3636
|
getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters | string>;
|
|
3529
3637
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[] | FieldValue | DateRange>;
|
|
@@ -3537,7 +3645,7 @@ declare class TranslatedSearchField extends SimpleSearchField {
|
|
|
3537
3645
|
protected platformService: PlatformServiceInterface;
|
|
3538
3646
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3539
3647
|
protected getTranslation(key: string): Promise<string>;
|
|
3540
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3648
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3541
3649
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3542
3650
|
}
|
|
3543
3651
|
/**
|
|
@@ -3563,7 +3671,7 @@ declare class IsSpatialSearchField extends SimpleSearchField {
|
|
|
3563
3671
|
private translateService;
|
|
3564
3672
|
constructor(injector: Injector);
|
|
3565
3673
|
protected getAggregations(): AggregationsParams;
|
|
3566
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3674
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3567
3675
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3568
3676
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
3569
3677
|
}
|
|
@@ -3571,7 +3679,7 @@ declare class LicenseSearchField extends SimpleSearchField {
|
|
|
3571
3679
|
private translateService;
|
|
3572
3680
|
constructor(injector: Injector);
|
|
3573
3681
|
protected getAggregations(): AggregationsParams;
|
|
3574
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3682
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3575
3683
|
}
|
|
3576
3684
|
declare class OrganizationSearchField implements AbstractSearchField {
|
|
3577
3685
|
private injector;
|
|
@@ -3604,7 +3712,7 @@ declare class AvailableServicesField extends SimpleSearchField {
|
|
|
3604
3712
|
constructor(injector: Injector);
|
|
3605
3713
|
linkProtocolViewFilter: string;
|
|
3606
3714
|
linkProtocolDownloadFilter: string;
|
|
3607
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3715
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3608
3716
|
protected getAggregations(): AggregationsParams;
|
|
3609
3717
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3610
3718
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
@@ -3870,7 +3978,7 @@ declare class InteractiveTableComponent {
|
|
|
3870
3978
|
get gridStyle(): {
|
|
3871
3979
|
'grid-template-columns': string;
|
|
3872
3980
|
};
|
|
3873
|
-
getItemTitle(item: CatalogRecord): "" | "editor.record.lock.
|
|
3981
|
+
getItemTitle(item: CatalogRecord): "" | "editor.record.lock.harvested" | "editor.record.lock.owner";
|
|
3874
3982
|
handleRowClick(item: unknown): void;
|
|
3875
3983
|
static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
|
|
3876
3984
|
static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableComponent, "gn-ui-interactive-table", never, { "items": { "alias": "items"; "required": false; }; "canEditItem": { "alias": "canEditItem"; "required": false; }; "isDraftPage": { "alias": "isDraftPage"; "required": false; }; }, { "itemClick": "itemClick"; }, ["columns"], never, true, never>;
|
|
@@ -4113,11 +4221,16 @@ declare class ImageInputComponent {
|
|
|
4113
4221
|
}
|
|
4114
4222
|
|
|
4115
4223
|
declare class ImageOverlayPreviewComponent {
|
|
4116
|
-
imageUrl: string
|
|
4117
|
-
isPlaceholderShown:
|
|
4118
|
-
|
|
4224
|
+
imageUrl: i0.InputSignal<string>;
|
|
4225
|
+
isPlaceholderShown: i0.OutputEmitterRef<boolean>;
|
|
4226
|
+
private imageTemplate;
|
|
4227
|
+
private overlay;
|
|
4228
|
+
private viewContainerRef;
|
|
4229
|
+
private overlayRef;
|
|
4230
|
+
openLightbox(): void;
|
|
4231
|
+
closeLightbox(): void;
|
|
4119
4232
|
static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
|
|
4120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
|
|
4233
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
|
|
4121
4234
|
}
|
|
4122
4235
|
|
|
4123
4236
|
declare class KindBadgeComponent {
|
|
@@ -4159,6 +4272,20 @@ declare class MarkdownEditorComponent {
|
|
|
4159
4272
|
static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "gn-ui-markdown-editor", never, { "preview": { "alias": "preview"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "textContent": { "alias": "textContent"; "required": false; }; "textAreaExtraClass": { "alias": "textAreaExtraClass"; "required": false; }; }, { "textContentChanged": "textContentChanged"; }, never, never, true, never>;
|
|
4160
4273
|
}
|
|
4161
4274
|
|
|
4275
|
+
declare class KeywordBadgeComponent implements AfterViewInit {
|
|
4276
|
+
private translateService;
|
|
4277
|
+
keyword: Keyword;
|
|
4278
|
+
editable: boolean;
|
|
4279
|
+
keywordClick: EventEmitter<Keyword>;
|
|
4280
|
+
keywordRemove: EventEmitter<Keyword>;
|
|
4281
|
+
badgeComponent: ElementRef;
|
|
4282
|
+
get segments(): string[];
|
|
4283
|
+
get isPlaceWithoutExtent(): boolean;
|
|
4284
|
+
ngAfterViewInit(): void;
|
|
4285
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeywordBadgeComponent, never>;
|
|
4286
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KeywordBadgeComponent, "gn-ui-keyword-badge", never, { "keyword": { "alias": "keyword"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, { "keywordClick": "keywordClick"; "keywordRemove": "keywordRemove"; }, never, never, true, never>;
|
|
4287
|
+
}
|
|
4288
|
+
|
|
4162
4289
|
declare class MarkdownParserComponent {
|
|
4163
4290
|
textContent: string;
|
|
4164
4291
|
whitoutStyles?: boolean;
|
|
@@ -4210,9 +4337,12 @@ declare class MetadataInfoComponent {
|
|
|
4210
4337
|
start: string;
|
|
4211
4338
|
end: string;
|
|
4212
4339
|
};
|
|
4213
|
-
get shownOrganization(): Organization;
|
|
4214
|
-
get resourceContact(): Individual;
|
|
4215
4340
|
fieldReady(propName: string): boolean;
|
|
4341
|
+
get contactGroups(): {
|
|
4342
|
+
role: Role;
|
|
4343
|
+
roleLabel: string;
|
|
4344
|
+
contacts: Individual[];
|
|
4345
|
+
}[];
|
|
4216
4346
|
onKeywordClick(keyword: Keyword): void;
|
|
4217
4347
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
|
|
4218
4348
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataInfoComponent, "gn-ui-metadata-info", never, { "metadata": { "alias": "metadata"; "required": false; }; "incomplete": { "alias": "incomplete"; "required": false; }; }, { "keyword": "keyword"; }, never, never, true, never>;
|
|
@@ -4247,6 +4377,29 @@ declare class MetadataQualityComponent implements OnChanges {
|
|
|
4247
4377
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityComponent, "gn-ui-metadata-quality", never, { "metadata": { "alias": "metadata"; "required": false; }; "smaller": { "alias": "smaller"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "popoverDisplay": { "alias": "popoverDisplay"; "required": false; }; "propsToValidate": { "alias": "propsToValidate"; "required": false; }; "forceComputeScore": { "alias": "forceComputeScore"; "required": false; }; }, {}, never, never, true, never>;
|
|
4248
4378
|
}
|
|
4249
4379
|
|
|
4380
|
+
declare class ContactPillComponent {
|
|
4381
|
+
contact: Individual;
|
|
4382
|
+
private host;
|
|
4383
|
+
overlayOpen: boolean;
|
|
4384
|
+
overlayWidth: number;
|
|
4385
|
+
overlayOffsetX: number;
|
|
4386
|
+
overlayPositions: ConnectedPosition[];
|
|
4387
|
+
get displayName(): string;
|
|
4388
|
+
toggleOverlay(): void;
|
|
4389
|
+
closeOverlay(): void;
|
|
4390
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactPillComponent, never>;
|
|
4391
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactPillComponent, "gn-ui-contact-pill", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
declare class ContactDetailsComponent {
|
|
4395
|
+
contact: Individual;
|
|
4396
|
+
get organization(): Organization;
|
|
4397
|
+
get displayName(): string;
|
|
4398
|
+
get addressLines(): string[];
|
|
4399
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
|
|
4400
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "gn-ui-contact-details", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4401
|
+
}
|
|
4402
|
+
|
|
4250
4403
|
declare class NotificationComponent {
|
|
4251
4404
|
type: 'info' | 'warning' | 'error' | 'success';
|
|
4252
4405
|
title: string;
|
|
@@ -4356,7 +4509,6 @@ type CardSize = 'L' | 'M' | 'S' | 'XS';
|
|
|
4356
4509
|
declare class InternalLinkCardComponent implements OnInit {
|
|
4357
4510
|
protected elementRef: ElementRef<any>;
|
|
4358
4511
|
record: CatalogRecord;
|
|
4359
|
-
linkTarget: string;
|
|
4360
4512
|
linkHref: string;
|
|
4361
4513
|
metadataQualityDisplay: boolean;
|
|
4362
4514
|
favoriteTemplate: TemplateRef<{
|
|
@@ -4373,7 +4525,7 @@ declare class InternalLinkCardComponent implements OnInit {
|
|
|
4373
4525
|
get shouldShowThumbnail(): boolean;
|
|
4374
4526
|
get displayContactIconOnly(): boolean;
|
|
4375
4527
|
static ɵfac: i0.ɵɵFactoryDeclaration<InternalLinkCardComponent, never>;
|
|
4376
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "
|
|
4528
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "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>;
|
|
4377
4529
|
}
|
|
4378
4530
|
|
|
4379
4531
|
declare class ServiceCapabilitiesComponent implements OnInit {
|
|
@@ -4532,7 +4684,7 @@ declare class RecordsMetricsComponent implements OnInit {
|
|
|
4532
4684
|
count: number;
|
|
4533
4685
|
queryString: string;
|
|
4534
4686
|
metricSelect: EventEmitter<RecordMetric>;
|
|
4535
|
-
results$: Observable<TermBucket
|
|
4687
|
+
results$: Observable<TermBucket[]>;
|
|
4536
4688
|
ngOnInit(): void;
|
|
4537
4689
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordsMetricsComponent, never>;
|
|
4538
4690
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordsMetricsComponent, "gn-ui-records-metrics", never, { "field": { "alias": "field"; "required": false; }; "count": { "alias": "count"; "required": false; }; "queryString": { "alias": "queryString"; "required": false; }; }, { "metricSelect": "metricSelect"; }, never, never, true, never>;
|
|
@@ -4629,7 +4781,7 @@ declare class ResultsTableContainerComponent implements OnDestroy {
|
|
|
4629
4781
|
duplicateRecord: EventEmitter<CatalogRecord>;
|
|
4630
4782
|
subscription: Subscription;
|
|
4631
4783
|
selectedRecords$: rxjs.BehaviorSubject<string[]>;
|
|
4632
|
-
sortBy$: Observable<SortByField>;
|
|
4784
|
+
sortBy$: Observable<geonetwork_ui.SortByField>;
|
|
4633
4785
|
hasDraft: (record: CatalogRecord) => boolean;
|
|
4634
4786
|
canDuplicate: (record: CatalogRecord) => boolean;
|
|
4635
4787
|
canDelete: (record: CatalogRecord) => Observable<boolean>;
|
|
@@ -4687,22 +4839,6 @@ declare class FeatureRecordModule {
|
|
|
4687
4839
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
|
|
4688
4840
|
}
|
|
4689
4841
|
|
|
4690
|
-
type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
|
|
4691
|
-
declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
|
|
4692
|
-
type InputChartType = (typeof CHART_TYPE_VALUES)[number];
|
|
4693
|
-
interface DatavizChartConfigModel {
|
|
4694
|
-
xProperty: string;
|
|
4695
|
-
yProperty: string;
|
|
4696
|
-
aggregation: AggregationTypes;
|
|
4697
|
-
chartType: InputChartType;
|
|
4698
|
-
}
|
|
4699
|
-
interface DatavizConfigModel {
|
|
4700
|
-
view: string;
|
|
4701
|
-
source: DatasetOnlineResource;
|
|
4702
|
-
chartConfig?: DatavizChartConfigModel;
|
|
4703
|
-
styleTMSIndex?: number;
|
|
4704
|
-
}
|
|
4705
|
-
|
|
4706
4842
|
type DataItem = Feature;
|
|
4707
4843
|
declare class FetchError {
|
|
4708
4844
|
type: 'http' | 'forbidden' | 'network' | 'parse' | 'unsupportedType' | 'unknown';
|
|
@@ -4874,7 +5010,7 @@ declare class ChartViewComponent {
|
|
|
4874
5010
|
set link(value: DatasetOnlineResource);
|
|
4875
5011
|
private currentLink$;
|
|
4876
5012
|
set aggregation(value: FieldAggregation[0]);
|
|
4877
|
-
aggregation$: BehaviorSubject<"
|
|
5013
|
+
aggregation$: BehaviorSubject<"count" | "sum" | "min" | "max" | "average">;
|
|
4878
5014
|
set xProperty(value: string);
|
|
4879
5015
|
xProperty$: BehaviorSubject<string>;
|
|
4880
5016
|
set yProperty(value: string);
|
|
@@ -4883,7 +5019,7 @@ declare class ChartViewComponent {
|
|
|
4883
5019
|
chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
|
|
4884
5020
|
set userChartConfig(config: DatavizChartConfigModel);
|
|
4885
5021
|
chartConfig$: Observable<{
|
|
4886
|
-
aggregation: "
|
|
5022
|
+
aggregation: "count" | "sum" | "min" | "max" | "average";
|
|
4887
5023
|
xProperty: string;
|
|
4888
5024
|
yProperty: string;
|
|
4889
5025
|
chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
|
|
@@ -4988,15 +5124,6 @@ declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
|
4988
5124
|
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>;
|
|
4989
5125
|
}
|
|
4990
5126
|
|
|
4991
|
-
declare const tableItemsFixture: {
|
|
4992
|
-
items: DataItem[];
|
|
4993
|
-
properties: PropertyInfo[];
|
|
4994
|
-
};
|
|
4995
|
-
declare const someHabTableItemFixture: {
|
|
4996
|
-
items: DataItem[];
|
|
4997
|
-
properties: PropertyInfo[];
|
|
4998
|
-
};
|
|
4999
|
-
|
|
5000
5127
|
declare class FigureComponent {
|
|
5001
5128
|
icon: string;
|
|
5002
5129
|
title: string;
|
|
@@ -5095,16 +5222,34 @@ declare class MapLegendComponent implements OnChanges {
|
|
|
5095
5222
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
|
|
5096
5223
|
}
|
|
5097
5224
|
|
|
5225
|
+
type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
|
|
5226
|
+
/**
|
|
5227
|
+
* Default style for a spatial-extent layer: a solid black outline over a
|
|
5228
|
+
* translucent grey fill.
|
|
5229
|
+
*/
|
|
5230
|
+
declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
|
|
5231
|
+
/**
|
|
5232
|
+
* Builds a GeoJSON map layer drawing the given spatial extents: each extent is
|
|
5233
|
+
* rendered from its own geometry or, when only a bounding box is available,
|
|
5234
|
+
* from a polygon derived from that box.
|
|
5235
|
+
*
|
|
5236
|
+
* @returns the layer, or `null` when none of the extents can be represented.
|
|
5237
|
+
*/
|
|
5238
|
+
declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
|
|
5239
|
+
label?: string;
|
|
5240
|
+
clickable?: boolean;
|
|
5241
|
+
style?: SpatialExtentLayerStyle;
|
|
5242
|
+
}): MapContextLayer | null;
|
|
5098
5243
|
declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
|
|
5099
5244
|
declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
|
|
5100
5245
|
declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
|
|
5101
5246
|
|
|
5102
5247
|
declare class SpatialExtentComponent {
|
|
5248
|
+
private _cdr;
|
|
5103
5249
|
set spatialExtents(value: DatasetSpatialExtent[]);
|
|
5104
5250
|
spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
|
|
5105
5251
|
mapContext$: Observable<MapContext>;
|
|
5106
5252
|
error: string;
|
|
5107
|
-
bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
|
|
5108
5253
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
|
|
5109
5254
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
|
|
5110
5255
|
}
|
|
@@ -5439,8 +5584,8 @@ interface Label {
|
|
|
5439
5584
|
interface FormatProduit {
|
|
5440
5585
|
title: string;
|
|
5441
5586
|
update: string;
|
|
5442
|
-
format: Array<
|
|
5443
|
-
zone: Array<
|
|
5587
|
+
format: Array<GpfApiDlTermBucket>;
|
|
5588
|
+
zone: Array<GpfApiDlTermBucket>;
|
|
5444
5589
|
}
|
|
5445
5590
|
interface FormatSortieProduit {
|
|
5446
5591
|
label: string;
|
|
@@ -5455,7 +5600,7 @@ interface ListChoice {
|
|
|
5455
5600
|
editionDate: Choice$1[];
|
|
5456
5601
|
crs: Choice$1[];
|
|
5457
5602
|
}
|
|
5458
|
-
interface
|
|
5603
|
+
interface GpfApiDlTermBucket {
|
|
5459
5604
|
term: string;
|
|
5460
5605
|
label: string | number;
|
|
5461
5606
|
}
|
|
@@ -5476,9 +5621,9 @@ declare class GpfApiDlComponent implements OnInit {
|
|
|
5476
5621
|
page$: BehaviorSubject<number>;
|
|
5477
5622
|
url: string;
|
|
5478
5623
|
choices: {
|
|
5479
|
-
zone:
|
|
5480
|
-
format:
|
|
5481
|
-
category:
|
|
5624
|
+
zone: GpfApiDlTermBucket[];
|
|
5625
|
+
format: GpfApiDlTermBucket[];
|
|
5626
|
+
category: GpfApiDlTermBucket[];
|
|
5482
5627
|
};
|
|
5483
5628
|
bucketPromisesZone: Choice$1[];
|
|
5484
5629
|
bucketPromisesFormat: Choice$1[];
|
|
@@ -5715,7 +5860,8 @@ interface FormFieldConfig {
|
|
|
5715
5860
|
}
|
|
5716
5861
|
type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
|
|
5717
5862
|
type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
|
|
5718
|
-
type
|
|
5863
|
+
type EditableContactDetailsSpecifier = `contact:editableDetails`;
|
|
5864
|
+
type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | EditableContactDetailsSpecifier;
|
|
5719
5865
|
type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
|
|
5720
5866
|
interface EditorFieldIdentification {
|
|
5721
5867
|
model?: CatalogRecordKeys;
|
|
@@ -5725,20 +5871,20 @@ interface EditorFieldIdentification {
|
|
|
5725
5871
|
interface EditorField extends EditorFieldIdentification {
|
|
5726
5872
|
formFieldConfig: FormFieldConfig;
|
|
5727
5873
|
gridColumnSpan?: number;
|
|
5728
|
-
hidden?: boolean;
|
|
5874
|
+
hidden?: boolean | EditorFieldExpression;
|
|
5729
5875
|
onSaveProcess?: EditorFieldExpression;
|
|
5730
5876
|
}
|
|
5731
5877
|
interface EditorSection {
|
|
5732
5878
|
labelKey?: string;
|
|
5733
5879
|
descriptionKey?: string;
|
|
5734
|
-
hidden
|
|
5880
|
+
hidden?: boolean | EditorFieldExpression;
|
|
5735
5881
|
fields: EditorField[];
|
|
5736
5882
|
}
|
|
5737
5883
|
interface EditorFieldPage {
|
|
5738
5884
|
labelKey?: string;
|
|
5739
5885
|
sections: EditorSection[];
|
|
5740
5886
|
}
|
|
5741
|
-
interface EditorConfig {
|
|
5887
|
+
interface EditorConfig$1 {
|
|
5742
5888
|
pages: EditorFieldPage[];
|
|
5743
5889
|
}
|
|
5744
5890
|
|
|
@@ -5773,7 +5919,11 @@ declare const updateRecordLanguages: _ngrx_store.ActionCreator<"[Editor] Update
|
|
|
5773
5919
|
otherLanguages: LanguageCode[];
|
|
5774
5920
|
} & _ngrx_store.Action<"[Editor] Update record languages">>;
|
|
5775
5921
|
declare const markRecordAsChanged: _ngrx_store.ActionCreator<"[Editor] Mark record as changed", () => _ngrx_store.Action<"[Editor] Mark record as changed">>;
|
|
5776
|
-
declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (
|
|
5922
|
+
declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (props: {
|
|
5923
|
+
publish: boolean;
|
|
5924
|
+
}) => {
|
|
5925
|
+
publish: boolean;
|
|
5926
|
+
} & _ngrx_store.Action<"[Editor] Save record">>;
|
|
5777
5927
|
declare const saveRecordSuccess: _ngrx_store.ActionCreator<"[Editor] Save record success", () => _ngrx_store.Action<"[Editor] Save record success">>;
|
|
5778
5928
|
declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record failure", (props: {
|
|
5779
5929
|
error: SaveRecordError;
|
|
@@ -5783,9 +5933,9 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
|
|
|
5783
5933
|
declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5784
5934
|
declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
|
|
5785
5935
|
declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
|
|
5786
|
-
configuration: EditorConfig;
|
|
5936
|
+
configuration: EditorConfig$1;
|
|
5787
5937
|
}) => {
|
|
5788
|
-
configuration: EditorConfig;
|
|
5938
|
+
configuration: EditorConfig$1;
|
|
5789
5939
|
} & _ngrx_store.Action<"[Editor] Set editor configuration">>;
|
|
5790
5940
|
declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
|
|
5791
5941
|
page: number;
|
|
@@ -5825,6 +5975,11 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
|
|
|
5825
5975
|
}) => {
|
|
5826
5976
|
canEditRecord: boolean;
|
|
5827
5977
|
} & _ngrx_store.Action<"[Editor] User can edit record">>;
|
|
5978
|
+
declare const setFocusedField: _ngrx_store.ActionCreator<"[Editor] Set focused field", (props: {
|
|
5979
|
+
model: CatalogRecordKeys;
|
|
5980
|
+
}) => {
|
|
5981
|
+
model: CatalogRecordKeys;
|
|
5982
|
+
} & _ngrx_store.Action<"[Editor] Set focused field">>;
|
|
5828
5983
|
|
|
5829
5984
|
declare class EditorFacade {
|
|
5830
5985
|
private readonly store;
|
|
@@ -5838,20 +5993,23 @@ declare class EditorFacade {
|
|
|
5838
5993
|
currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
|
|
5839
5994
|
draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5840
5995
|
currentPage$: rxjs.Observable<number>;
|
|
5841
|
-
editorConfig$: rxjs.Observable<EditorConfig>;
|
|
5996
|
+
editorConfig$: rxjs.Observable<EditorConfig$1>;
|
|
5842
5997
|
hasRecordChanged$: rxjs.Observable<{
|
|
5843
5998
|
user: string;
|
|
5844
5999
|
date: Date;
|
|
5845
6000
|
}>;
|
|
5846
6001
|
isPublished$: rxjs.Observable<boolean>;
|
|
5847
6002
|
canEditRecord$: rxjs.Observable<boolean>;
|
|
6003
|
+
focusedField$: rxjs.Observable<CatalogRecordKeys>;
|
|
5848
6004
|
openRecord(record: CatalogRecord, recordSource: string): void;
|
|
5849
6005
|
saveRecord(): void;
|
|
6006
|
+
saveAndPublishRecord(): void;
|
|
5850
6007
|
undoRecordDraft(): void;
|
|
5851
6008
|
updateRecordField(field: string, value: unknown): void;
|
|
5852
6009
|
updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
|
|
5853
|
-
setConfiguration(configuration: EditorConfig): void;
|
|
6010
|
+
setConfiguration(configuration: EditorConfig$1): void;
|
|
5854
6011
|
setCurrentPage(page: number): void;
|
|
6012
|
+
setFocusedField(model: CatalogRecordKeys): void;
|
|
5855
6013
|
setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
|
|
5856
6014
|
checkHasRecordChanged(record: CatalogRecord): void;
|
|
5857
6015
|
isPublished(isPublished: boolean): void;
|
|
@@ -5875,7 +6033,7 @@ interface EditorState {
|
|
|
5875
6033
|
saving: boolean;
|
|
5876
6034
|
saveError: SaveRecordError | null;
|
|
5877
6035
|
changedSinceSave: boolean;
|
|
5878
|
-
editorConfig: EditorConfig;
|
|
6036
|
+
editorConfig: EditorConfig$1;
|
|
5879
6037
|
currentPage: number;
|
|
5880
6038
|
hasRecordChanged: {
|
|
5881
6039
|
user: string;
|
|
@@ -5891,12 +6049,12 @@ declare const initialEditorState: EditorState;
|
|
|
5891
6049
|
declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
|
|
5892
6050
|
|
|
5893
6051
|
declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
|
|
5894
|
-
declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
|
|
6052
|
+
declare const selectRecord: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord, (s1: EditorState) => geonetwork_ui.CatalogRecord>;
|
|
5895
6053
|
declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
|
|
5896
6054
|
declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5897
6055
|
declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
|
|
5898
6056
|
declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5899
|
-
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
|
|
6057
|
+
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig$1, (s1: EditorState) => EditorConfig$1>;
|
|
5900
6058
|
declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
|
|
5901
6059
|
declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
|
|
5902
6060
|
declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
|
|
@@ -5934,18 +6092,20 @@ declare class ImportRecordComponent {
|
|
|
5934
6092
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
|
|
5935
6093
|
}
|
|
5936
6094
|
|
|
5937
|
-
declare class MetadataQualityPanelComponent
|
|
6095
|
+
declare class MetadataQualityPanelComponent {
|
|
6096
|
+
facade: EditorFacade;
|
|
5938
6097
|
propsToValidate: ValidatorMapperKeys[];
|
|
5939
|
-
propertiesByPage
|
|
6098
|
+
propertiesByPage$: rxjs.Observable<{
|
|
5940
6099
|
label: string;
|
|
5941
6100
|
value: boolean;
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5946
|
-
|
|
6101
|
+
model: CatalogRecordKeys;
|
|
6102
|
+
}[][]>;
|
|
6103
|
+
onCriterionClick(property: {
|
|
6104
|
+
value: boolean;
|
|
6105
|
+
model: CatalogRecordKeys;
|
|
6106
|
+
}): void;
|
|
5947
6107
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
|
|
5948
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {
|
|
6108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {}, {}, never, never, true, never>;
|
|
5949
6109
|
}
|
|
5950
6110
|
|
|
5951
6111
|
declare class MultilingualPanelComponent implements OnDestroy {
|
|
@@ -5990,6 +6150,14 @@ declare class MultilingualPanelComponent implements OnDestroy {
|
|
|
5990
6150
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
|
|
5991
6151
|
}
|
|
5992
6152
|
|
|
6153
|
+
declare class FieldFocusDirective {
|
|
6154
|
+
gnUiFieldFocusGlowClass: string;
|
|
6155
|
+
private el;
|
|
6156
|
+
focusField(focusInnerTarget?: boolean): void;
|
|
6157
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
|
|
6158
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
6159
|
+
}
|
|
6160
|
+
|
|
5993
6161
|
declare class FormFieldKeywordsComponent {
|
|
5994
6162
|
private editorFacade;
|
|
5995
6163
|
value: Keyword[];
|
|
@@ -6111,6 +6279,7 @@ declare class FormFieldSpatialExtentComponent {
|
|
|
6111
6279
|
|
|
6112
6280
|
declare class FormFieldComponent {
|
|
6113
6281
|
uniqueIdentifier: string;
|
|
6282
|
+
recordKind: RecordKind;
|
|
6114
6283
|
model: CatalogRecordKeys;
|
|
6115
6284
|
modelSpecifier: FieldModelSpecifier;
|
|
6116
6285
|
componentName: FormFieldComponentName;
|
|
@@ -6119,6 +6288,7 @@ declare class FormFieldComponent {
|
|
|
6119
6288
|
valueChange: EventEmitter<unknown>;
|
|
6120
6289
|
titleInput: ElementRef;
|
|
6121
6290
|
isOpenData: boolean;
|
|
6291
|
+
fieldFocus: FieldFocusDirective;
|
|
6122
6292
|
toggleIsOpenData(event: boolean): void;
|
|
6123
6293
|
focusTitleInput(): void;
|
|
6124
6294
|
get withoutWrapper(): boolean;
|
|
@@ -6135,7 +6305,7 @@ declare class FormFieldComponent {
|
|
|
6135
6305
|
get valueAsResourceIdentifierCode(): string;
|
|
6136
6306
|
handleResourceIdentifierChange(code: string): void;
|
|
6137
6307
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6138
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true,
|
|
6308
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "recordKind": { "alias": "recordKind"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, [{ directive: typeof FieldFocusDirective; inputs: {}; outputs: {}; }]>;
|
|
6139
6309
|
}
|
|
6140
6310
|
|
|
6141
6311
|
declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
|
|
@@ -6159,95 +6329,124 @@ declare class FormFieldTopicsComponent {
|
|
|
6159
6329
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
6160
6330
|
}
|
|
6161
6331
|
|
|
6162
|
-
declare class RecordFormComponent {
|
|
6332
|
+
declare class RecordFormComponent implements OnInit, OnDestroy {
|
|
6163
6333
|
facade: EditorFacade;
|
|
6334
|
+
notifications: NotificationsService;
|
|
6335
|
+
subscription: Subscription;
|
|
6164
6336
|
recordUniqueIdentifier$: rxjs.Observable<string>;
|
|
6337
|
+
recordKind$: rxjs.Observable<"dataset" | "service" | "reuse">;
|
|
6338
|
+
focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
|
|
6339
|
+
formFields: Signal<readonly FormFieldComponent[]>;
|
|
6340
|
+
sectionFocusDirectives: Signal<readonly FieldFocusDirective[]>;
|
|
6341
|
+
focusField(model: CatalogRecordKeys, sectionIndex: number): void;
|
|
6342
|
+
ngOnInit(): void;
|
|
6343
|
+
ngOnDestroy(): void;
|
|
6165
6344
|
handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
|
|
6166
6345
|
fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
|
|
6167
6346
|
sectionTracker(index: number, section: EditorSectionWithValues): string;
|
|
6347
|
+
getFieldLocation(model: CatalogRecordKeys): Promise<{
|
|
6348
|
+
page: number;
|
|
6349
|
+
section: number;
|
|
6350
|
+
} | null>;
|
|
6351
|
+
private recordSignal;
|
|
6352
|
+
private expressionCache;
|
|
6353
|
+
evaluateExpression(expressionOrValue: string | EditorFieldValue): Signal<EditorFieldValue>;
|
|
6168
6354
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
|
|
6169
6355
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
|
|
6170
6356
|
}
|
|
6171
6357
|
|
|
6358
|
+
declare class OnlineServiceResourceInputComponent {
|
|
6359
|
+
private cdr;
|
|
6360
|
+
_service: DatasetServiceDistribution;
|
|
6361
|
+
set service(service: DatasetServiceDistribution);
|
|
6362
|
+
protocolHint?: string;
|
|
6363
|
+
disabled?: boolean;
|
|
6364
|
+
modifyMode?: boolean;
|
|
6365
|
+
protocolOptions?: ServiceProtocol[];
|
|
6366
|
+
serviceChange: EventEmitter<DatasetServiceDistribution>;
|
|
6367
|
+
errorMessage: boolean;
|
|
6368
|
+
loading: boolean;
|
|
6369
|
+
resetUrlOnChange: number;
|
|
6370
|
+
layersSubject: BehaviorSubject<{
|
|
6371
|
+
name?: string;
|
|
6372
|
+
title?: string;
|
|
6373
|
+
}[]>;
|
|
6374
|
+
layers$: Observable<{
|
|
6375
|
+
name?: string;
|
|
6376
|
+
title?: string;
|
|
6377
|
+
}[]>;
|
|
6378
|
+
allProtocolOptions: {
|
|
6379
|
+
label: string;
|
|
6380
|
+
value: ServiceProtocol;
|
|
6381
|
+
}[];
|
|
6382
|
+
get availableProtocolOptions(): any[];
|
|
6383
|
+
get activeLayerSuggestion(): boolean;
|
|
6384
|
+
handleUrlValueChange(url: string): void;
|
|
6385
|
+
handleUploadClick(url: string): Promise<void>;
|
|
6386
|
+
resetAllFormFields(): void;
|
|
6387
|
+
resetLayersSuggestion(): void;
|
|
6388
|
+
submit(): void;
|
|
6389
|
+
getIdentifierPlaceholder(): string;
|
|
6390
|
+
/**
|
|
6391
|
+
* gn-ui-autocomplete
|
|
6392
|
+
*/
|
|
6393
|
+
displayWithFn(item: {
|
|
6394
|
+
name: string;
|
|
6395
|
+
title: string;
|
|
6396
|
+
}): string;
|
|
6397
|
+
/**
|
|
6398
|
+
* gn-ui-autocomplete
|
|
6399
|
+
*/
|
|
6400
|
+
autoCompleteAction: (query: string) => Observable<{
|
|
6401
|
+
name?: string;
|
|
6402
|
+
title?: string;
|
|
6403
|
+
}[]>;
|
|
6404
|
+
/**
|
|
6405
|
+
* gn-ui-autocomplete
|
|
6406
|
+
*/
|
|
6407
|
+
handleSelectValue(val: {
|
|
6408
|
+
name: string;
|
|
6409
|
+
title: string;
|
|
6410
|
+
}): void;
|
|
6411
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineServiceResourceInputComponent, never>;
|
|
6412
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnlineServiceResourceInputComponent, "gn-ui-online-service-resource-input", never, { "service": { "alias": "service"; "required": false; }; "protocolHint": { "alias": "protocolHint"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "modifyMode": { "alias": "modifyMode"; "required": false; }; "protocolOptions": { "alias": "protocolOptions"; "required": false; }; }, { "serviceChange": "serviceChange"; }, never, ["*"], true, never>;
|
|
6413
|
+
}
|
|
6414
|
+
|
|
6415
|
+
declare class OnlineResourceCardComponent {
|
|
6416
|
+
onlineResource: OnlineResource;
|
|
6417
|
+
modifyClick: EventEmitter<OnlineResource>;
|
|
6418
|
+
get title(): string;
|
|
6419
|
+
get subtitle(): string;
|
|
6420
|
+
get fileSize(): string;
|
|
6421
|
+
get identifierInService(): string;
|
|
6422
|
+
getFormat(onlineResource: OnlineLinkResource | DatasetDownloadDistribution): string;
|
|
6423
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineResourceCardComponent, never>;
|
|
6424
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnlineResourceCardComponent, "gn-ui-online-resource-card", never, { "onlineResource": { "alias": "onlineResource"; "required": false; }; }, { "modifyClick": "modifyClick"; }, never, never, true, never>;
|
|
6425
|
+
}
|
|
6426
|
+
|
|
6172
6427
|
declare class FeatureEditorModule {
|
|
6173
6428
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
|
|
6174
6429
|
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
|
|
6175
6430
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
|
|
6176
6431
|
}
|
|
6177
6432
|
|
|
6433
|
+
interface ISOTopic {
|
|
6434
|
+
value: string;
|
|
6435
|
+
label: string;
|
|
6436
|
+
}
|
|
6437
|
+
declare const DEFAULT_CONFIGURATION: EditorConfig$1;
|
|
6178
6438
|
/**
|
|
6179
|
-
*
|
|
6180
|
-
* To add a new field, you need to create a new EditorField object in the fields part of this file.
|
|
6181
|
-
* Then add it to the corresponding section in the sections part of this file.
|
|
6182
|
-
* Finally, add the section to the corresponding page in the pages part of this file.
|
|
6183
|
-
*/
|
|
6184
|
-
/************************************************************
|
|
6185
|
-
*************** FIELDS *****************
|
|
6186
|
-
************************************************************
|
|
6187
|
-
*/
|
|
6188
|
-
declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
|
|
6189
|
-
declare const CONSTRAINTS_SHORTCUTS: EditorField;
|
|
6190
|
-
declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
|
|
6191
|
-
declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
|
|
6192
|
-
declare const OTHER_CONSTRAINTS_FIELD: EditorField;
|
|
6193
|
-
declare const RECORD_LICENSE_FIELD: EditorField;
|
|
6194
|
-
declare const RECORD_KEYWORDS_FIELD: EditorField;
|
|
6195
|
-
declare const RECORD_TOPICS_FIELD: EditorField;
|
|
6196
|
-
declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
|
|
6197
|
-
declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
|
|
6198
|
-
declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
|
|
6199
|
-
declare const RECORD_UPDATED_FIELD: EditorField;
|
|
6200
|
-
declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
|
|
6201
|
-
declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
|
|
6202
|
-
declare const RECORD_TITLE_FIELD: EditorField;
|
|
6203
|
-
declare const RECORD_ABSTRACT_FIELD: EditorField;
|
|
6204
|
-
declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
|
|
6205
|
-
declare const CONTACTS: EditorField;
|
|
6206
|
-
declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
|
|
6207
|
-
declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
|
|
6208
|
-
declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
|
|
6209
|
-
declare const RECORD_ONLINE_RESOURCES: EditorField;
|
|
6210
|
-
declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
|
|
6211
|
-
/************************************************************
|
|
6212
|
-
*************** SECTIONS *****************
|
|
6213
|
-
************************************************************
|
|
6214
|
-
*/
|
|
6215
|
-
declare const TITLE_SECTION: EditorSection;
|
|
6216
|
-
declare const ABOUT_SECTION: EditorSection;
|
|
6217
|
-
declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
|
|
6218
|
-
declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
|
|
6219
|
-
declare const ANNEXES_SECTION: EditorSection;
|
|
6220
|
-
declare const CLASSIFICATION_SECTION: EditorSection;
|
|
6221
|
-
declare const TOPICS_SECTION: EditorSection;
|
|
6222
|
-
declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
|
|
6223
|
-
declare const DATA_MANAGERS_SECTION: EditorSection;
|
|
6224
|
-
declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
|
|
6225
|
-
/************************************************************
|
|
6226
|
-
*************** PAGES *****************
|
|
6227
|
-
************************************************************
|
|
6228
|
-
*/
|
|
6229
|
-
declare const DEFAULT_CONFIGURATION: EditorConfig;
|
|
6230
|
-
/************************************************************
|
|
6231
|
-
*************** LICENSES **************
|
|
6232
|
-
************************************************************
|
|
6439
|
+
* OTHER SETTINGS
|
|
6233
6440
|
*/
|
|
6234
6441
|
declare const AVAILABLE_LICENSES: string[];
|
|
6235
6442
|
declare const OPEN_DATA_LICENSE = "etalab";
|
|
6236
6443
|
declare const MAX_UPLOAD_SIZE_MB = 10;
|
|
6237
|
-
/************************************************************
|
|
6238
|
-
*************** SPATIAL SCOPE ************
|
|
6239
|
-
************************************************************
|
|
6240
|
-
*/
|
|
6241
6444
|
declare const SPATIAL_SCOPES: Keyword[];
|
|
6242
|
-
|
|
6243
|
-
*************** INSPIRE TOPICS **************
|
|
6244
|
-
************************************************************
|
|
6245
|
-
*/
|
|
6246
|
-
declare const INSPIRE_TOPICS: INSPIRE_topic[];
|
|
6445
|
+
declare const ISO_TOPICS: ISOTopic[];
|
|
6247
6446
|
|
|
6248
6447
|
declare class EditorService {
|
|
6249
6448
|
private recordsRepository;
|
|
6250
|
-
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
|
|
6449
|
+
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1, publish: boolean): Observable<[CatalogRecord, string]>;
|
|
6251
6450
|
saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
|
|
6252
6451
|
undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
|
|
6253
6452
|
hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
|
|
@@ -6442,7 +6641,7 @@ declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
|
6442
6641
|
private renderer;
|
|
6443
6642
|
popoverContent: ElementRef;
|
|
6444
6643
|
content: string | TemplateRef<any>;
|
|
6445
|
-
theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
|
|
6644
|
+
theme: 'light' | 'light-border' | 'translucent' | 'material' | 'dark' | '';
|
|
6446
6645
|
private tippyInstance;
|
|
6447
6646
|
private view;
|
|
6448
6647
|
private getContent;
|
|
@@ -6487,17 +6686,8 @@ declare class SpinningLoaderComponent {
|
|
|
6487
6686
|
|
|
6488
6687
|
declare function provideI18n(config?: TranslateModuleConfig, useLocalStorage?: boolean): EnvironmentProviders;
|
|
6489
6688
|
|
|
6490
|
-
/**
|
|
6491
|
-
* This loader will rely on JSON files in the app assets
|
|
6492
|
-
* Implements a fallback on default lang if translated labels are empty
|
|
6493
|
-
*/
|
|
6494
|
-
declare class FileTranslateLoader extends TranslateHttpLoader {
|
|
6495
|
-
getTranslation(lang: string): rxjs.Observable<{}>;
|
|
6496
|
-
}
|
|
6497
|
-
|
|
6498
6689
|
declare const DEFAULT_LANG = "en";
|
|
6499
6690
|
declare const LANGUAGE_STORAGE_KEY = "geonetwork-ui-language";
|
|
6500
|
-
declare function HttpLoaderFactory(http: HttpClient): FileTranslateLoader;
|
|
6501
6691
|
declare const TRANSLATE_DEFAULT_CONFIG: TranslateModuleConfig;
|
|
6502
6692
|
/**
|
|
6503
6693
|
* This config will print translation keys in the UI directly; used to identify which keys are used
|
|
@@ -6511,8 +6701,12 @@ declare class I18nInterceptor implements HttpInterceptor {
|
|
|
6511
6701
|
static ɵprov: i0.ɵɵInjectableDeclaration<I18nInterceptor>;
|
|
6512
6702
|
}
|
|
6513
6703
|
|
|
6514
|
-
|
|
6515
|
-
|
|
6704
|
+
/**
|
|
6705
|
+
* This loader will rely on JSON files in the app assets
|
|
6706
|
+
* Implements a fallback on default lang if translated labels are empty
|
|
6707
|
+
*/
|
|
6708
|
+
declare class FileTranslateLoader extends TranslateHttpLoader {
|
|
6709
|
+
getTranslation(lang: string): rxjs.Observable<{}>;
|
|
6516
6710
|
}
|
|
6517
6711
|
|
|
6518
6712
|
declare function dropEmptyTranslations(translations: any): {};
|
|
@@ -6613,6 +6807,7 @@ declare function toLang2(lang: LanguageCodeLike): LanguageCode2 | string;
|
|
|
6613
6807
|
interface GlobalConfig {
|
|
6614
6808
|
GN4_API_URL: string;
|
|
6615
6809
|
DATAHUB_URL?: string;
|
|
6810
|
+
EDIT_URL_TEMPLATE?: string;
|
|
6616
6811
|
PROXY_PATH?: string;
|
|
6617
6812
|
METADATA_LANGUAGE?: string;
|
|
6618
6813
|
LOGIN_URL?: string;
|
|
@@ -6662,6 +6857,11 @@ interface SearchPreset {
|
|
|
6662
6857
|
interface MetadataQualityConfig {
|
|
6663
6858
|
ENABLED: boolean;
|
|
6664
6859
|
}
|
|
6860
|
+
type NewRecordStandard = 'iso19139' | 'iso19115-3';
|
|
6861
|
+
interface EditorConfig {
|
|
6862
|
+
NEW_RECORD_DEFAULT_LANGUAGE?: string;
|
|
6863
|
+
NEW_RECORD_STANDARD?: NewRecordStandard;
|
|
6864
|
+
}
|
|
6665
6865
|
type CustomTranslations = {
|
|
6666
6866
|
[translationKey: string]: string;
|
|
6667
6867
|
};
|
|
@@ -6681,35 +6881,17 @@ interface SearchConfig {
|
|
|
6681
6881
|
FILTER_GEOMETRY?: Geometry;
|
|
6682
6882
|
}
|
|
6683
6883
|
|
|
6684
|
-
/**
|
|
6685
|
-
* This loader extends the default one based on JSON files but also loads custom translations
|
|
6686
|
-
* defined in the app configuration
|
|
6687
|
-
* Implements a fallback on default lang if translated labels are empty
|
|
6688
|
-
*/
|
|
6689
|
-
declare class FileWithOverridesTranslateLoader extends FileTranslateLoader {
|
|
6690
|
-
getTranslation(lang: string): rxjs.Observable<{}>;
|
|
6691
|
-
}
|
|
6692
|
-
|
|
6693
6884
|
declare function getGlobalConfig(): GlobalConfig;
|
|
6694
6885
|
declare function getThemeConfig(): ThemeConfig;
|
|
6695
6886
|
declare function getOptionalMapConfig(): MapConfig | null;
|
|
6696
6887
|
declare function getOptionalSearchConfig(): SearchConfig | null;
|
|
6888
|
+
declare function getOptionalEditorConfig(): EditorConfig | null;
|
|
6697
6889
|
declare function getMetadataQualityConfig(): MetadataQualityConfig;
|
|
6698
6890
|
declare function getCustomTranslations(langCode: string): CustomTranslations;
|
|
6699
6891
|
declare function loadAppConfig(configUrl?: string): Promise<void>;
|
|
6700
6892
|
declare function isConfigLoaded(): boolean;
|
|
6701
6893
|
declare function _reset(): void;
|
|
6702
|
-
declare const TRANSLATE_WITH_OVERRIDES_CONFIG:
|
|
6703
|
-
compiler: {
|
|
6704
|
-
provide: typeof TranslateCompiler;
|
|
6705
|
-
useClass: typeof TranslateMessageFormatCompiler;
|
|
6706
|
-
};
|
|
6707
|
-
loader: {
|
|
6708
|
-
provide: typeof TranslateLoader;
|
|
6709
|
-
useFactory: (http: HttpClient) => FileWithOverridesTranslateLoader;
|
|
6710
|
-
deps: (typeof HttpClient)[];
|
|
6711
|
-
};
|
|
6712
|
-
};
|
|
6894
|
+
declare const TRANSLATE_WITH_OVERRIDES_CONFIG: TranslateModuleConfig;
|
|
6713
6895
|
|
|
6714
6896
|
declare const okAppConfigFixture: () => string;
|
|
6715
6897
|
declare const appConfigWithTranslationFixture: () => string;
|
|
@@ -6722,6 +6904,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6722
6904
|
|
|
6723
6905
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6724
6906
|
|
|
6725
|
-
export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6726
|
-
export type { AggregationResult, AggregationsResults, AutocompleteItem, BoundingBox, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DateRange, DropdownChoice, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldType, FieldValue, FieldValues, FileFormat, FiltersAggregationResult, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, HasPath, HistogramAggregationResult, Iso3Langs, KeywordApiResponse, Label, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, NestedAggregationResult, OrganizationsStrategy, Paginable, PropertyInfo, RecordAsXml, RecordAttachment, RecordMetric, RequestFields, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchPreset, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, SortOrder, SortParams, SourceWithUnknownProps, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UploadEvent, ValidatorMapperKeys };
|
|
6907
|
+
export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, bboxToPolygon, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, createSpatialExtentLayer, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getKeywordHierarchyPath, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, sortByFromString, sortByToString, sortByToStrings, spatialExtentToGeometry, spatialExtentsToFeatureCollection, stripHtml, stripNamespace, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6908
|
+
export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
|
|
6727
6909
|
//# sourceMappingURL=index.d.ts.map
|