geonetwork-ui 2.10.0 → 2.11.0-dev.68d9eaa3a
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 +883 -632
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +101 -54
- package/index.d.ts.map +1 -1
- package/package.json +8 -8
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +5 -5
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -5
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +13 -1
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +9 -5
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/association-type.mapper.ts +12 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +23 -3
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +40 -16
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +40 -2
- package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -5
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -2
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -2
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +2 -1
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -22
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.html +33 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.ts +94 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +16 -12
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +6 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +6 -0
- package/src/libs/feature/editor/src/lib/fields.config.ts +5 -0
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +4 -8
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +7 -16
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -3
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +4 -9
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +2 -7
- package/src/libs/feature/router/src/lib/default/router.service.ts +1 -1
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -7
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +31 -19
- package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +2 -2
- package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +19 -22
- package/src/libs/util/data-fetcher/src/lib/engine/duckdb.ts +185 -0
- package/src/libs/util/data-fetcher/src/lib/engine/results.ts +63 -0
- package/src/libs/util/data-fetcher/src/lib/{sql-utils.ts → engine/sql-utils.ts} +28 -13
- package/src/libs/util/data-fetcher/src/lib/model.ts +2 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +53 -38
- package/src/libs/util/data-fetcher/src/lib/readers/base.ts +11 -0
- package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +9 -47
- package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +27 -27
- package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +5 -24
- package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +5 -49
- package/src/libs/util/data-fetcher/src/lib/readers/json.ts +5 -23
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +184 -128
- package/src/libs/util/data-fetcher/src/lib/utils.ts +0 -143
- package/translations/de.json +14 -1
- package/translations/en.json +14 -1
- package/translations/es.json +13 -0
- package/translations/fr.json +14 -1
- package/translations/it.json +14 -1
- package/translations/nl.json +13 -0
- package/translations/pt.json +13 -0
- package/translations/sk.json +14 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
package/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
|
|
|
24
24
|
import { OgcApiEndpoint, WfsEndpoint, MimeType, WfsFeatureTypeFull, WmsLayerFull, WmtsLayer, StacItem, WfsVersion, OgcApiCollectionInfo, OgcApiRecord, GetCollectionItemsOptions, StacItemsDocument } from '@camptocamp/ogc-client';
|
|
25
25
|
import OlMap from 'ol/Map.js';
|
|
26
26
|
import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/core/dist/model';
|
|
27
|
-
import { MatSort } from '@angular/material/sort';
|
|
27
|
+
import { MatSort, Sort } from '@angular/material/sort';
|
|
28
28
|
import { DataSource } from '@angular/cdk/collections';
|
|
29
29
|
import { MatPaginator } from '@angular/material/paginator';
|
|
30
30
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
@@ -233,12 +233,24 @@ interface SourceRecord {
|
|
|
233
233
|
title?: string;
|
|
234
234
|
href?: string;
|
|
235
235
|
}
|
|
236
|
+
declare const associationTypeValues: readonly ["crossReference", "largerWorkCitation", "partOfSeamlessDatabase", "stereoMate", "isComposedOf", "collectiveTitle", "series", "dependency", "revisionOf"];
|
|
237
|
+
type AssociationType = (typeof associationTypeValues)[number];
|
|
236
238
|
/**
|
|
237
239
|
* Represents another record associated with this one (e.g. a parent/sibling dataset).
|
|
238
240
|
*/
|
|
239
241
|
interface AssociatedRecord {
|
|
240
|
-
|
|
241
|
-
associationType:
|
|
242
|
+
uniqueIdentifier: string;
|
|
243
|
+
associationType: AssociationType;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* Nature of the link between a record and another one; the association type is
|
|
247
|
+
* only known for 'sibling' relations, as it is held by the declaring record.
|
|
248
|
+
*/
|
|
249
|
+
type RecordRelation = 'source' | 'sourceOf' | 'sibling' | 'associated';
|
|
250
|
+
interface LinkedRecord {
|
|
251
|
+
record: CatalogRecord;
|
|
252
|
+
relation: RecordRelation;
|
|
253
|
+
associationType?: AssociationType;
|
|
242
254
|
}
|
|
243
255
|
interface DatasetRecord extends BaseRecord {
|
|
244
256
|
kind: 'dataset';
|
|
@@ -357,7 +369,19 @@ type SortOrder = 'asc' | 'desc';
|
|
|
357
369
|
interface SortParam {
|
|
358
370
|
[key: string]: SortOrder;
|
|
359
371
|
}
|
|
360
|
-
type
|
|
372
|
+
type EsFieldSort = {
|
|
373
|
+
order: SortOrder;
|
|
374
|
+
mode?: 'max' | 'min';
|
|
375
|
+
missing?: '_last';
|
|
376
|
+
nested?: {
|
|
377
|
+
path: string;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
type SortParams = string | SortParam | {
|
|
381
|
+
[property: string]: EsFieldSort;
|
|
382
|
+
} | (string | SortParam | {
|
|
383
|
+
[property: string]: EsFieldSort;
|
|
384
|
+
})[];
|
|
361
385
|
interface EsRequestAggTerm {
|
|
362
386
|
field?: string;
|
|
363
387
|
size?: number;
|
|
@@ -1037,8 +1061,7 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1037
1061
|
abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
|
|
1038
1062
|
abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1039
1063
|
abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1040
|
-
abstract
|
|
1041
|
-
abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1064
|
+
abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1042
1065
|
abstract fuzzySearch(query: string): Observable<SearchResults>;
|
|
1043
1066
|
abstract canDuplicate(record: CatalogRecord): boolean;
|
|
1044
1067
|
abstract canDelete(record: CatalogRecord): Observable<boolean>;
|
|
@@ -1124,8 +1147,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1124
1147
|
private mapEmbeddedFeatureCatalog;
|
|
1125
1148
|
getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
|
|
1126
1149
|
getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1127
|
-
|
|
1128
|
-
getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1150
|
+
getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1129
1151
|
aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1130
1152
|
fuzzySearch(query: string): Observable<SearchResults>;
|
|
1131
1153
|
getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
|
|
@@ -4876,10 +4898,11 @@ interface DatasetHeaders {
|
|
|
4876
4898
|
interface PropertyInfo {
|
|
4877
4899
|
name: string;
|
|
4878
4900
|
label: string;
|
|
4879
|
-
type: 'number' | 'date' | '
|
|
4901
|
+
type: 'number' | 'date' | 'boolean' | 'string' | 'other';
|
|
4880
4902
|
}
|
|
4881
4903
|
interface DatasetInfo {
|
|
4882
4904
|
itemsCount: number;
|
|
4905
|
+
hasGeometry: boolean;
|
|
4883
4906
|
}
|
|
4884
4907
|
type FieldName = string;
|
|
4885
4908
|
type SumOperation = ['sum', FieldName];
|
|
@@ -4911,8 +4934,12 @@ declare class BaseReader {
|
|
|
4911
4934
|
protected sort: FieldSort[];
|
|
4912
4935
|
protected startIndex: number;
|
|
4913
4936
|
protected count: number;
|
|
4937
|
+
protected loadPromise_: Promise<void>;
|
|
4938
|
+
protected cacheEnabled: boolean;
|
|
4914
4939
|
constructor(url: string);
|
|
4940
|
+
enableCache(enabled: boolean): void;
|
|
4915
4941
|
load(): void;
|
|
4942
|
+
get isLoaded(): Promise<void>;
|
|
4916
4943
|
get properties(): Promise<PropertyInfo[]>;
|
|
4917
4944
|
get info(): Promise<DatasetInfo>;
|
|
4918
4945
|
read(): Promise<DataItem[]>;
|
|
@@ -4925,21 +4952,22 @@ declare class BaseReader {
|
|
|
4925
4952
|
limit(startIndex: number, count: number): this;
|
|
4926
4953
|
}
|
|
4927
4954
|
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
wfsVersion?: WfsVersion;
|
|
4955
|
+
interface OpenDatasetOptions {
|
|
4956
|
+
typeHint?: SupportedType;
|
|
4931
4957
|
wfsFeatureType?: string;
|
|
4932
|
-
|
|
4958
|
+
enableCache?: boolean;
|
|
4959
|
+
}
|
|
4960
|
+
declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
|
|
4933
4961
|
/**
|
|
4934
4962
|
* This fetches the full dataset at the given URL and parses it according to its mime type.
|
|
4935
4963
|
* All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
|
|
4936
4964
|
* File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
|
|
4937
|
-
* File type is determined
|
|
4965
|
+
* File type is determined like so:
|
|
4938
4966
|
* 1. if a type hint is given, use it
|
|
4939
4967
|
* 2. otherwise, look for a Content-Type header in the response with a supported mime type
|
|
4940
4968
|
* 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
|
|
4941
4969
|
*/
|
|
4942
|
-
declare function readDataset(url: string,
|
|
4970
|
+
declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
|
|
4943
4971
|
/**
|
|
4944
4972
|
* This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
|
|
4945
4973
|
*/
|
|
@@ -4952,31 +4980,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
|
|
|
4952
4980
|
*/
|
|
4953
4981
|
declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
|
|
4954
4982
|
|
|
4955
|
-
declare
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4983
|
+
declare class Engine {
|
|
4984
|
+
private db;
|
|
4985
|
+
private init_;
|
|
4986
|
+
private makeInit;
|
|
4987
|
+
isReady(): Promise<Engine>;
|
|
4988
|
+
/**
|
|
4989
|
+
* Returns information about a dataset once it's loaded:
|
|
4990
|
+
* - a list of properties description
|
|
4991
|
+
* - the name of the dataset geometry column (null if no geometry present)
|
|
4992
|
+
* @param datasetId name of the table under which the dataset will be stored
|
|
4993
|
+
* @param loadQuery duckdb-specific query for creating a table out of the data
|
|
4994
|
+
* @param forceReload if true, any existing data will be dropped and redownloaded
|
|
4995
|
+
*/
|
|
4996
|
+
loadFile(datasetId: string, loadQuery: string, forceReload?: boolean): Promise<{
|
|
4997
|
+
properties: PropertyInfo[];
|
|
4998
|
+
geometryColumn: string | null;
|
|
4999
|
+
rowsCount: number;
|
|
5000
|
+
}>;
|
|
5001
|
+
registerData(name: string, buffer: Uint8Array): Promise<void>;
|
|
5002
|
+
/**
|
|
5003
|
+
* @param query duckdb-specific query for fetching items
|
|
5004
|
+
*/
|
|
5005
|
+
queryItems(query: string): Promise<DataItem[]>;
|
|
5006
|
+
close(): void;
|
|
4960
5007
|
}
|
|
4961
5008
|
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
protected
|
|
4969
|
-
|
|
5009
|
+
/**
|
|
5010
|
+
* This reader handles file formats supported natively by DuckDB
|
|
5011
|
+
*/
|
|
5012
|
+
declare class BaseFileReader extends BaseReader {
|
|
5013
|
+
protected engine: Engine;
|
|
5014
|
+
protected datasetId: string;
|
|
5015
|
+
protected properties_: PropertyInfo[];
|
|
5016
|
+
protected geometryColumn: string;
|
|
5017
|
+
protected rowsCount: number;
|
|
5018
|
+
protected generateDatasetId(): string;
|
|
5019
|
+
protected getLoadQuery(): Promise<string>;
|
|
5020
|
+
load(): Promise<void>;
|
|
4970
5021
|
get properties(): Promise<PropertyInfo[]>;
|
|
4971
5022
|
get info(): Promise<DatasetInfo>;
|
|
4972
5023
|
read(): Promise<DataItem[]>;
|
|
4973
5024
|
}
|
|
4974
5025
|
|
|
4975
5026
|
declare class GeojsonReader extends BaseFileReader {
|
|
4976
|
-
|
|
4977
|
-
items: DataItem[];
|
|
4978
|
-
properties: PropertyInfo[];
|
|
4979
|
-
}>;
|
|
5027
|
+
getLoadQuery(): Promise<string>;
|
|
4980
5028
|
}
|
|
4981
5029
|
|
|
4982
5030
|
interface WfsDownloadUrls {
|
|
@@ -5020,7 +5068,7 @@ declare class ChartViewComponent {
|
|
|
5020
5068
|
set link(value: DatasetOnlineResource);
|
|
5021
5069
|
private currentLink$;
|
|
5022
5070
|
set aggregation(value: FieldAggregation[0]);
|
|
5023
|
-
aggregation$: BehaviorSubject<"
|
|
5071
|
+
aggregation$: BehaviorSubject<"max" | "min" | "count" | "sum" | "average">;
|
|
5024
5072
|
set xProperty(value: string);
|
|
5025
5073
|
xProperty$: BehaviorSubject<string>;
|
|
5026
5074
|
set yProperty(value: string);
|
|
@@ -5029,7 +5077,7 @@ declare class ChartViewComponent {
|
|
|
5029
5077
|
chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
|
|
5030
5078
|
set userChartConfig(config: DatavizChartConfigModel);
|
|
5031
5079
|
chartConfig$: Observable<{
|
|
5032
|
-
aggregation: "
|
|
5080
|
+
aggregation: "max" | "min" | "count" | "sum" | "average";
|
|
5033
5081
|
xProperty: string;
|
|
5034
5082
|
yProperty: string;
|
|
5035
5083
|
chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
|
|
@@ -5100,31 +5148,37 @@ interface TableItemModel {
|
|
|
5100
5148
|
id: TableItemId;
|
|
5101
5149
|
[key: string]: TableItemType;
|
|
5102
5150
|
}
|
|
5151
|
+
interface TableColumn {
|
|
5152
|
+
name: string;
|
|
5153
|
+
label: string;
|
|
5154
|
+
}
|
|
5103
5155
|
declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
5104
5156
|
private eltRef;
|
|
5105
5157
|
private cdr;
|
|
5106
5158
|
private translateService;
|
|
5107
|
-
|
|
5159
|
+
columnsFromFeatureCatalog: TableColumn[];
|
|
5108
5160
|
set featureAttributes(value: {
|
|
5109
5161
|
value: string;
|
|
5110
5162
|
label: string;
|
|
5111
5163
|
}[]);
|
|
5164
|
+
columnsFromDataset: TableColumn[];
|
|
5112
5165
|
set dataset(value: BaseReader);
|
|
5113
5166
|
activeId: TableItemId;
|
|
5114
5167
|
selected: EventEmitter<any>;
|
|
5115
5168
|
sort: MatSort;
|
|
5116
5169
|
paginator: MatPaginator;
|
|
5117
5170
|
dataset_: BaseReader;
|
|
5118
|
-
properties$: BehaviorSubject<string[]>;
|
|
5119
5171
|
dataSource: DataTableDataSource;
|
|
5120
5172
|
headerHeight: number;
|
|
5121
5173
|
count: number;
|
|
5122
5174
|
loading$: BehaviorSubject<boolean>;
|
|
5123
5175
|
error: any;
|
|
5176
|
+
get columns(): TableColumn[];
|
|
5177
|
+
get columnNames(): string[];
|
|
5124
5178
|
ngOnInit(): void;
|
|
5125
5179
|
ngAfterViewInit(): void;
|
|
5126
5180
|
ngOnChanges(): void;
|
|
5127
|
-
setSort(sort:
|
|
5181
|
+
setSort(sort: Sort): void;
|
|
5128
5182
|
setPagination(): void;
|
|
5129
5183
|
readData(): Promise<void>;
|
|
5130
5184
|
scrollToItem(itemId: TableItemId): void;
|
|
@@ -5321,8 +5375,7 @@ declare class MdViewFacade {
|
|
|
5321
5375
|
otherError?: string;
|
|
5322
5376
|
}>;
|
|
5323
5377
|
related$: rxjs.Observable<CatalogRecord[]>;
|
|
5324
|
-
|
|
5325
|
-
sourceOf$: rxjs.Observable<CatalogRecord[]>;
|
|
5378
|
+
linkedRecords$: rxjs.Observable<LinkedRecord[]>;
|
|
5326
5379
|
chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
|
|
5327
5380
|
allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
|
|
5328
5381
|
resourceDoi$: rxjs.Observable<{
|
|
@@ -5408,16 +5461,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
|
|
|
5408
5461
|
}) => {
|
|
5409
5462
|
related: CatalogRecord[];
|
|
5410
5463
|
} & _ngrx_store.Action<"[Metadata view] Set related records">>;
|
|
5411
|
-
declare const
|
|
5412
|
-
|
|
5413
|
-
}) => {
|
|
5414
|
-
sources: CatalogRecord[];
|
|
5415
|
-
} & _ngrx_store.Action<"[Metadata view] Set sources">>;
|
|
5416
|
-
declare const setSourceOf: _ngrx_store.ActionCreator<"[Metadata view] Set has sources", (props: {
|
|
5417
|
-
sourceOf: CatalogRecord[];
|
|
5464
|
+
declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
|
|
5465
|
+
linkedRecords: LinkedRecord[];
|
|
5418
5466
|
}) => {
|
|
5419
|
-
|
|
5420
|
-
} & _ngrx_store.Action<"[Metadata view] Set
|
|
5467
|
+
linkedRecords: LinkedRecord[];
|
|
5468
|
+
} & _ngrx_store.Action<"[Metadata view] Set associated records">>;
|
|
5421
5469
|
declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
|
|
5422
5470
|
chartConfig: DatavizChartConfigModel;
|
|
5423
5471
|
}) => {
|
|
@@ -5473,9 +5521,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
|
|
|
5473
5521
|
declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
|
|
5474
5522
|
declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
|
|
5475
5523
|
declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
|
|
5524
|
+
declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
|
|
5476
5525
|
declare const mdview_actions_d_setRelated: typeof setRelated;
|
|
5477
|
-
declare const mdview_actions_d_setSourceOf: typeof setSourceOf;
|
|
5478
|
-
declare const mdview_actions_d_setSources: typeof setSources;
|
|
5479
5526
|
declare namespace mdview_actions_d {
|
|
5480
5527
|
export {
|
|
5481
5528
|
mdview_actions_d_addUserFeedback as addUserFeedback,
|
|
@@ -5493,9 +5540,8 @@ declare namespace mdview_actions_d {
|
|
|
5493
5540
|
mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
|
|
5494
5541
|
mdview_actions_d_setChartConfig as setChartConfig,
|
|
5495
5542
|
mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
|
|
5543
|
+
mdview_actions_d_setLinkedRecords as setLinkedRecords,
|
|
5496
5544
|
mdview_actions_d_setRelated as setRelated,
|
|
5497
|
-
mdview_actions_d_setSourceOf as setSourceOf,
|
|
5498
|
-
mdview_actions_d_setSources as setSources,
|
|
5499
5545
|
};
|
|
5500
5546
|
}
|
|
5501
5547
|
|
|
@@ -6316,6 +6362,7 @@ declare class FormFieldComponent {
|
|
|
6316
6362
|
get valueAsDate(): Date;
|
|
6317
6363
|
get valueAsOverviews(): Array<GraphicOverview>;
|
|
6318
6364
|
get valueAsUpdateFrequency(): UpdateFrequency;
|
|
6365
|
+
get valueAsAssociatedRecords(): Array<AssociatedRecord>;
|
|
6319
6366
|
get valueAsTemporalExtents(): Array<DatasetTemporalExtent>;
|
|
6320
6367
|
get valueAsKeywords(): Array<Keyword>;
|
|
6321
6368
|
get valueAsTopics(): Array<string>;
|
|
@@ -6925,6 +6972,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6925
6972
|
|
|
6926
6973
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6927
6974
|
|
|
6928
|
-
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, ContactDetailsFormComponent, 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, REUSE_LIGHT_CONFIGURATION, 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 };
|
|
6929
|
-
export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AssociatedRecord, 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 };
|
|
6975
|
+
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, ContactDetailsFormComponent, 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, REUSE_LIGHT_CONFIGURATION, 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, associationTypeValues, 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 };
|
|
6976
|
+
export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AssociatedRecord, AssociationType, 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, LinkedRecord, 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, RecordRelation, 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 };
|
|
6930
6977
|
//# sourceMappingURL=index.d.ts.map
|