geonetwork-ui 2.10.0-dev.d3efc146c → 2.10.0-dev.dc20f8516
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 +942 -375
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +176 -38
- package/index.d.ts.map +1 -1
- package/package.json +3 -3
- 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/gn4.converter.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 +4 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +68 -34
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +46 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +11 -5
- 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 +5 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +0 -1
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +10 -1
- 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/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/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 +32 -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-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-topics/form-field-topics.component.ts +2 -2
- 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 +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +5 -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 +5 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +77 -5
- package/src/libs/feature/editor/src/lib/fields.config.ts +60 -47
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +4 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
- 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/map-view/map-view.component.ts +9 -1
- package/src/libs/ui/elements/src/index.ts +2 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +96 -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/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/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +28 -67
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +8 -0
- 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 +2 -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-row/record-preview-row.component.html +0 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +49 -0
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- 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/tailwind.base.css +17 -2
- package/translations/de.json +29 -20
- package/translations/en.json +29 -20
- package/translations/es.json +29 -20
- package/translations/fr.json +29 -20
- package/translations/it.json +29 -20
- package/translations/nl.json +29 -20
- package/translations/pt.json +29 -20
- package/translations/sk.json +29 -20
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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';
|
|
@@ -11,7 +11,7 @@ import { ContentType } from 'rdflib/lib/types';
|
|
|
11
11
|
import { HttpParameterCodec, HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
|
|
12
12
|
import { TranslateService, TranslateModuleConfig, TranslateLoader, TranslateCompiler } 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';
|
|
@@ -138,10 +138,6 @@ interface Keyword {
|
|
|
138
138
|
bbox?: [number, number, number, number];
|
|
139
139
|
translations?: KeywordTranslations;
|
|
140
140
|
}
|
|
141
|
-
interface INSPIRE_topic {
|
|
142
|
-
value: string;
|
|
143
|
-
label: string;
|
|
144
|
-
}
|
|
145
141
|
interface ResourceIdentifier$1 {
|
|
146
142
|
code: string;
|
|
147
143
|
codeSpace?: string;
|
|
@@ -229,10 +225,19 @@ interface DatasetTemporalExtent {
|
|
|
229
225
|
start: Date;
|
|
230
226
|
end?: Date;
|
|
231
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
|
+
}
|
|
232
236
|
interface DatasetRecord extends BaseRecord {
|
|
233
237
|
kind: 'dataset';
|
|
234
238
|
status: RecordStatus;
|
|
235
239
|
lineage: string;
|
|
240
|
+
sourceRecords: Array<SourceRecord>;
|
|
236
241
|
onlineResources: Array<DatasetOnlineResource>;
|
|
237
242
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
238
243
|
temporalExtents: Array<DatasetTemporalExtent>;
|
|
@@ -256,6 +261,7 @@ interface ServiceRecord extends BaseRecord {
|
|
|
256
261
|
interface ReuseRecord extends BaseRecord {
|
|
257
262
|
kind: 'reuse';
|
|
258
263
|
lineage: string;
|
|
264
|
+
sourceRecords: Array<SourceRecord>;
|
|
259
265
|
onlineResources: Array<DatasetOnlineResource>;
|
|
260
266
|
reuseType: ReuseType;
|
|
261
267
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
@@ -1076,6 +1082,8 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1076
1082
|
}
|
|
1077
1083
|
|
|
1078
1084
|
type RecordAsXml = string;
|
|
1085
|
+
declare const DISABLE_DRAFT: InjectionToken<boolean>;
|
|
1086
|
+
declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
|
|
1079
1087
|
declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
1080
1088
|
private httpClient;
|
|
1081
1089
|
private gn4SearchApi;
|
|
@@ -1085,6 +1093,8 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1085
1093
|
private platformService;
|
|
1086
1094
|
private gn4LanguagesApi;
|
|
1087
1095
|
private settingsService;
|
|
1096
|
+
private disableDraft;
|
|
1097
|
+
private defaultConverter;
|
|
1088
1098
|
_draftsChanged: Subject<void>;
|
|
1089
1099
|
draftsChanged$: Observable<void>;
|
|
1090
1100
|
search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
|
|
@@ -1744,6 +1754,15 @@ interface UserModel {
|
|
|
1744
1754
|
profileIcon?: string;
|
|
1745
1755
|
}
|
|
1746
1756
|
|
|
1757
|
+
interface GroupModel {
|
|
1758
|
+
groupId: number;
|
|
1759
|
+
groupName: string;
|
|
1760
|
+
isMember: boolean;
|
|
1761
|
+
canEdit: boolean;
|
|
1762
|
+
canApprove: boolean;
|
|
1763
|
+
canAdministrate: boolean;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1747
1766
|
interface RecordAttachment {
|
|
1748
1767
|
url: URL;
|
|
1749
1768
|
fileName: string;
|
|
@@ -1763,6 +1782,7 @@ declare abstract class PlatformServiceInterface {
|
|
|
1763
1782
|
abstract getMe(): Observable<UserModel>;
|
|
1764
1783
|
abstract isAnonymous(): Observable<boolean>;
|
|
1765
1784
|
abstract getUsers(): Observable<UserModel[]>;
|
|
1785
|
+
abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1766
1786
|
abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1767
1787
|
abstract getOrganizations(): Observable<Organization[]>;
|
|
1768
1788
|
abstract translateKey(key: string): Observable<string>;
|
|
@@ -1913,6 +1933,7 @@ declare class SelectionService {
|
|
|
1913
1933
|
|
|
1914
1934
|
interface Gn4ProvideOptions {
|
|
1915
1935
|
disableAuth?: boolean;
|
|
1936
|
+
disableDraft?: boolean;
|
|
1916
1937
|
}
|
|
1917
1938
|
declare function provideGn4(provideOptions?: Gn4ProvideOptions): Provider[];
|
|
1918
1939
|
|
|
@@ -1920,6 +1941,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
|
|
|
1920
1941
|
declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
1921
1942
|
private meApi;
|
|
1922
1943
|
private usersApi;
|
|
1944
|
+
private groupsApi;
|
|
1923
1945
|
private mapper;
|
|
1924
1946
|
private toolsApiService;
|
|
1925
1947
|
private registriesApiService;
|
|
@@ -1951,6 +1973,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
|
1951
1973
|
getOrganizations(): Observable<Organization[]>;
|
|
1952
1974
|
getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1953
1975
|
getUsers(): Observable<UserModel[]>;
|
|
1976
|
+
getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1954
1977
|
translateKey(key: string): Observable<string>;
|
|
1955
1978
|
private allThesaurus$;
|
|
1956
1979
|
searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
|
|
@@ -2115,6 +2138,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
|
|
|
2115
2138
|
declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
|
|
2116
2139
|
type BoundingBox = [number, number, number, number];
|
|
2117
2140
|
declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
|
|
2141
|
+
/**
|
|
2142
|
+
* Builds the closed GeoJSON Polygon matching the given bounding box.
|
|
2143
|
+
*/
|
|
2144
|
+
declare function bboxToPolygon(bbox: BoundingBox): Polygon;
|
|
2145
|
+
/**
|
|
2146
|
+
* Returns the geometry carried by a spatial extent, falling back to the polygon
|
|
2147
|
+
* derived from its bounding box. Returns null when the extent has neither.
|
|
2148
|
+
*/
|
|
2149
|
+
declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
|
|
2150
|
+
/**
|
|
2151
|
+
* Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
|
|
2152
|
+
* e.g. to be used as the data source of a map layer.
|
|
2153
|
+
*/
|
|
2154
|
+
declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
|
|
2118
2155
|
|
|
2119
2156
|
declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
|
|
2120
2157
|
declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
|
|
@@ -2162,6 +2199,10 @@ declare function getTemporalRangeUnion(ranges: {
|
|
|
2162
2199
|
*/
|
|
2163
2200
|
declare function removeSearchParams(url: string, searchParams: string[]): string;
|
|
2164
2201
|
|
|
2202
|
+
declare function getIndividualDisplayName(individual: Individual): string;
|
|
2203
|
+
declare function getAddressLines(address: string | undefined): string[];
|
|
2204
|
+
declare function toIndividual(user: UserModel): Individual;
|
|
2205
|
+
|
|
2165
2206
|
declare const FORMATS: {
|
|
2166
2207
|
readonly csv: {
|
|
2167
2208
|
readonly extensions: readonly ["csv"];
|
|
@@ -2339,8 +2380,12 @@ declare class ImageFallbackDirective {
|
|
|
2339
2380
|
declare const GEONETWORK_UI_VERSION: string;
|
|
2340
2381
|
declare const GEONETWORK_UI_TAG_NAME: string;
|
|
2341
2382
|
|
|
2383
|
+
type TValidatorEntry = {
|
|
2384
|
+
validator: (metadata: Partial<CatalogRecord>) => boolean;
|
|
2385
|
+
alias?: string;
|
|
2386
|
+
};
|
|
2342
2387
|
type TValidatorMapper = {
|
|
2343
|
-
[key: string]:
|
|
2388
|
+
[key: string]: TValidatorEntry;
|
|
2344
2389
|
};
|
|
2345
2390
|
declare const ValidatorMapper: TValidatorMapper;
|
|
2346
2391
|
type ValidatorMapperKeys = keyof typeof ValidatorMapper & string;
|
|
@@ -2348,6 +2393,7 @@ declare function getAllKeysValidator(): string[];
|
|
|
2348
2393
|
declare function getQualityValidators(record: Partial<CatalogRecord>, propsToValidate: ValidatorMapperKeys[]): {
|
|
2349
2394
|
name: string;
|
|
2350
2395
|
validator: () => boolean;
|
|
2396
|
+
alias: string;
|
|
2351
2397
|
}[];
|
|
2352
2398
|
|
|
2353
2399
|
declare function updateLanguages<T extends CatalogRecord>(record: T, defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): T;
|
|
@@ -2365,6 +2411,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
|
|
|
2365
2411
|
|
|
2366
2412
|
declare class MapUtilsService {
|
|
2367
2413
|
getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
|
|
2414
|
+
/**
|
|
2415
|
+
* Builds a non-interactive overlay layer drawing the spatial extent(s)
|
|
2416
|
+
* declared in the record's metadata (bounding boxes and/or geometries).
|
|
2417
|
+
* Returns null when the record has no usable spatial extent.
|
|
2418
|
+
*
|
|
2419
|
+
* This is purely for display and is independent from the map's initial view,
|
|
2420
|
+
* which is derived separately (see {@link getRecordExtent}).
|
|
2421
|
+
*/
|
|
2422
|
+
getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
|
|
2368
2423
|
static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
|
|
2369
2424
|
static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
|
|
2370
2425
|
}
|
|
@@ -2697,7 +2752,7 @@ declare class BadgeComponent {
|
|
|
2697
2752
|
|
|
2698
2753
|
declare class ButtonComponent {
|
|
2699
2754
|
private btnClass;
|
|
2700
|
-
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black');
|
|
2755
|
+
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
|
|
2701
2756
|
disabled: boolean;
|
|
2702
2757
|
extraClass: string;
|
|
2703
2758
|
buttonClick: EventEmitter<Event>;
|
|
@@ -3023,7 +3078,7 @@ declare class UrlInputComponent implements OnChanges {
|
|
|
3023
3078
|
inputValue: string;
|
|
3024
3079
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3025
3080
|
handleInput(event: Event): void;
|
|
3026
|
-
handleUpload(element: HTMLInputElement): void;
|
|
3081
|
+
handleUpload(element: HTMLInputElement, event: Event): void;
|
|
3027
3082
|
isValidUrl(url: string): boolean;
|
|
3028
3083
|
static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
|
|
3029
3084
|
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>;
|
|
@@ -4233,9 +4288,12 @@ declare class MetadataInfoComponent {
|
|
|
4233
4288
|
start: string;
|
|
4234
4289
|
end: string;
|
|
4235
4290
|
};
|
|
4236
|
-
get shownOrganization(): Organization;
|
|
4237
|
-
get resourceContact(): Individual;
|
|
4238
4291
|
fieldReady(propName: string): boolean;
|
|
4292
|
+
get contactGroups(): {
|
|
4293
|
+
role: Role;
|
|
4294
|
+
roleLabel: string;
|
|
4295
|
+
contacts: Individual[];
|
|
4296
|
+
}[];
|
|
4239
4297
|
onKeywordClick(keyword: Keyword): void;
|
|
4240
4298
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
|
|
4241
4299
|
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>;
|
|
@@ -4270,6 +4328,29 @@ declare class MetadataQualityComponent implements OnChanges {
|
|
|
4270
4328
|
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>;
|
|
4271
4329
|
}
|
|
4272
4330
|
|
|
4331
|
+
declare class ContactPillComponent {
|
|
4332
|
+
contact: Individual;
|
|
4333
|
+
private host;
|
|
4334
|
+
overlayOpen: boolean;
|
|
4335
|
+
overlayWidth: number;
|
|
4336
|
+
overlayOffsetX: number;
|
|
4337
|
+
overlayPositions: ConnectedPosition[];
|
|
4338
|
+
get displayName(): string;
|
|
4339
|
+
toggleOverlay(): void;
|
|
4340
|
+
closeOverlay(): void;
|
|
4341
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactPillComponent, never>;
|
|
4342
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactPillComponent, "gn-ui-contact-pill", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
declare class ContactDetailsComponent {
|
|
4346
|
+
contact: Individual;
|
|
4347
|
+
get organization(): Organization;
|
|
4348
|
+
get displayName(): string;
|
|
4349
|
+
get addressLines(): string[];
|
|
4350
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
|
|
4351
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "gn-ui-contact-details", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4352
|
+
}
|
|
4353
|
+
|
|
4273
4354
|
declare class NotificationComponent {
|
|
4274
4355
|
type: 'info' | 'warning' | 'error' | 'success';
|
|
4275
4356
|
title: string;
|
|
@@ -4379,7 +4460,6 @@ type CardSize = 'L' | 'M' | 'S' | 'XS';
|
|
|
4379
4460
|
declare class InternalLinkCardComponent implements OnInit {
|
|
4380
4461
|
protected elementRef: ElementRef<any>;
|
|
4381
4462
|
record: CatalogRecord;
|
|
4382
|
-
linkTarget: string;
|
|
4383
4463
|
linkHref: string;
|
|
4384
4464
|
metadataQualityDisplay: boolean;
|
|
4385
4465
|
favoriteTemplate: TemplateRef<{
|
|
@@ -4396,7 +4476,7 @@ declare class InternalLinkCardComponent implements OnInit {
|
|
|
4396
4476
|
get shouldShowThumbnail(): boolean;
|
|
4397
4477
|
get displayContactIconOnly(): boolean;
|
|
4398
4478
|
static ɵfac: i0.ɵɵFactoryDeclaration<InternalLinkCardComponent, never>;
|
|
4399
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "
|
|
4479
|
+
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>;
|
|
4400
4480
|
}
|
|
4401
4481
|
|
|
4402
4482
|
declare class ServiceCapabilitiesComponent implements OnInit {
|
|
@@ -5118,16 +5198,34 @@ declare class MapLegendComponent implements OnChanges {
|
|
|
5118
5198
|
static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
|
|
5119
5199
|
}
|
|
5120
5200
|
|
|
5201
|
+
type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
|
|
5202
|
+
/**
|
|
5203
|
+
* Default style for a spatial-extent layer: a solid black outline over a
|
|
5204
|
+
* translucent grey fill.
|
|
5205
|
+
*/
|
|
5206
|
+
declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
|
|
5207
|
+
/**
|
|
5208
|
+
* Builds a GeoJSON map layer drawing the given spatial extents: each extent is
|
|
5209
|
+
* rendered from its own geometry or, when only a bounding box is available,
|
|
5210
|
+
* from a polygon derived from that box.
|
|
5211
|
+
*
|
|
5212
|
+
* @returns the layer, or `null` when none of the extents can be represented.
|
|
5213
|
+
*/
|
|
5214
|
+
declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
|
|
5215
|
+
label?: string;
|
|
5216
|
+
clickable?: boolean;
|
|
5217
|
+
style?: SpatialExtentLayerStyle;
|
|
5218
|
+
}): MapContextLayer | null;
|
|
5121
5219
|
declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
|
|
5122
5220
|
declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
|
|
5123
5221
|
declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
|
|
5124
5222
|
|
|
5125
5223
|
declare class SpatialExtentComponent {
|
|
5224
|
+
private _cdr;
|
|
5126
5225
|
set spatialExtents(value: DatasetSpatialExtent[]);
|
|
5127
5226
|
spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
|
|
5128
5227
|
mapContext$: Observable<MapContext>;
|
|
5129
5228
|
error: string;
|
|
5130
|
-
bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
|
|
5131
5229
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
|
|
5132
5230
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
|
|
5133
5231
|
}
|
|
@@ -5738,7 +5836,8 @@ interface FormFieldConfig {
|
|
|
5738
5836
|
}
|
|
5739
5837
|
type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
|
|
5740
5838
|
type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
|
|
5741
|
-
type
|
|
5839
|
+
type EditableContactDetailsSpecifier = `contact:editableDetails`;
|
|
5840
|
+
type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | EditableContactDetailsSpecifier;
|
|
5742
5841
|
type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
|
|
5743
5842
|
interface EditorFieldIdentification {
|
|
5744
5843
|
model?: CatalogRecordKeys;
|
|
@@ -5761,7 +5860,7 @@ interface EditorFieldPage {
|
|
|
5761
5860
|
labelKey?: string;
|
|
5762
5861
|
sections: EditorSection[];
|
|
5763
5862
|
}
|
|
5764
|
-
interface EditorConfig {
|
|
5863
|
+
interface EditorConfig$1 {
|
|
5765
5864
|
pages: EditorFieldPage[];
|
|
5766
5865
|
}
|
|
5767
5866
|
|
|
@@ -5806,9 +5905,9 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
|
|
|
5806
5905
|
declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5807
5906
|
declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
|
|
5808
5907
|
declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
|
|
5809
|
-
configuration: EditorConfig;
|
|
5908
|
+
configuration: EditorConfig$1;
|
|
5810
5909
|
}) => {
|
|
5811
|
-
configuration: EditorConfig;
|
|
5910
|
+
configuration: EditorConfig$1;
|
|
5812
5911
|
} & _ngrx_store.Action<"[Editor] Set editor configuration">>;
|
|
5813
5912
|
declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
|
|
5814
5913
|
page: number;
|
|
@@ -5848,6 +5947,11 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
|
|
|
5848
5947
|
}) => {
|
|
5849
5948
|
canEditRecord: boolean;
|
|
5850
5949
|
} & _ngrx_store.Action<"[Editor] User can edit record">>;
|
|
5950
|
+
declare const setFocusedField: _ngrx_store.ActionCreator<"[Editor] Set focused field", (props: {
|
|
5951
|
+
model: CatalogRecordKeys;
|
|
5952
|
+
}) => {
|
|
5953
|
+
model: CatalogRecordKeys;
|
|
5954
|
+
} & _ngrx_store.Action<"[Editor] Set focused field">>;
|
|
5851
5955
|
|
|
5852
5956
|
declare class EditorFacade {
|
|
5853
5957
|
private readonly store;
|
|
@@ -5861,20 +5965,22 @@ declare class EditorFacade {
|
|
|
5861
5965
|
currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
|
|
5862
5966
|
draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5863
5967
|
currentPage$: rxjs.Observable<number>;
|
|
5864
|
-
editorConfig$: rxjs.Observable<EditorConfig>;
|
|
5968
|
+
editorConfig$: rxjs.Observable<EditorConfig$1>;
|
|
5865
5969
|
hasRecordChanged$: rxjs.Observable<{
|
|
5866
5970
|
user: string;
|
|
5867
5971
|
date: Date;
|
|
5868
5972
|
}>;
|
|
5869
5973
|
isPublished$: rxjs.Observable<boolean>;
|
|
5870
5974
|
canEditRecord$: rxjs.Observable<boolean>;
|
|
5975
|
+
focusedField$: rxjs.Observable<CatalogRecordKeys>;
|
|
5871
5976
|
openRecord(record: CatalogRecord, recordSource: string): void;
|
|
5872
5977
|
saveRecord(): void;
|
|
5873
5978
|
undoRecordDraft(): void;
|
|
5874
5979
|
updateRecordField(field: string, value: unknown): void;
|
|
5875
5980
|
updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
|
|
5876
|
-
setConfiguration(configuration: EditorConfig): void;
|
|
5981
|
+
setConfiguration(configuration: EditorConfig$1): void;
|
|
5877
5982
|
setCurrentPage(page: number): void;
|
|
5983
|
+
setFocusedField(model: CatalogRecordKeys): void;
|
|
5878
5984
|
setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
|
|
5879
5985
|
checkHasRecordChanged(record: CatalogRecord): void;
|
|
5880
5986
|
isPublished(isPublished: boolean): void;
|
|
@@ -5898,7 +6004,7 @@ interface EditorState {
|
|
|
5898
6004
|
saving: boolean;
|
|
5899
6005
|
saveError: SaveRecordError | null;
|
|
5900
6006
|
changedSinceSave: boolean;
|
|
5901
|
-
editorConfig: EditorConfig;
|
|
6007
|
+
editorConfig: EditorConfig$1;
|
|
5902
6008
|
currentPage: number;
|
|
5903
6009
|
hasRecordChanged: {
|
|
5904
6010
|
user: string;
|
|
@@ -5919,7 +6025,7 @@ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (
|
|
|
5919
6025
|
declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5920
6026
|
declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
|
|
5921
6027
|
declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5922
|
-
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
|
|
6028
|
+
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig$1, (s1: EditorState) => EditorConfig$1>;
|
|
5923
6029
|
declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
|
|
5924
6030
|
declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
|
|
5925
6031
|
declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
|
|
@@ -5957,18 +6063,20 @@ declare class ImportRecordComponent {
|
|
|
5957
6063
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
|
|
5958
6064
|
}
|
|
5959
6065
|
|
|
5960
|
-
declare class MetadataQualityPanelComponent
|
|
6066
|
+
declare class MetadataQualityPanelComponent {
|
|
6067
|
+
facade: EditorFacade;
|
|
5961
6068
|
propsToValidate: ValidatorMapperKeys[];
|
|
5962
|
-
propertiesByPage
|
|
6069
|
+
propertiesByPage$: rxjs.Observable<{
|
|
5963
6070
|
label: string;
|
|
5964
6071
|
value: boolean;
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
6072
|
+
model: CatalogRecordKeys;
|
|
6073
|
+
}[][]>;
|
|
6074
|
+
onCriterionClick(property: {
|
|
6075
|
+
value: boolean;
|
|
6076
|
+
model: CatalogRecordKeys;
|
|
6077
|
+
}): void;
|
|
5970
6078
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
|
|
5971
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {
|
|
6079
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {}, {}, never, never, true, never>;
|
|
5972
6080
|
}
|
|
5973
6081
|
|
|
5974
6082
|
declare class MultilingualPanelComponent implements OnDestroy {
|
|
@@ -6013,6 +6121,14 @@ declare class MultilingualPanelComponent implements OnDestroy {
|
|
|
6013
6121
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
|
|
6014
6122
|
}
|
|
6015
6123
|
|
|
6124
|
+
declare class FieldFocusDirective {
|
|
6125
|
+
gnUiFieldFocusGlowClass: string;
|
|
6126
|
+
private el;
|
|
6127
|
+
focusField(focusInnerTarget?: boolean): void;
|
|
6128
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
|
|
6129
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
6130
|
+
}
|
|
6131
|
+
|
|
6016
6132
|
declare class FormFieldKeywordsComponent {
|
|
6017
6133
|
private editorFacade;
|
|
6018
6134
|
value: Keyword[];
|
|
@@ -6142,6 +6258,7 @@ declare class FormFieldComponent {
|
|
|
6142
6258
|
valueChange: EventEmitter<unknown>;
|
|
6143
6259
|
titleInput: ElementRef;
|
|
6144
6260
|
isOpenData: boolean;
|
|
6261
|
+
fieldFocus: FieldFocusDirective;
|
|
6145
6262
|
toggleIsOpenData(event: boolean): void;
|
|
6146
6263
|
focusTitleInput(): void;
|
|
6147
6264
|
get withoutWrapper(): boolean;
|
|
@@ -6158,7 +6275,7 @@ declare class FormFieldComponent {
|
|
|
6158
6275
|
get valueAsResourceIdentifierCode(): string;
|
|
6159
6276
|
handleResourceIdentifierChange(code: string): void;
|
|
6160
6277
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6161
|
-
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,
|
|
6278
|
+
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, [{ directive: typeof FieldFocusDirective; inputs: {}; outputs: {}; }]>;
|
|
6162
6279
|
}
|
|
6163
6280
|
|
|
6164
6281
|
declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
|
|
@@ -6182,12 +6299,23 @@ declare class FormFieldTopicsComponent {
|
|
|
6182
6299
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
6183
6300
|
}
|
|
6184
6301
|
|
|
6185
|
-
declare class RecordFormComponent {
|
|
6302
|
+
declare class RecordFormComponent implements OnInit, OnDestroy {
|
|
6186
6303
|
facade: EditorFacade;
|
|
6304
|
+
subscription: Subscription;
|
|
6187
6305
|
recordUniqueIdentifier$: rxjs.Observable<string>;
|
|
6306
|
+
focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
|
|
6307
|
+
formFields: i0.Signal<readonly FormFieldComponent[]>;
|
|
6308
|
+
sectionFocusDirectives: i0.Signal<readonly FieldFocusDirective[]>;
|
|
6309
|
+
focusField(model: CatalogRecordKeys, sectionIndex: number): void;
|
|
6310
|
+
ngOnInit(): void;
|
|
6311
|
+
ngOnDestroy(): void;
|
|
6188
6312
|
handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
|
|
6189
6313
|
fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
|
|
6190
6314
|
sectionTracker(index: number, section: EditorSectionWithValues): string;
|
|
6315
|
+
getFieldLocation(model: CatalogRecordKeys): Promise<{
|
|
6316
|
+
page: number;
|
|
6317
|
+
section: number;
|
|
6318
|
+
} | null>;
|
|
6191
6319
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
|
|
6192
6320
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
|
|
6193
6321
|
}
|
|
@@ -6267,6 +6395,10 @@ declare class FeatureEditorModule {
|
|
|
6267
6395
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
|
|
6268
6396
|
}
|
|
6269
6397
|
|
|
6398
|
+
interface ISOTopic {
|
|
6399
|
+
value: string;
|
|
6400
|
+
label: string;
|
|
6401
|
+
}
|
|
6270
6402
|
/**
|
|
6271
6403
|
* This file contains the configuration of the fields that will be displayed in the editor.
|
|
6272
6404
|
* To add a new field, you need to create a new EditorField object in the fields part of this file.
|
|
@@ -6318,7 +6450,7 @@ declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
|
|
|
6318
6450
|
*************** PAGES *****************
|
|
6319
6451
|
************************************************************
|
|
6320
6452
|
*/
|
|
6321
|
-
declare const DEFAULT_CONFIGURATION: EditorConfig;
|
|
6453
|
+
declare const DEFAULT_CONFIGURATION: EditorConfig$1;
|
|
6322
6454
|
/************************************************************
|
|
6323
6455
|
*************** LICENSES **************
|
|
6324
6456
|
************************************************************
|
|
@@ -6332,14 +6464,14 @@ declare const MAX_UPLOAD_SIZE_MB = 10;
|
|
|
6332
6464
|
*/
|
|
6333
6465
|
declare const SPATIAL_SCOPES: Keyword[];
|
|
6334
6466
|
/************************************************************
|
|
6335
|
-
***************
|
|
6467
|
+
*************** ISO TOPICS **************
|
|
6336
6468
|
************************************************************
|
|
6337
6469
|
*/
|
|
6338
|
-
declare const
|
|
6470
|
+
declare const ISO_TOPICS: ISOTopic[];
|
|
6339
6471
|
|
|
6340
6472
|
declare class EditorService {
|
|
6341
6473
|
private recordsRepository;
|
|
6342
|
-
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
|
|
6474
|
+
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1): Observable<[CatalogRecord, string]>;
|
|
6343
6475
|
saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
|
|
6344
6476
|
undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
|
|
6345
6477
|
hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
|
|
@@ -6755,6 +6887,11 @@ interface SearchPreset {
|
|
|
6755
6887
|
interface MetadataQualityConfig {
|
|
6756
6888
|
ENABLED: boolean;
|
|
6757
6889
|
}
|
|
6890
|
+
type NewRecordStandard = 'iso19139' | 'iso19115-3';
|
|
6891
|
+
interface EditorConfig {
|
|
6892
|
+
NEW_RECORD_DEFAULT_LANGUAGE?: string;
|
|
6893
|
+
NEW_RECORD_STANDARD?: NewRecordStandard;
|
|
6894
|
+
}
|
|
6758
6895
|
type CustomTranslations = {
|
|
6759
6896
|
[translationKey: string]: string;
|
|
6760
6897
|
};
|
|
@@ -6787,6 +6924,7 @@ declare function getGlobalConfig(): GlobalConfig;
|
|
|
6787
6924
|
declare function getThemeConfig(): ThemeConfig;
|
|
6788
6925
|
declare function getOptionalMapConfig(): MapConfig | null;
|
|
6789
6926
|
declare function getOptionalSearchConfig(): SearchConfig | null;
|
|
6927
|
+
declare function getOptionalEditorConfig(): EditorConfig | null;
|
|
6790
6928
|
declare function getMetadataQualityConfig(): MetadataQualityConfig;
|
|
6791
6929
|
declare function getCustomTranslations(langCode: string): CustomTranslations;
|
|
6792
6930
|
declare function loadAppConfig(configUrl?: string): Promise<void>;
|
|
@@ -6815,6 +6953,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6815
6953
|
|
|
6816
6954
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6817
6955
|
|
|
6818
|
-
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, CHART_TYPE_VALUES, 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, 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_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, 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, 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, SortByEnum, 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, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6819
|
-
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, 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,
|
|
6956
|
+
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, CHART_TYPE_VALUES, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactPillComponent, 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_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, 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, FieldFocusDirective, 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, ISO_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, 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_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, 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, 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, SortByEnum, 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, 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, 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, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, spatialExtentToGeometry, spatialExtentsToFeatureCollection, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6957
|
+
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, 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 };
|
|
6820
6958
|
//# sourceMappingURL=index.d.ts.map
|