geonetwork-ui 2.10.3-dev.4154db07d → 2.11.0-dev.1cf4ab0c6
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 +1540 -839
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +242 -92
- package/index.d.ts.map +1 -1
- package/package.json +9 -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 +99 -37
- 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/filter.model.ts +13 -1
- 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/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -0
- package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -4
- 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/router/src/lib/default/state/query-params.utils.ts +1 -1
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +12 -4
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +58 -19
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +18 -8
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +9 -1
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +43 -2
- 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/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +2 -1
- package/src/libs/ui/inputs/src/index.ts +2 -0
- package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +1 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +20 -7
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +46 -5
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +111 -0
- package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +215 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +3 -0
- package/src/libs/util/app-config/src/lib/model.ts +1 -0
- 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/src/libs/util/shared/src/index.ts +1 -0
- package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
- package/src/libs/util/shared/src/lib/gn-ui-version.ts +1 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +19 -10
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/file.ts +15 -0
- package/src/libs/util/shared/src/lib/utils/geojson.ts +8 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/tailwind.base.css +5 -0
- package/translations/de.json +30 -3
- package/translations/en.json +29 -2
- package/translations/es.json +27 -0
- package/translations/fr.json +30 -3
- package/translations/it.json +28 -1
- package/translations/nl.json +27 -0
- package/translations/pt.json +27 -0
- package/translations/sk.json +28 -1
- package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { Geometry, Feature, Polygon, FeatureCollection } from 'geojson';
|
|
|
3
3
|
import { XmlElement, XmlDocument, XmlComment, XmlProcessingInstruction, XmlDeclaration, XmlDocumentType, XmlCdata, XmlText } from '@rgrove/parse-xml';
|
|
4
4
|
export { XmlDocument, XmlElement } from '@rgrove/parse-xml';
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
6
|
-
import { InjectionToken, Provider, OnInit, AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleChanges, TemplateRef, Type, ViewContainerRef,
|
|
6
|
+
import { InjectionToken, Provider, OnInit, AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleChanges, TemplateRef, Type, ViewContainerRef, QueryList, Injector, AfterViewChecked, Signal, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
7
7
|
import * as rxjs from 'rxjs';
|
|
8
8
|
import { Observable, Subject, BehaviorSubject, Subscription, ReplaySubject } from 'rxjs';
|
|
9
9
|
import { Store, NamedNode } from 'rdflib';
|
|
@@ -18,13 +18,14 @@ import { Style } from 'ol/style.js';
|
|
|
18
18
|
import { StyleLike } from 'ol/style/Style.js';
|
|
19
19
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
20
20
|
import * as geonetwork_ui from 'geonetwork-ui';
|
|
21
|
+
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
22
|
+
import { CdkOverlayOrigin, ConnectedPosition, CdkConnectedOverlay, CdkScrollable } from '@angular/cdk/overlay';
|
|
21
23
|
import { UntypedFormControl, FormControl } from '@angular/forms';
|
|
22
24
|
import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
23
|
-
import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
|
|
24
25
|
import { OgcApiEndpoint, WfsEndpoint, MimeType, WfsFeatureTypeFull, WmsLayerFull, WmtsLayer, StacItem, WfsVersion, OgcApiCollectionInfo, OgcApiRecord, GetCollectionItemsOptions, StacItemsDocument } from '@camptocamp/ogc-client';
|
|
25
26
|
import OlMap from 'ol/Map.js';
|
|
26
27
|
import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/core/dist/model';
|
|
27
|
-
import { MatSort } from '@angular/material/sort';
|
|
28
|
+
import { MatSort, Sort } from '@angular/material/sort';
|
|
28
29
|
import { DataSource } from '@angular/cdk/collections';
|
|
29
30
|
import { MatPaginator } from '@angular/material/paginator';
|
|
30
31
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
@@ -38,8 +39,6 @@ import * as chart_js from 'chart.js';
|
|
|
38
39
|
import { Chart, ChartType, ChartData, ChartOptions } from 'chart.js';
|
|
39
40
|
import Duration from 'duration-relativetimeformat';
|
|
40
41
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
41
|
-
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
42
|
-
import { CdkOverlayOrigin, CdkConnectedOverlay, ConnectedPosition, CdkScrollable } from '@angular/cdk/overlay';
|
|
43
42
|
import { CdkScrollable as CdkScrollable$1 } from '@angular/cdk/scrolling';
|
|
44
43
|
import { EmblaCarouselType } from 'embla-carousel';
|
|
45
44
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
@@ -233,12 +232,24 @@ interface SourceRecord {
|
|
|
233
232
|
title?: string;
|
|
234
233
|
href?: string;
|
|
235
234
|
}
|
|
235
|
+
declare const associationTypeValues: readonly ["crossReference", "largerWorkCitation", "partOfSeamlessDatabase", "stereoMate", "isComposedOf", "collectiveTitle", "series", "dependency", "revisionOf"];
|
|
236
|
+
type AssociationType = (typeof associationTypeValues)[number];
|
|
236
237
|
/**
|
|
237
238
|
* Represents another record associated with this one (e.g. a parent/sibling dataset).
|
|
238
239
|
*/
|
|
239
240
|
interface AssociatedRecord {
|
|
240
|
-
|
|
241
|
-
associationType:
|
|
241
|
+
uniqueIdentifier: string;
|
|
242
|
+
associationType: AssociationType;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* Nature of the link between a record and another one; the association type is
|
|
246
|
+
* only known for 'sibling' relations, as it is held by the declaring record.
|
|
247
|
+
*/
|
|
248
|
+
type RecordRelation = 'source' | 'sourceOf' | 'sibling' | 'associated';
|
|
249
|
+
interface LinkedRecord {
|
|
250
|
+
record: CatalogRecord;
|
|
251
|
+
relation: RecordRelation;
|
|
252
|
+
associationType?: AssociationType;
|
|
242
253
|
}
|
|
243
254
|
interface DatasetRecord extends BaseRecord {
|
|
244
255
|
kind: 'dataset';
|
|
@@ -357,7 +368,19 @@ type SortOrder = 'asc' | 'desc';
|
|
|
357
368
|
interface SortParam {
|
|
358
369
|
[key: string]: SortOrder;
|
|
359
370
|
}
|
|
360
|
-
type
|
|
371
|
+
type EsFieldSort = {
|
|
372
|
+
order: SortOrder;
|
|
373
|
+
mode?: 'max' | 'min';
|
|
374
|
+
missing?: '_last';
|
|
375
|
+
nested?: {
|
|
376
|
+
path: string;
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
type SortParams = string | SortParam | {
|
|
380
|
+
[property: string]: EsFieldSort;
|
|
381
|
+
} | (string | SortParam | {
|
|
382
|
+
[property: string]: EsFieldSort;
|
|
383
|
+
})[];
|
|
361
384
|
interface EsRequestAggTerm {
|
|
362
385
|
field?: string;
|
|
363
386
|
size?: number;
|
|
@@ -740,7 +763,8 @@ type FieldFilterByRange = {
|
|
|
740
763
|
start?: Date;
|
|
741
764
|
end?: Date;
|
|
742
765
|
};
|
|
743
|
-
type
|
|
766
|
+
type FieldFilterByBoundingBox = [number, number, number, number];
|
|
767
|
+
type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange | FieldFilterByBoundingBox;
|
|
744
768
|
type FieldFilters = Record<FieldName$1, FieldFilter$1>;
|
|
745
769
|
type QueryString = {
|
|
746
770
|
query_string: string;
|
|
@@ -752,7 +776,18 @@ type QueryRange = {
|
|
|
752
776
|
lte: string;
|
|
753
777
|
}>;
|
|
754
778
|
};
|
|
755
|
-
type
|
|
779
|
+
type QueryGeoShape = {
|
|
780
|
+
geo_shape: {
|
|
781
|
+
geom: {
|
|
782
|
+
shape: {
|
|
783
|
+
type: string;
|
|
784
|
+
coordinates: number[][];
|
|
785
|
+
};
|
|
786
|
+
relation: string;
|
|
787
|
+
};
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
type FilterQuery = Array<QueryString | QueryRange | QueryGeoShape>;
|
|
756
791
|
|
|
757
792
|
interface TermsAggregationParams {
|
|
758
793
|
type: 'terms';
|
|
@@ -1037,8 +1072,7 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1037
1072
|
abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
|
|
1038
1073
|
abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1039
1074
|
abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1040
|
-
abstract
|
|
1041
|
-
abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1075
|
+
abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1042
1076
|
abstract fuzzySearch(query: string): Observable<SearchResults>;
|
|
1043
1077
|
abstract canDuplicate(record: CatalogRecord): boolean;
|
|
1044
1078
|
abstract canDelete(record: CatalogRecord): Observable<boolean>;
|
|
@@ -1124,8 +1158,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1124
1158
|
private mapEmbeddedFeatureCatalog;
|
|
1125
1159
|
getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
|
|
1126
1160
|
getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1127
|
-
|
|
1128
|
-
getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1161
|
+
getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1129
1162
|
aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1130
1163
|
fuzzySearch(query: string): Observable<SearchResults>;
|
|
1131
1164
|
getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
|
|
@@ -1694,13 +1727,14 @@ declare class ElasticsearchService {
|
|
|
1694
1727
|
private get metadataLang();
|
|
1695
1728
|
getSearchRequestBody(aggregations?: any, size?: number, from?: number, sortBy?: SortByField, requestFields?: RequestFields, searchFilters?: SearchFilters, configFilters?: SearchFilters, uuids?: string[], geometry?: Geometry): EsSearchParams;
|
|
1696
1729
|
private processRuntimeFields;
|
|
1697
|
-
registerRuntimeField(fieldName: string, expression: string): void;
|
|
1730
|
+
registerRuntimeField(fieldName: string, expression: string, type?: 'keyword' | 'date'): void;
|
|
1698
1731
|
getMetadataByIdsPayload(uuids: string[]): EsSearchParams;
|
|
1699
1732
|
getRelatedRecordPayload(record: CatalogRecord, size?: number, _source?: string[]): EsSearchParams;
|
|
1700
1733
|
private buildPayloadSort;
|
|
1701
1734
|
private injectLangInQueryStringFields;
|
|
1702
1735
|
private getQueryLang;
|
|
1703
1736
|
private isCurrentSearchLang;
|
|
1737
|
+
private findSpatialFilterExtent;
|
|
1704
1738
|
private filtersToQuery;
|
|
1705
1739
|
private mustNotFilters;
|
|
1706
1740
|
private buildPayloadQuery;
|
|
@@ -2124,7 +2158,7 @@ declare class DateService {
|
|
|
2124
2158
|
dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
|
|
2125
2159
|
private getDateObject;
|
|
2126
2160
|
private getLocaleAndDate;
|
|
2127
|
-
|
|
2161
|
+
getDateFnsLocale(): Promise<Locale>;
|
|
2128
2162
|
formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2129
2163
|
formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2130
2164
|
formatRelativeDateTime(date: Date | string): Promise<string>;
|
|
@@ -2142,6 +2176,9 @@ declare function bytesToMegabytes(bytes: number): number;
|
|
|
2142
2176
|
*/
|
|
2143
2177
|
declare function propagateToDocumentOnly(event: Event): void;
|
|
2144
2178
|
|
|
2179
|
+
declare function isFileExtensionValid(fileName: string, acceptedExtensions: string[]): boolean;
|
|
2180
|
+
declare function readFileAsText(file: File): Promise<string>;
|
|
2181
|
+
|
|
2145
2182
|
declare function formatUserInfo(userInfo: string | unknown, displayCount?: boolean): string;
|
|
2146
2183
|
|
|
2147
2184
|
type FuzzyFilter = (input: string) => boolean;
|
|
@@ -2157,6 +2194,7 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
|
|
|
2157
2194
|
*/
|
|
2158
2195
|
declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
|
|
2159
2196
|
type BoundingBox = [number, number, number, number];
|
|
2197
|
+
declare function isBoundingBox(value: unknown): value is BoundingBox;
|
|
2160
2198
|
declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
|
|
2161
2199
|
/**
|
|
2162
2200
|
* Builds the closed GeoJSON Polygon matching the given bounding box.
|
|
@@ -2362,14 +2400,7 @@ declare function checkFileFormat(link: DatasetOnlineResource | ServiceOnlineReso
|
|
|
2362
2400
|
declare function getBadgeColor(linkFormat: FileFormat): string;
|
|
2363
2401
|
declare function getLinkId(link: DatasetOnlineResource): string;
|
|
2364
2402
|
declare function getLinkLabel(link: DatasetOnlineResource | ServiceOnlineResource): string;
|
|
2365
|
-
declare function getLayers(url: string, serviceProtocol: ServiceProtocol): Promise<
|
|
2366
|
-
name: string;
|
|
2367
|
-
hasRecords?: boolean;
|
|
2368
|
-
hasFeatures?: boolean;
|
|
2369
|
-
hasVectorTiles?: boolean;
|
|
2370
|
-
hasMapTiles?: boolean;
|
|
2371
|
-
hasDataQueries?: boolean;
|
|
2372
|
-
}[] | _camptocamp_ogc_client.WfsFeatureTypeFull[] | _camptocamp_ogc_client.WmsLayerFull[] | _camptocamp_ogc_client.WmtsLayer[]>;
|
|
2403
|
+
declare function getLayers(url: string, serviceProtocol: ServiceProtocol, deep?: boolean): Promise<any[]>;
|
|
2373
2404
|
declare function wmsLayerFlatten(layerFull: any): any[];
|
|
2374
2405
|
declare function getMimeTypeForFormat(format: FileFormat): string | null;
|
|
2375
2406
|
|
|
@@ -2389,6 +2420,15 @@ declare class LinkClassifierService {
|
|
|
2389
2420
|
static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
|
|
2390
2421
|
}
|
|
2391
2422
|
|
|
2423
|
+
declare class AutofocusDirective {
|
|
2424
|
+
private el;
|
|
2425
|
+
private injector;
|
|
2426
|
+
set autofocus(active: boolean);
|
|
2427
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
|
|
2428
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[gnUiAutofocus]", never, { "autofocus": { "alias": "gnUiAutofocus"; "required": false; }; }, {}, never, never, true, never>;
|
|
2429
|
+
static ngAcceptInputType_autofocus: unknown;
|
|
2430
|
+
}
|
|
2431
|
+
|
|
2392
2432
|
declare class ImageFallbackDirective {
|
|
2393
2433
|
private el;
|
|
2394
2434
|
fallbackUrl: string;
|
|
@@ -2816,30 +2856,47 @@ declare class CopyTextButtonComponent {
|
|
|
2816
2856
|
static ɵcmp: i0.ɵɵComponentDeclaration<CopyTextButtonComponent, "gn-ui-copy-text-button", never, { "text": { "alias": "text"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "displayText": { "alias": "displayText"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, true, never>;
|
|
2817
2857
|
}
|
|
2818
2858
|
|
|
2859
|
+
declare function provideLocalizedDateAdapter(): Provider[];
|
|
2860
|
+
|
|
2819
2861
|
declare class DatePickerComponent {
|
|
2820
|
-
private dateAdapter;
|
|
2821
|
-
private translate;
|
|
2822
2862
|
date: Date;
|
|
2823
2863
|
dateChange: EventEmitter<Date>;
|
|
2824
|
-
constructor();
|
|
2825
2864
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
2826
2865
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
|
|
2827
2866
|
}
|
|
2828
2867
|
|
|
2829
|
-
|
|
2830
|
-
|
|
2868
|
+
type DateRangeBound = 'start' | 'end';
|
|
2869
|
+
declare class DateRangeDropdownComponent {
|
|
2870
|
+
private scrollStrategies;
|
|
2871
|
+
private dateAdapter;
|
|
2872
|
+
private dateFormats;
|
|
2831
2873
|
private cdr;
|
|
2832
2874
|
title: string;
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2875
|
+
dateRange: FieldFilterByRange;
|
|
2876
|
+
dateRangeChange: EventEmitter<FieldFilterByRange>;
|
|
2877
|
+
overlayOrigin: CdkOverlayOrigin;
|
|
2878
|
+
overlayPositions: ConnectedPosition[];
|
|
2879
|
+
scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2880
|
+
overlayOpen: boolean;
|
|
2881
|
+
expandedBound: DateRangeBound | null;
|
|
2882
|
+
invalidBounds: Record<DateRangeBound, boolean>;
|
|
2883
|
+
constructor();
|
|
2884
|
+
get startDate(): Date;
|
|
2885
|
+
get endDate(): Date;
|
|
2886
|
+
get selectedDatesCount(): number;
|
|
2887
|
+
openOverlay(): void;
|
|
2888
|
+
closeOverlay(): void;
|
|
2889
|
+
toggleBound(bound: DateRangeBound): void;
|
|
2890
|
+
formatDate(date: Date): string;
|
|
2891
|
+
onDateInput(bound: DateRangeBound, event: Event): void;
|
|
2892
|
+
normalizeDateInput(bound: DateRangeBound, event: Event): void;
|
|
2893
|
+
private isAcceptable;
|
|
2894
|
+
setStartDate(date: Date): void;
|
|
2895
|
+
setEndDate(date: Date): void;
|
|
2896
|
+
clearDates(event: Event): void;
|
|
2897
|
+
private applyDateRange;
|
|
2841
2898
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
|
|
2842
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "
|
|
2899
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "dateRange": { "alias": "dateRange"; "required": false; }; }, { "dateRangeChange": "dateRangeChange"; }, never, never, true, never>;
|
|
2843
2900
|
}
|
|
2844
2901
|
|
|
2845
2902
|
declare class DateRangePickerComponent {
|
|
@@ -2852,15 +2909,27 @@ declare class DateRangePickerComponent {
|
|
|
2852
2909
|
}
|
|
2853
2910
|
|
|
2854
2911
|
declare const placeholder = "dropFile";
|
|
2912
|
+
type DragAndDropFileInputError = 'invalid-extension' | 'file-too-large';
|
|
2855
2913
|
declare class DragAndDropFileInputComponent {
|
|
2856
2914
|
placeholder: string;
|
|
2857
2915
|
accept: string;
|
|
2858
|
-
|
|
2916
|
+
maxFileSizeMb: number | null;
|
|
2917
|
+
icon: string | null;
|
|
2918
|
+
dropzoneBackgroundColor: string | null;
|
|
2919
|
+
textClass: string;
|
|
2920
|
+
extraClass: string;
|
|
2921
|
+
showFileName: boolean;
|
|
2922
|
+
fileChange: EventEmitter<File>;
|
|
2923
|
+
errorChange: EventEmitter<DragAndDropFileInputError>;
|
|
2859
2924
|
selectedFile: File;
|
|
2925
|
+
private dropzone;
|
|
2860
2926
|
get fileName(): string | null;
|
|
2927
|
+
get maxFileSizeBytes(): number | null;
|
|
2861
2928
|
selectFile(event: any): void;
|
|
2929
|
+
openFileSelector(): void;
|
|
2930
|
+
clear(): void;
|
|
2862
2931
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropFileInputComponent, never>;
|
|
2863
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropFileInputComponent, "gn-ui-drag-and-drop-file-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; }, { "fileChange": "fileChange"; }, never, never, true, never>;
|
|
2932
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropFileInputComponent, "gn-ui-drag-and-drop-file-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "dropzoneBackgroundColor": { "alias": "dropzoneBackgroundColor"; "required": false; }; "textClass": { "alias": "textClass"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "showFileName": { "alias": "showFileName"; "required": false; }; }, { "fileChange": "fileChange"; "errorChange": "errorChange"; }, never, never, true, never>;
|
|
2864
2933
|
}
|
|
2865
2934
|
|
|
2866
2935
|
interface Choice$1 {
|
|
@@ -3145,6 +3214,45 @@ declare class DateRangeInputsComponent {
|
|
|
3145
3214
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputsComponent, "gn-ui-date-range-inputs", never, { "temporalExtent": { "alias": "temporalExtent"; "required": false; }; }, { "temporalExtentChange": "temporalExtentChange"; }, never, never, true, never>;
|
|
3146
3215
|
}
|
|
3147
3216
|
|
|
3217
|
+
interface SpatialExtentDropdownError {
|
|
3218
|
+
key: string;
|
|
3219
|
+
params?: Record<string, string | number>;
|
|
3220
|
+
}
|
|
3221
|
+
declare class SpatialExtentDropdownComponent {
|
|
3222
|
+
private cd;
|
|
3223
|
+
private scrollStrategies;
|
|
3224
|
+
title: string;
|
|
3225
|
+
maxFileSizeMb: number | null;
|
|
3226
|
+
set initialBbox(value: BoundingBox | null);
|
|
3227
|
+
bboxChange: EventEmitter<BoundingBox>;
|
|
3228
|
+
errorChange: EventEmitter<SpatialExtentDropdownError>;
|
|
3229
|
+
bbox: BoundingBox | null;
|
|
3230
|
+
fileName: string;
|
|
3231
|
+
overlayOrigin: CdkOverlayOrigin;
|
|
3232
|
+
overlay: CdkConnectedOverlay;
|
|
3233
|
+
fileInput: DragAndDropFileInputComponent;
|
|
3234
|
+
overlayPositions: ConnectedPosition[];
|
|
3235
|
+
scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
3236
|
+
overlayOpen: boolean;
|
|
3237
|
+
overlayMinWidth: string;
|
|
3238
|
+
errorKey: string | null;
|
|
3239
|
+
get hasSelection(): boolean;
|
|
3240
|
+
get selectionLabelKey(): "search.filters.spatialExtent.bboxFromFile" | "search.filters.spatialExtent.bboxInitial";
|
|
3241
|
+
get selectionDeleteLabelKey(): "search.filters.spatialExtent.bboxFromFileDelete" | "search.filters.spatialExtent.bboxInitialDelete";
|
|
3242
|
+
get selectionLabelParams(): {
|
|
3243
|
+
fileName: string;
|
|
3244
|
+
};
|
|
3245
|
+
openOverlay(): void;
|
|
3246
|
+
closeOverlay(): void;
|
|
3247
|
+
toggleOverlay(): void;
|
|
3248
|
+
handleFileSelected(file: File): Promise<void>;
|
|
3249
|
+
handleFileError(error: DragAndDropFileInputError): void;
|
|
3250
|
+
private setError;
|
|
3251
|
+
removeSelection(event: Event): void;
|
|
3252
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentDropdownComponent, never>;
|
|
3253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentDropdownComponent, "gn-ui-spatial-extent-dropdown", never, { "title": { "alias": "title"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; "initialBbox": { "alias": "initialBbox"; "required": false; }; }, { "bboxChange": "bboxChange"; "errorChange": "errorChange"; }, never, never, true, never>;
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3148
3256
|
declare class ResultsHitsSearchKindComponent implements OnChanges {
|
|
3149
3257
|
selected: string[];
|
|
3150
3258
|
choices: Choice$1[];
|
|
@@ -3293,7 +3401,7 @@ type NotificationWithIdentity = NotificationContent & {
|
|
|
3293
3401
|
};
|
|
3294
3402
|
declare class NotificationsService {
|
|
3295
3403
|
notifications$: BehaviorSubject<NotificationWithIdentity[]>;
|
|
3296
|
-
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error):
|
|
3404
|
+
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): number;
|
|
3297
3405
|
removeNotificationById(id: number): void;
|
|
3298
3406
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
|
|
3299
3407
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
|
|
@@ -3619,7 +3727,7 @@ declare class SearchService implements SearchServiceI {
|
|
|
3619
3727
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
|
|
3620
3728
|
}
|
|
3621
3729
|
|
|
3622
|
-
type FieldType = 'values' | 'dateRange';
|
|
3730
|
+
type FieldType = 'values' | 'dateRange' | 'spatialExtent';
|
|
3623
3731
|
type FieldValue = string | number;
|
|
3624
3732
|
interface FieldAvailableValue {
|
|
3625
3733
|
value: FieldValue;
|
|
@@ -3717,6 +3825,15 @@ declare class DateRangeSearchField extends SimpleSearchField {
|
|
|
3717
3825
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3718
3826
|
getType(): FieldType;
|
|
3719
3827
|
}
|
|
3828
|
+
declare class ResourceCreationRevisionDateSearchField extends DateRangeSearchField {
|
|
3829
|
+
constructor(injector: Injector, order?: 'asc' | 'desc');
|
|
3830
|
+
}
|
|
3831
|
+
declare class BoundingBoxSearchField extends SimpleSearchField {
|
|
3832
|
+
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3833
|
+
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3834
|
+
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
3835
|
+
getType(): FieldType;
|
|
3836
|
+
}
|
|
3720
3837
|
declare class AvailableServicesField extends SimpleSearchField {
|
|
3721
3838
|
private translateService;
|
|
3722
3839
|
constructor(injector: Injector);
|
|
@@ -4622,17 +4739,23 @@ declare class FilterDropdownComponent implements OnInit {
|
|
|
4622
4739
|
private searchFacade;
|
|
4623
4740
|
private searchService;
|
|
4624
4741
|
private fieldsService;
|
|
4742
|
+
private notificationsService;
|
|
4743
|
+
private translateService;
|
|
4625
4744
|
fieldName: string;
|
|
4626
4745
|
title: string;
|
|
4746
|
+
spatialExtentMaxFileSize: number;
|
|
4627
4747
|
fieldType: FieldType;
|
|
4628
|
-
dateRange: DateRange;
|
|
4629
4748
|
choices$: Observable<Choice$1[]>;
|
|
4630
4749
|
selected$: Observable<FieldValue[]>;
|
|
4631
4750
|
selectedDateRange$: Observable<DateRange>;
|
|
4751
|
+
selectedBoundingBox$: Observable<BoundingBox | null>;
|
|
4632
4752
|
onSelectedValues(values: unknown[]): void;
|
|
4753
|
+
private spatialExtentErrorNotificationId;
|
|
4754
|
+
onBboxChange(bbox: BoundingBox | null): void;
|
|
4755
|
+
onSpatialExtentError(error: SpatialExtentDropdownError): void;
|
|
4756
|
+
private clearSpatialExtentErrorNotification;
|
|
4633
4757
|
ngOnInit(): void;
|
|
4634
|
-
|
|
4635
|
-
onEndDateChange(end: Date): void;
|
|
4758
|
+
onDateRangeChange(dateRange: DateRange): void;
|
|
4636
4759
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
|
|
4637
4760
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterDropdownComponent, "gn-ui-filter-dropdown", never, { "fieldName": { "alias": "fieldName"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
|
|
4638
4761
|
}
|
|
@@ -4829,7 +4952,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4829
4952
|
private searchFacade;
|
|
4830
4953
|
private searchService;
|
|
4831
4954
|
private fieldsService;
|
|
4832
|
-
private
|
|
4955
|
+
private dateService;
|
|
4833
4956
|
private translate;
|
|
4834
4957
|
fieldName: string;
|
|
4835
4958
|
fieldType: FieldType;
|
|
@@ -4838,6 +4961,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4838
4961
|
ngOnInit(): void;
|
|
4839
4962
|
translateLabel(): void;
|
|
4840
4963
|
getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
|
|
4964
|
+
private formatBound;
|
|
4841
4965
|
removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
|
|
4842
4966
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
|
|
4843
4967
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -4876,10 +5000,11 @@ interface DatasetHeaders {
|
|
|
4876
5000
|
interface PropertyInfo {
|
|
4877
5001
|
name: string;
|
|
4878
5002
|
label: string;
|
|
4879
|
-
type: 'number' | 'date' | '
|
|
5003
|
+
type: 'number' | 'date' | 'boolean' | 'string' | 'other';
|
|
4880
5004
|
}
|
|
4881
5005
|
interface DatasetInfo {
|
|
4882
5006
|
itemsCount: number;
|
|
5007
|
+
hasGeometry: boolean;
|
|
4883
5008
|
}
|
|
4884
5009
|
type FieldName = string;
|
|
4885
5010
|
type SumOperation = ['sum', FieldName];
|
|
@@ -4911,8 +5036,12 @@ declare class BaseReader {
|
|
|
4911
5036
|
protected sort: FieldSort[];
|
|
4912
5037
|
protected startIndex: number;
|
|
4913
5038
|
protected count: number;
|
|
5039
|
+
protected loadPromise_: Promise<void>;
|
|
5040
|
+
protected cacheEnabled: boolean;
|
|
4914
5041
|
constructor(url: string);
|
|
5042
|
+
enableCache(enabled: boolean): void;
|
|
4915
5043
|
load(): void;
|
|
5044
|
+
get isLoaded(): Promise<void>;
|
|
4916
5045
|
get properties(): Promise<PropertyInfo[]>;
|
|
4917
5046
|
get info(): Promise<DatasetInfo>;
|
|
4918
5047
|
read(): Promise<DataItem[]>;
|
|
@@ -4925,21 +5054,22 @@ declare class BaseReader {
|
|
|
4925
5054
|
limit(startIndex: number, count: number): this;
|
|
4926
5055
|
}
|
|
4927
5056
|
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
wfsVersion?: WfsVersion;
|
|
5057
|
+
interface OpenDatasetOptions {
|
|
5058
|
+
typeHint?: SupportedType;
|
|
4931
5059
|
wfsFeatureType?: string;
|
|
4932
|
-
|
|
5060
|
+
enableCache?: boolean;
|
|
5061
|
+
}
|
|
5062
|
+
declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
|
|
4933
5063
|
/**
|
|
4934
5064
|
* This fetches the full dataset at the given URL and parses it according to its mime type.
|
|
4935
5065
|
* All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
|
|
4936
5066
|
* File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
|
|
4937
|
-
* File type is determined
|
|
5067
|
+
* File type is determined like so:
|
|
4938
5068
|
* 1. if a type hint is given, use it
|
|
4939
5069
|
* 2. otherwise, look for a Content-Type header in the response with a supported mime type
|
|
4940
5070
|
* 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
|
|
4941
5071
|
*/
|
|
4942
|
-
declare function readDataset(url: string,
|
|
5072
|
+
declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
|
|
4943
5073
|
/**
|
|
4944
5074
|
* This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
|
|
4945
5075
|
*/
|
|
@@ -4952,31 +5082,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
|
|
|
4952
5082
|
*/
|
|
4953
5083
|
declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
|
|
4954
5084
|
|
|
4955
|
-
declare
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
5085
|
+
declare class Engine {
|
|
5086
|
+
private db;
|
|
5087
|
+
private init_;
|
|
5088
|
+
private makeInit;
|
|
5089
|
+
isReady(): Promise<Engine>;
|
|
5090
|
+
/**
|
|
5091
|
+
* Returns information about a dataset once it's loaded:
|
|
5092
|
+
* - a list of properties description
|
|
5093
|
+
* - the name of the dataset geometry column (null if no geometry present)
|
|
5094
|
+
* @param datasetId name of the table under which the dataset will be stored
|
|
5095
|
+
* @param loadQuery duckdb-specific query for creating a table out of the data
|
|
5096
|
+
* @param forceReload if true, any existing data will be dropped and redownloaded
|
|
5097
|
+
*/
|
|
5098
|
+
loadFile(datasetId: string, loadQuery: string, forceReload?: boolean): Promise<{
|
|
5099
|
+
properties: PropertyInfo[];
|
|
5100
|
+
geometryColumn: string | null;
|
|
5101
|
+
rowsCount: number;
|
|
5102
|
+
}>;
|
|
5103
|
+
registerData(name: string, buffer: Uint8Array): Promise<void>;
|
|
5104
|
+
/**
|
|
5105
|
+
* @param query duckdb-specific query for fetching items
|
|
5106
|
+
*/
|
|
5107
|
+
queryItems(query: string): Promise<DataItem[]>;
|
|
5108
|
+
close(): void;
|
|
4960
5109
|
}
|
|
4961
5110
|
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
protected
|
|
4969
|
-
|
|
5111
|
+
/**
|
|
5112
|
+
* This reader handles file formats supported natively by DuckDB
|
|
5113
|
+
*/
|
|
5114
|
+
declare class BaseFileReader extends BaseReader {
|
|
5115
|
+
protected engine: Engine;
|
|
5116
|
+
protected datasetId: string;
|
|
5117
|
+
protected properties_: PropertyInfo[];
|
|
5118
|
+
protected geometryColumn: string;
|
|
5119
|
+
protected rowsCount: number;
|
|
5120
|
+
protected generateDatasetId(): string;
|
|
5121
|
+
protected getLoadQuery(): Promise<string>;
|
|
5122
|
+
load(): Promise<void>;
|
|
4970
5123
|
get properties(): Promise<PropertyInfo[]>;
|
|
4971
5124
|
get info(): Promise<DatasetInfo>;
|
|
4972
5125
|
read(): Promise<DataItem[]>;
|
|
4973
5126
|
}
|
|
4974
5127
|
|
|
4975
5128
|
declare class GeojsonReader extends BaseFileReader {
|
|
4976
|
-
|
|
4977
|
-
items: DataItem[];
|
|
4978
|
-
properties: PropertyInfo[];
|
|
4979
|
-
}>;
|
|
5129
|
+
getLoadQuery(): Promise<string>;
|
|
4980
5130
|
}
|
|
4981
5131
|
|
|
4982
5132
|
interface WfsDownloadUrls {
|
|
@@ -5020,7 +5170,7 @@ declare class ChartViewComponent {
|
|
|
5020
5170
|
set link(value: DatasetOnlineResource);
|
|
5021
5171
|
private currentLink$;
|
|
5022
5172
|
set aggregation(value: FieldAggregation[0]);
|
|
5023
|
-
aggregation$: BehaviorSubject<"
|
|
5173
|
+
aggregation$: BehaviorSubject<"max" | "min" | "count" | "sum" | "average">;
|
|
5024
5174
|
set xProperty(value: string);
|
|
5025
5175
|
xProperty$: BehaviorSubject<string>;
|
|
5026
5176
|
set yProperty(value: string);
|
|
@@ -5029,7 +5179,7 @@ declare class ChartViewComponent {
|
|
|
5029
5179
|
chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
|
|
5030
5180
|
set userChartConfig(config: DatavizChartConfigModel);
|
|
5031
5181
|
chartConfig$: Observable<{
|
|
5032
|
-
aggregation: "
|
|
5182
|
+
aggregation: "max" | "min" | "count" | "sum" | "average";
|
|
5033
5183
|
xProperty: string;
|
|
5034
5184
|
yProperty: string;
|
|
5035
5185
|
chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
|
|
@@ -5100,31 +5250,37 @@ interface TableItemModel {
|
|
|
5100
5250
|
id: TableItemId;
|
|
5101
5251
|
[key: string]: TableItemType;
|
|
5102
5252
|
}
|
|
5253
|
+
interface TableColumn {
|
|
5254
|
+
name: string;
|
|
5255
|
+
label: string;
|
|
5256
|
+
}
|
|
5103
5257
|
declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
5104
5258
|
private eltRef;
|
|
5105
5259
|
private cdr;
|
|
5106
5260
|
private translateService;
|
|
5107
|
-
|
|
5261
|
+
columnsFromFeatureCatalog: TableColumn[];
|
|
5108
5262
|
set featureAttributes(value: {
|
|
5109
5263
|
value: string;
|
|
5110
5264
|
label: string;
|
|
5111
5265
|
}[]);
|
|
5266
|
+
columnsFromDataset: TableColumn[];
|
|
5112
5267
|
set dataset(value: BaseReader);
|
|
5113
5268
|
activeId: TableItemId;
|
|
5114
5269
|
selected: EventEmitter<any>;
|
|
5115
5270
|
sort: MatSort;
|
|
5116
5271
|
paginator: MatPaginator;
|
|
5117
5272
|
dataset_: BaseReader;
|
|
5118
|
-
properties$: BehaviorSubject<string[]>;
|
|
5119
5273
|
dataSource: DataTableDataSource;
|
|
5120
5274
|
headerHeight: number;
|
|
5121
5275
|
count: number;
|
|
5122
5276
|
loading$: BehaviorSubject<boolean>;
|
|
5123
5277
|
error: any;
|
|
5278
|
+
get columns(): TableColumn[];
|
|
5279
|
+
get columnNames(): string[];
|
|
5124
5280
|
ngOnInit(): void;
|
|
5125
5281
|
ngAfterViewInit(): void;
|
|
5126
5282
|
ngOnChanges(): void;
|
|
5127
|
-
setSort(sort:
|
|
5283
|
+
setSort(sort: Sort): void;
|
|
5128
5284
|
setPagination(): void;
|
|
5129
5285
|
readData(): Promise<void>;
|
|
5130
5286
|
scrollToItem(itemId: TableItemId): void;
|
|
@@ -5322,8 +5478,7 @@ declare class MdViewFacade {
|
|
|
5322
5478
|
otherError?: string;
|
|
5323
5479
|
}>;
|
|
5324
5480
|
related$: rxjs.Observable<CatalogRecord[]>;
|
|
5325
|
-
|
|
5326
|
-
sourceOf$: rxjs.Observable<CatalogRecord[]>;
|
|
5481
|
+
linkedRecords$: rxjs.Observable<LinkedRecord[]>;
|
|
5327
5482
|
chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
|
|
5328
5483
|
allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
|
|
5329
5484
|
resourceDoi$: rxjs.Observable<{
|
|
@@ -5409,16 +5564,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
|
|
|
5409
5564
|
}) => {
|
|
5410
5565
|
related: CatalogRecord[];
|
|
5411
5566
|
} & _ngrx_store.Action<"[Metadata view] Set related records">>;
|
|
5412
|
-
declare const
|
|
5413
|
-
|
|
5414
|
-
}) => {
|
|
5415
|
-
sources: CatalogRecord[];
|
|
5416
|
-
} & _ngrx_store.Action<"[Metadata view] Set sources">>;
|
|
5417
|
-
declare const setSourceOf: _ngrx_store.ActionCreator<"[Metadata view] Set has sources", (props: {
|
|
5418
|
-
sourceOf: CatalogRecord[];
|
|
5567
|
+
declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
|
|
5568
|
+
linkedRecords: LinkedRecord[];
|
|
5419
5569
|
}) => {
|
|
5420
|
-
|
|
5421
|
-
} & _ngrx_store.Action<"[Metadata view] Set
|
|
5570
|
+
linkedRecords: LinkedRecord[];
|
|
5571
|
+
} & _ngrx_store.Action<"[Metadata view] Set associated records">>;
|
|
5422
5572
|
declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
|
|
5423
5573
|
chartConfig: DatavizChartConfigModel;
|
|
5424
5574
|
}) => {
|
|
@@ -5474,9 +5624,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
|
|
|
5474
5624
|
declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
|
|
5475
5625
|
declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
|
|
5476
5626
|
declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
|
|
5627
|
+
declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
|
|
5477
5628
|
declare const mdview_actions_d_setRelated: typeof setRelated;
|
|
5478
|
-
declare const mdview_actions_d_setSourceOf: typeof setSourceOf;
|
|
5479
|
-
declare const mdview_actions_d_setSources: typeof setSources;
|
|
5480
5629
|
declare namespace mdview_actions_d {
|
|
5481
5630
|
export {
|
|
5482
5631
|
mdview_actions_d_addUserFeedback as addUserFeedback,
|
|
@@ -5494,9 +5643,8 @@ declare namespace mdview_actions_d {
|
|
|
5494
5643
|
mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
|
|
5495
5644
|
mdview_actions_d_setChartConfig as setChartConfig,
|
|
5496
5645
|
mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
|
|
5646
|
+
mdview_actions_d_setLinkedRecords as setLinkedRecords,
|
|
5497
5647
|
mdview_actions_d_setRelated as setRelated,
|
|
5498
|
-
mdview_actions_d_setSourceOf as setSourceOf,
|
|
5499
|
-
mdview_actions_d_setSources as setSources,
|
|
5500
5648
|
};
|
|
5501
5649
|
}
|
|
5502
5650
|
|
|
@@ -6317,6 +6465,7 @@ declare class FormFieldComponent {
|
|
|
6317
6465
|
get valueAsDate(): Date;
|
|
6318
6466
|
get valueAsOverviews(): Array<GraphicOverview>;
|
|
6319
6467
|
get valueAsUpdateFrequency(): UpdateFrequency;
|
|
6468
|
+
get valueAsAssociatedRecords(): Array<AssociatedRecord>;
|
|
6320
6469
|
get valueAsTemporalExtents(): Array<DatasetTemporalExtent>;
|
|
6321
6470
|
get valueAsKeywords(): Array<Keyword>;
|
|
6322
6471
|
get valueAsTopics(): Array<string>;
|
|
@@ -6898,6 +7047,7 @@ interface SearchConfig {
|
|
|
6898
7047
|
SEARCH_PRESET?: SearchPreset[];
|
|
6899
7048
|
ADVANCED_FILTERS?: [];
|
|
6900
7049
|
LIMIT?: number;
|
|
7050
|
+
SPATIAL_EXTENT_MAX_FILE_SIZE?: number;
|
|
6901
7051
|
}
|
|
6902
7052
|
interface SearchConfig {
|
|
6903
7053
|
FILTER_GEOMETRY?: Geometry;
|
|
@@ -6926,6 +7076,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6926
7076
|
|
|
6927
7077
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6928
7078
|
|
|
6929
|
-
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_BASEMAP_LAYER, 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 };
|
|
6930
|
-
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 };
|
|
7079
|
+
export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AutofocusDirective, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, BoundingBoxSearchField, 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_BASEMAP_LAYER, 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, ResourceCreationRevisionDateSearchField, 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, SpatialExtentDropdownComponent, 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, isBoundingBox, isConfigLoaded, isDateRange, isFileExtensionValid, 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, provideLocalizedDateAdapter, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readFileAsText, 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 };
|
|
7080
|
+
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, DateRangeBound, DragAndDropFileInputError, 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, FieldFilterByBoundingBox, 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, QueryGeoShape, 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, SpatialExtentDropdownError, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
|
|
6931
7081
|
//# sourceMappingURL=index.d.ts.map
|