geonetwork-ui 2.11.0-dev.e7b8ec331 → 2.11.0-dev.f5ee66b24
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 +1482 -928
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +280 -124
- package/index.d.ts.map +1 -1
- package/package.json +12 -11
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +108 -34
- 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 +12 -0
- package/src/libs/common/domain/src/lib/model/search/filter.model.ts +20 -1
- 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/map/src/index.ts +0 -1
- package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +1 -8
- 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/state/query-params.utils.ts +1 -1
- package/src/libs/feature/search/src/index.ts +2 -0
- 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/{map/src/lib → search/src/lib/geocoding}/geocoding.service.ts +5 -1
- package/src/libs/feature/search/src/lib/location-search/location-search.component.html +8 -0
- package/src/libs/feature/search/src/lib/location-search/location-search.component.ts +40 -0
- 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/utils/service/fields.service.ts +9 -1
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +61 -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/autocomplete/autocomplete.component.html +10 -1
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +8 -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 +7 -4
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +12 -9
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +2 -2
- 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/ui/map/src/lib/components/map-container/map-container.component.ts +6 -5
- 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/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 +17 -3
- package/translations/en.json +16 -2
- package/translations/es.json +15 -1
- package/translations/fr.json +17 -3
- package/translations/it.json +15 -1
- package/translations/nl.json +15 -1
- package/translations/pt.json +15 -1
- package/translations/sk.json +15 -1
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +0 -41
- package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +0 -112
- package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
- /package/src/libs/{feature/map/src/lib/geocoding/geocoding.component.css → ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.css} +0 -0
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';
|
|
@@ -11,20 +11,22 @@ import { ContentType } from 'rdflib/lib/types';
|
|
|
11
11
|
import { HttpParameterCodec, HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
|
|
12
12
|
import { TranslateService, TranslateModuleConfig } from '@ngx-translate/core';
|
|
13
13
|
import * as _geospatial_sdk_core from '@geospatial-sdk/core';
|
|
14
|
-
import { MapContext, MapContextLayer, Extent, SourceLoadErrorEvent, MapContextLayerGeojson } from '@geospatial-sdk/core';
|
|
14
|
+
import { MapContext, MapContextLayer, MapContextLayerMapLibreStyle, Extent, SourceLoadErrorEvent, MapContextLayerGeojson } from '@geospatial-sdk/core';
|
|
15
15
|
import * as _ngrx_store from '@ngrx/store';
|
|
16
16
|
import { Action } from '@ngrx/store';
|
|
17
17
|
import { Style } from 'ol/style.js';
|
|
18
18
|
import { StyleLike } from 'ol/style/Style.js';
|
|
19
19
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
20
|
-
import
|
|
20
|
+
import { GeoadminOptions, GeonamesOptions, DataGouvFrOptions, GeocodingResult } from '@geospatial-sdk/geocoding';
|
|
21
21
|
import { UntypedFormControl, FormControl } from '@angular/forms';
|
|
22
22
|
import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
23
|
-
import * as
|
|
23
|
+
import * as geonetwork_ui from 'geonetwork-ui';
|
|
24
|
+
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
25
|
+
import { CdkOverlayOrigin, ConnectedPosition, CdkConnectedOverlay, CdkScrollable } from '@angular/cdk/overlay';
|
|
24
26
|
import { OgcApiEndpoint, WfsEndpoint, MimeType, WfsFeatureTypeFull, WmsLayerFull, WmtsLayer, StacItem, WfsVersion, OgcApiCollectionInfo, OgcApiRecord, GetCollectionItemsOptions, StacItemsDocument } from '@camptocamp/ogc-client';
|
|
25
27
|
import OlMap from 'ol/Map.js';
|
|
26
28
|
import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/core/dist/model';
|
|
27
|
-
import { MatSort } from '@angular/material/sort';
|
|
29
|
+
import { MatSort, Sort } from '@angular/material/sort';
|
|
28
30
|
import { DataSource } from '@angular/cdk/collections';
|
|
29
31
|
import { MatPaginator } from '@angular/material/paginator';
|
|
30
32
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
@@ -38,8 +40,6 @@ import * as chart_js from 'chart.js';
|
|
|
38
40
|
import { Chart, ChartType, ChartData, ChartOptions } from 'chart.js';
|
|
39
41
|
import Duration from 'duration-relativetimeformat';
|
|
40
42
|
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
43
|
import { CdkScrollable as CdkScrollable$1 } from '@angular/cdk/scrolling';
|
|
44
44
|
import { EmblaCarouselType } from 'embla-carousel';
|
|
45
45
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
@@ -242,6 +242,16 @@ interface AssociatedRecord {
|
|
|
242
242
|
uniqueIdentifier: string;
|
|
243
243
|
associationType: AssociationType;
|
|
244
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;
|
|
254
|
+
}
|
|
245
255
|
interface DatasetRecord extends BaseRecord {
|
|
246
256
|
kind: 'dataset';
|
|
247
257
|
status: RecordStatus;
|
|
@@ -754,7 +764,8 @@ type FieldFilterByRange = {
|
|
|
754
764
|
start?: Date;
|
|
755
765
|
end?: Date;
|
|
756
766
|
};
|
|
757
|
-
type
|
|
767
|
+
type FieldFilterByBoundingBox = [number, number, number, number];
|
|
768
|
+
type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange | FieldFilterByBoundingBox;
|
|
758
769
|
type FieldFilters = Record<FieldName$1, FieldFilter$1>;
|
|
759
770
|
type QueryString = {
|
|
760
771
|
query_string: string;
|
|
@@ -766,7 +777,23 @@ type QueryRange = {
|
|
|
766
777
|
lte: string;
|
|
767
778
|
}>;
|
|
768
779
|
};
|
|
769
|
-
type
|
|
780
|
+
type QueryGeoShape = {
|
|
781
|
+
geo_shape: {
|
|
782
|
+
geom: {
|
|
783
|
+
shape: {
|
|
784
|
+
type: string;
|
|
785
|
+
coordinates: number[][];
|
|
786
|
+
};
|
|
787
|
+
relation: string;
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
};
|
|
791
|
+
type QueryBool = {
|
|
792
|
+
bool: {
|
|
793
|
+
filter: QueryRange[];
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
type FilterQuery = Array<QueryString | QueryRange | QueryGeoShape | QueryBool>;
|
|
770
797
|
|
|
771
798
|
interface TermsAggregationParams {
|
|
772
799
|
type: 'terms';
|
|
@@ -1051,8 +1078,7 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1051
1078
|
abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
|
|
1052
1079
|
abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1053
1080
|
abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1054
|
-
abstract
|
|
1055
|
-
abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1081
|
+
abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1056
1082
|
abstract fuzzySearch(query: string): Observable<SearchResults>;
|
|
1057
1083
|
abstract canDuplicate(record: CatalogRecord): boolean;
|
|
1058
1084
|
abstract canDelete(record: CatalogRecord): Observable<boolean>;
|
|
@@ -1138,8 +1164,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1138
1164
|
private mapEmbeddedFeatureCatalog;
|
|
1139
1165
|
getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
|
|
1140
1166
|
getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1141
|
-
|
|
1142
|
-
getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1167
|
+
getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1143
1168
|
aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1144
1169
|
fuzzySearch(query: string): Observable<SearchResults>;
|
|
1145
1170
|
getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
|
|
@@ -1708,13 +1733,15 @@ declare class ElasticsearchService {
|
|
|
1708
1733
|
private get metadataLang();
|
|
1709
1734
|
getSearchRequestBody(aggregations?: any, size?: number, from?: number, sortBy?: SortByField, requestFields?: RequestFields, searchFilters?: SearchFilters, configFilters?: SearchFilters, uuids?: string[], geometry?: Geometry): EsSearchParams;
|
|
1710
1735
|
private processRuntimeFields;
|
|
1711
|
-
registerRuntimeField(fieldName: string, expression: string): void;
|
|
1736
|
+
registerRuntimeField(fieldName: string, expression: string, type?: 'keyword' | 'date'): void;
|
|
1712
1737
|
getMetadataByIdsPayload(uuids: string[]): EsSearchParams;
|
|
1713
1738
|
getRelatedRecordPayload(record: CatalogRecord, size?: number, _source?: string[]): EsSearchParams;
|
|
1714
1739
|
private buildPayloadSort;
|
|
1715
1740
|
private injectLangInQueryStringFields;
|
|
1716
1741
|
private getQueryLang;
|
|
1717
1742
|
private isCurrentSearchLang;
|
|
1743
|
+
private findSpatialFilterExtent;
|
|
1744
|
+
private buildDateRangeQuery;
|
|
1718
1745
|
private filtersToQuery;
|
|
1719
1746
|
private mustNotFilters;
|
|
1720
1747
|
private buildPayloadQuery;
|
|
@@ -2138,7 +2165,7 @@ declare class DateService {
|
|
|
2138
2165
|
dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
|
|
2139
2166
|
private getDateObject;
|
|
2140
2167
|
private getLocaleAndDate;
|
|
2141
|
-
|
|
2168
|
+
getDateFnsLocale(): Promise<Locale>;
|
|
2142
2169
|
formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2143
2170
|
formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2144
2171
|
formatRelativeDateTime(date: Date | string): Promise<string>;
|
|
@@ -2156,6 +2183,9 @@ declare function bytesToMegabytes(bytes: number): number;
|
|
|
2156
2183
|
*/
|
|
2157
2184
|
declare function propagateToDocumentOnly(event: Event): void;
|
|
2158
2185
|
|
|
2186
|
+
declare function isFileExtensionValid(fileName: string, acceptedExtensions: string[]): boolean;
|
|
2187
|
+
declare function readFileAsText(file: File): Promise<string>;
|
|
2188
|
+
|
|
2159
2189
|
declare function formatUserInfo(userInfo: string | unknown, displayCount?: boolean): string;
|
|
2160
2190
|
|
|
2161
2191
|
type FuzzyFilter = (input: string) => boolean;
|
|
@@ -2171,6 +2201,7 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
|
|
|
2171
2201
|
*/
|
|
2172
2202
|
declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
|
|
2173
2203
|
type BoundingBox = [number, number, number, number];
|
|
2204
|
+
declare function isBoundingBox(value: unknown): value is BoundingBox;
|
|
2174
2205
|
declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
|
|
2175
2206
|
/**
|
|
2176
2207
|
* Builds the closed GeoJSON Polygon matching the given bounding box.
|
|
@@ -2376,14 +2407,7 @@ declare function checkFileFormat(link: DatasetOnlineResource | ServiceOnlineReso
|
|
|
2376
2407
|
declare function getBadgeColor(linkFormat: FileFormat): string;
|
|
2377
2408
|
declare function getLinkId(link: DatasetOnlineResource): string;
|
|
2378
2409
|
declare function getLinkLabel(link: DatasetOnlineResource | ServiceOnlineResource): string;
|
|
2379
|
-
declare function getLayers(url: string, serviceProtocol: ServiceProtocol): Promise<
|
|
2380
|
-
name: string;
|
|
2381
|
-
hasRecords?: boolean;
|
|
2382
|
-
hasFeatures?: boolean;
|
|
2383
|
-
hasVectorTiles?: boolean;
|
|
2384
|
-
hasMapTiles?: boolean;
|
|
2385
|
-
hasDataQueries?: boolean;
|
|
2386
|
-
}[] | _camptocamp_ogc_client.WfsFeatureTypeFull[] | _camptocamp_ogc_client.WmsLayerFull[] | _camptocamp_ogc_client.WmtsLayer[]>;
|
|
2410
|
+
declare function getLayers(url: string, serviceProtocol: ServiceProtocol, deep?: boolean): Promise<any[]>;
|
|
2387
2411
|
declare function wmsLayerFlatten(layerFull: any): any[];
|
|
2388
2412
|
declare function getMimeTypeForFormat(format: FileFormat): string | null;
|
|
2389
2413
|
|
|
@@ -2403,6 +2427,15 @@ declare class LinkClassifierService {
|
|
|
2403
2427
|
static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
|
|
2404
2428
|
}
|
|
2405
2429
|
|
|
2430
|
+
declare class AutofocusDirective {
|
|
2431
|
+
private el;
|
|
2432
|
+
private injector;
|
|
2433
|
+
set autofocus(active: boolean);
|
|
2434
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
|
|
2435
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[gnUiAutofocus]", never, { "autofocus": { "alias": "gnUiAutofocus"; "required": false; }; }, {}, never, never, true, never>;
|
|
2436
|
+
static ngAcceptInputType_autofocus: unknown;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2406
2439
|
declare class ImageFallbackDirective {
|
|
2407
2440
|
private el;
|
|
2408
2441
|
fallbackUrl: string;
|
|
@@ -2727,6 +2760,13 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
2727
2760
|
triggerRef: MatAutocompleteTrigger;
|
|
2728
2761
|
autocomplete: MatAutocomplete;
|
|
2729
2762
|
inputRef: ElementRef<HTMLInputElement>;
|
|
2763
|
+
/**
|
|
2764
|
+
* Custom template to render each suggestion. Takes precedence over
|
|
2765
|
+
* `displayWithFn` when set.
|
|
2766
|
+
*/
|
|
2767
|
+
displayWithTemplate?: TemplateRef<{
|
|
2768
|
+
$implicit: AutocompleteItem;
|
|
2769
|
+
}>;
|
|
2730
2770
|
searching: boolean;
|
|
2731
2771
|
control: UntypedFormControl;
|
|
2732
2772
|
cancelEnter: boolean;
|
|
@@ -2772,7 +2812,7 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
2772
2812
|
handleSelection(event: MatAutocompleteSelectedEvent): void;
|
|
2773
2813
|
handleInput(event: InputEvent): void;
|
|
2774
2814
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
2775
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "gn-ui-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "enterButton": { "alias": "enterButton"; "required": false; }; "action": { "alias": "action"; "required": false; }; "value": { "alias": "value"; "required": false; }; "clearOnSelection": { "alias": "clearOnSelection"; "required": false; }; "preventCompleteOnSelection": { "alias": "preventCompleteOnSelection"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "minCharacterCount": { "alias": "minCharacterCount"; "required": false; }; "allowSubmit": { "alias": "allowSubmit"; "required": false; }; "forceTrackPosition": { "alias": "forceTrackPosition"; "required": false; }; "displayWithFn": { "alias": "displayWithFn"; "required": false; }; }, { "itemSelected": "itemSelected"; "inputSubmitted": "inputSubmitted"; "inputCleared": "inputCleared"; "isSearchActive": "isSearchActive"; }, never, never, true, never>;
|
|
2815
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "gn-ui-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "enterButton": { "alias": "enterButton"; "required": false; }; "action": { "alias": "action"; "required": false; }; "value": { "alias": "value"; "required": false; }; "clearOnSelection": { "alias": "clearOnSelection"; "required": false; }; "preventCompleteOnSelection": { "alias": "preventCompleteOnSelection"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "minCharacterCount": { "alias": "minCharacterCount"; "required": false; }; "allowSubmit": { "alias": "allowSubmit"; "required": false; }; "forceTrackPosition": { "alias": "forceTrackPosition"; "required": false; }; "displayWithTemplate": { "alias": "displayWithTemplate"; "required": false; }; "displayWithFn": { "alias": "displayWithFn"; "required": false; }; }, { "itemSelected": "itemSelected"; "inputSubmitted": "inputSubmitted"; "inputCleared": "inputCleared"; "isSearchActive": "isSearchActive"; }, never, never, true, never>;
|
|
2776
2816
|
}
|
|
2777
2817
|
|
|
2778
2818
|
declare class BadgeComponent {
|
|
@@ -2830,30 +2870,47 @@ declare class CopyTextButtonComponent {
|
|
|
2830
2870
|
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>;
|
|
2831
2871
|
}
|
|
2832
2872
|
|
|
2873
|
+
declare function provideLocalizedDateAdapter(): Provider[];
|
|
2874
|
+
|
|
2833
2875
|
declare class DatePickerComponent {
|
|
2834
|
-
private dateAdapter;
|
|
2835
|
-
private translate;
|
|
2836
2876
|
date: Date;
|
|
2837
2877
|
dateChange: EventEmitter<Date>;
|
|
2838
|
-
constructor();
|
|
2839
2878
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
2840
2879
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
|
|
2841
2880
|
}
|
|
2842
2881
|
|
|
2843
|
-
|
|
2844
|
-
|
|
2882
|
+
type DateRangeBound = 'start' | 'end';
|
|
2883
|
+
declare class DateRangeDropdownComponent {
|
|
2884
|
+
private scrollStrategies;
|
|
2885
|
+
private dateAdapter;
|
|
2886
|
+
private dateFormats;
|
|
2845
2887
|
private cdr;
|
|
2846
2888
|
title: string;
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2889
|
+
dateRange: FieldFilterByRange;
|
|
2890
|
+
dateRangeChange: EventEmitter<FieldFilterByRange>;
|
|
2891
|
+
overlayOrigin: CdkOverlayOrigin;
|
|
2892
|
+
overlayPositions: ConnectedPosition[];
|
|
2893
|
+
scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
2894
|
+
overlayOpen: boolean;
|
|
2895
|
+
expandedBound: DateRangeBound | null;
|
|
2896
|
+
invalidBounds: Record<DateRangeBound, boolean>;
|
|
2897
|
+
constructor();
|
|
2898
|
+
get startDate(): Date;
|
|
2899
|
+
get endDate(): Date;
|
|
2900
|
+
get selectedDatesCount(): number;
|
|
2901
|
+
openOverlay(): void;
|
|
2902
|
+
closeOverlay(): void;
|
|
2903
|
+
toggleBound(bound: DateRangeBound): void;
|
|
2904
|
+
formatDate(date: Date): string;
|
|
2905
|
+
onDateInput(bound: DateRangeBound, event: Event): void;
|
|
2906
|
+
normalizeDateInput(bound: DateRangeBound, event: Event): void;
|
|
2907
|
+
private isAcceptable;
|
|
2908
|
+
setStartDate(date: Date): void;
|
|
2909
|
+
setEndDate(date: Date): void;
|
|
2910
|
+
clearDates(event: Event): void;
|
|
2911
|
+
private applyDateRange;
|
|
2855
2912
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
|
|
2856
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "
|
|
2913
|
+
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>;
|
|
2857
2914
|
}
|
|
2858
2915
|
|
|
2859
2916
|
declare class DateRangePickerComponent {
|
|
@@ -2866,31 +2923,43 @@ declare class DateRangePickerComponent {
|
|
|
2866
2923
|
}
|
|
2867
2924
|
|
|
2868
2925
|
declare const placeholder = "dropFile";
|
|
2926
|
+
type DragAndDropFileInputError = 'invalid-extension' | 'file-too-large';
|
|
2869
2927
|
declare class DragAndDropFileInputComponent {
|
|
2870
2928
|
placeholder: string;
|
|
2871
2929
|
accept: string;
|
|
2872
|
-
|
|
2930
|
+
maxFileSizeMb: number | null;
|
|
2931
|
+
icon: string | null;
|
|
2932
|
+
dropzoneBackgroundColor: string | null;
|
|
2933
|
+
textClass: string;
|
|
2934
|
+
extraClass: string;
|
|
2935
|
+
showFileName: boolean;
|
|
2936
|
+
fileChange: EventEmitter<File>;
|
|
2937
|
+
errorChange: EventEmitter<DragAndDropFileInputError>;
|
|
2873
2938
|
selectedFile: File;
|
|
2939
|
+
private dropzone;
|
|
2874
2940
|
get fileName(): string | null;
|
|
2941
|
+
get maxFileSizeBytes(): number | null;
|
|
2875
2942
|
selectFile(event: any): void;
|
|
2943
|
+
openFileSelector(): void;
|
|
2944
|
+
clear(): void;
|
|
2876
2945
|
static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropFileInputComponent, never>;
|
|
2877
|
-
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>;
|
|
2946
|
+
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>;
|
|
2878
2947
|
}
|
|
2879
2948
|
|
|
2880
|
-
interface Choice$1 {
|
|
2881
|
-
value:
|
|
2949
|
+
interface Choice$1<T = unknown> {
|
|
2950
|
+
value: T;
|
|
2882
2951
|
label: string;
|
|
2883
2952
|
}
|
|
2884
2953
|
|
|
2885
|
-
declare class DropdownMultiselectComponent {
|
|
2954
|
+
declare class DropdownMultiselectComponent<T = unknown> {
|
|
2886
2955
|
private scrollStrategies;
|
|
2887
2956
|
title: string;
|
|
2888
|
-
choices: Choice$1[];
|
|
2889
|
-
selected:
|
|
2957
|
+
choices: Choice$1<T>[];
|
|
2958
|
+
selected: T[];
|
|
2890
2959
|
allowSearch: boolean;
|
|
2891
2960
|
maxRows: number;
|
|
2892
2961
|
searchInputValue: string;
|
|
2893
|
-
selectValues: EventEmitter<
|
|
2962
|
+
selectValues: EventEmitter<T[]>;
|
|
2894
2963
|
overlayOrigin: CdkOverlayOrigin;
|
|
2895
2964
|
overlay: CdkConnectedOverlay;
|
|
2896
2965
|
overlayContainer: ElementRef;
|
|
@@ -2903,8 +2972,8 @@ declare class DropdownMultiselectComponent {
|
|
|
2903
2972
|
overlayMaxHeight: string;
|
|
2904
2973
|
id: string;
|
|
2905
2974
|
get hasSelectedChoices(): boolean;
|
|
2906
|
-
get selectedChoices(): Choice$1[];
|
|
2907
|
-
get filteredChoicesByText(): Choice$1[];
|
|
2975
|
+
get selectedChoices(): Choice$1<T>[];
|
|
2976
|
+
get filteredChoicesByText(): Choice$1<T>[];
|
|
2908
2977
|
get focusedIndex(): number | -1;
|
|
2909
2978
|
private setFocus;
|
|
2910
2979
|
openOverlay(): Promise<[void, any]>;
|
|
@@ -2914,13 +2983,13 @@ declare class DropdownMultiselectComponent {
|
|
|
2914
2983
|
focusFirstItem(): void;
|
|
2915
2984
|
focusLastItem(): void;
|
|
2916
2985
|
shiftItemFocus(shift: number): void;
|
|
2917
|
-
isSelected(choice: Choice$1): boolean;
|
|
2918
|
-
select(choice: Choice$1
|
|
2919
|
-
toggle(choice: Choice$1): void;
|
|
2986
|
+
isSelected(choice: Choice$1<T>): boolean;
|
|
2987
|
+
select(choice: Choice$1<T>, selected: boolean): void;
|
|
2988
|
+
toggle(choice: Choice$1<T>): void;
|
|
2920
2989
|
clearSelection(event: Event): void;
|
|
2921
2990
|
clearSearchInputValue(event: Event): void;
|
|
2922
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMultiselectComponent
|
|
2923
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMultiselectComponent
|
|
2991
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMultiselectComponent<any>, never>;
|
|
2992
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMultiselectComponent<any>, "gn-ui-dropdown-multiselect", never, { "title": { "alias": "title"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "allowSearch": { "alias": "allowSearch"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "searchInputValue": { "alias": "searchInputValue"; "required": false; }; }, { "selectValues": "selectValues"; }, never, never, true, never>;
|
|
2924
2993
|
}
|
|
2925
2994
|
|
|
2926
2995
|
interface DropdownChoice {
|
|
@@ -3159,13 +3228,52 @@ declare class DateRangeInputsComponent {
|
|
|
3159
3228
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputsComponent, "gn-ui-date-range-inputs", never, { "temporalExtent": { "alias": "temporalExtent"; "required": false; }; }, { "temporalExtentChange": "temporalExtentChange"; }, never, never, true, never>;
|
|
3160
3229
|
}
|
|
3161
3230
|
|
|
3231
|
+
interface SpatialExtentDropdownError {
|
|
3232
|
+
key: string;
|
|
3233
|
+
params?: Record<string, string | number>;
|
|
3234
|
+
}
|
|
3235
|
+
declare class SpatialExtentDropdownComponent {
|
|
3236
|
+
private cd;
|
|
3237
|
+
private scrollStrategies;
|
|
3238
|
+
title: string;
|
|
3239
|
+
maxFileSizeMb: number | null;
|
|
3240
|
+
set initialBbox(value: BoundingBox | null);
|
|
3241
|
+
bboxChange: EventEmitter<BoundingBox>;
|
|
3242
|
+
errorChange: EventEmitter<SpatialExtentDropdownError>;
|
|
3243
|
+
bbox: BoundingBox | null;
|
|
3244
|
+
fileName: string;
|
|
3245
|
+
overlayOrigin: CdkOverlayOrigin;
|
|
3246
|
+
overlay: CdkConnectedOverlay;
|
|
3247
|
+
fileInput: DragAndDropFileInputComponent;
|
|
3248
|
+
overlayPositions: ConnectedPosition[];
|
|
3249
|
+
scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
|
|
3250
|
+
overlayOpen: boolean;
|
|
3251
|
+
overlayMinWidth: string;
|
|
3252
|
+
errorKey: string | null;
|
|
3253
|
+
get hasSelection(): boolean;
|
|
3254
|
+
get selectionLabelKey(): "search.filters.spatialExtent.bboxFromFile" | "search.filters.spatialExtent.bboxInitial";
|
|
3255
|
+
get selectionDeleteLabelKey(): "search.filters.spatialExtent.bboxFromFileDelete" | "search.filters.spatialExtent.bboxInitialDelete";
|
|
3256
|
+
get selectionLabelParams(): {
|
|
3257
|
+
fileName: string;
|
|
3258
|
+
};
|
|
3259
|
+
openOverlay(): void;
|
|
3260
|
+
closeOverlay(): void;
|
|
3261
|
+
toggleOverlay(): void;
|
|
3262
|
+
handleFileSelected(file: File): Promise<void>;
|
|
3263
|
+
handleFileError(error: DragAndDropFileInputError): void;
|
|
3264
|
+
private setError;
|
|
3265
|
+
removeSelection(event: Event): void;
|
|
3266
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentDropdownComponent, never>;
|
|
3267
|
+
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>;
|
|
3268
|
+
}
|
|
3269
|
+
|
|
3162
3270
|
declare class ResultsHitsSearchKindComponent implements OnChanges {
|
|
3163
3271
|
selected: string[];
|
|
3164
3272
|
choices: Choice$1[];
|
|
3165
3273
|
selectionChanged: EventEmitter<string[]>;
|
|
3166
3274
|
availableChoices: Choice$1[];
|
|
3167
3275
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3168
|
-
buildFilterChoices(availableValues: Choice$1[]): Choice$1[];
|
|
3276
|
+
buildFilterChoices(availableValues: Choice$1[]): Choice$1<unknown>[];
|
|
3169
3277
|
onSelectedValues(values: string[]): void;
|
|
3170
3278
|
isSelectedChoice(choiceValue: string): boolean;
|
|
3171
3279
|
isAllChoice(choiceValue: string): boolean;
|
|
@@ -3275,26 +3383,6 @@ declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
|
3275
3383
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerRecordPreviewComponent, "gn-ui-add-layer-record-preview", never, {}, {}, never, never, true, never>;
|
|
3276
3384
|
}
|
|
3277
3385
|
|
|
3278
|
-
declare class GeocodingComponent implements OnDestroy {
|
|
3279
|
-
private mapFacade;
|
|
3280
|
-
private geocodingService;
|
|
3281
|
-
searchText: string;
|
|
3282
|
-
results: any[];
|
|
3283
|
-
searchTextChanged: Subject<string>;
|
|
3284
|
-
destroy$: Subject<void>;
|
|
3285
|
-
errorMessage: string | null;
|
|
3286
|
-
constructor();
|
|
3287
|
-
ngOnDestroy(): void;
|
|
3288
|
-
onSearchChange(searchText: string): void;
|
|
3289
|
-
clearSearch(): void;
|
|
3290
|
-
zoomToLocation(result: any): Promise<void>;
|
|
3291
|
-
zoomToPoint(pointCoords: [number, number]): Promise<void>;
|
|
3292
|
-
zoomToPolygon(polygonCoords: [[number, number][]]): Promise<void>;
|
|
3293
|
-
onEnterPress(): void;
|
|
3294
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GeocodingComponent, never>;
|
|
3295
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GeocodingComponent, "gn-ui-geocoding", never, {}, {}, never, never, true, never>;
|
|
3296
|
-
}
|
|
3297
|
-
|
|
3298
3386
|
interface NotificationContent {
|
|
3299
3387
|
type: 'info' | 'warning' | 'error' | 'success';
|
|
3300
3388
|
title: string;
|
|
@@ -3307,7 +3395,7 @@ type NotificationWithIdentity = NotificationContent & {
|
|
|
3307
3395
|
};
|
|
3308
3396
|
declare class NotificationsService {
|
|
3309
3397
|
notifications$: BehaviorSubject<NotificationWithIdentity[]>;
|
|
3310
|
-
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error):
|
|
3398
|
+
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): number;
|
|
3311
3399
|
removeNotificationById(id: number): void;
|
|
3312
3400
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
|
|
3313
3401
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
|
|
@@ -3328,6 +3416,32 @@ declare class FeatureSearchModule {
|
|
|
3328
3416
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureSearchModule>;
|
|
3329
3417
|
}
|
|
3330
3418
|
|
|
3419
|
+
type GeoadminGeocodingProvider = ['geoadmin', GeoadminOptions];
|
|
3420
|
+
type GeonamesGeocodingProvider = ['geonames', GeonamesOptions];
|
|
3421
|
+
type DataGouvFrGeocodingProvider = ['data-gouv-fr', DataGouvFrOptions];
|
|
3422
|
+
type GeocodingProvider = GeoadminGeocodingProvider | GeonamesGeocodingProvider | DataGouvFrGeocodingProvider;
|
|
3423
|
+
declare const GEOCODING_PROVIDER: InjectionToken<GeocodingProvider>;
|
|
3424
|
+
declare class GeocodingService {
|
|
3425
|
+
private provider;
|
|
3426
|
+
query(text: string): Observable<GeocodingResult[]>;
|
|
3427
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GeocodingService, never>;
|
|
3428
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GeocodingService>;
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
declare class LocationSearchComponent {
|
|
3432
|
+
private geocodingService;
|
|
3433
|
+
placeholder: string;
|
|
3434
|
+
displayWithTemplate?: TemplateRef<{
|
|
3435
|
+
$implicit: GeocodingResult;
|
|
3436
|
+
}>;
|
|
3437
|
+
resultSelected: EventEmitter<GeocodingResult>;
|
|
3438
|
+
displayWithFn: (item: AutocompleteItem) => string;
|
|
3439
|
+
searchAction: (text: string) => Observable<AutocompleteItem[]>;
|
|
3440
|
+
handleItemSelected(item: AutocompleteItem): void;
|
|
3441
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocationSearchComponent, never>;
|
|
3442
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LocationSearchComponent, "gn-ui-location-search", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "displayWithTemplate": { "alias": "displayWithTemplate"; "required": false; }; }, { "resultSelected": "resultSelected"; }, never, never, true, never>;
|
|
3443
|
+
}
|
|
3444
|
+
|
|
3331
3445
|
declare const FILTER_GEOMETRY: InjectionToken<Promise<Geometry>>;
|
|
3332
3446
|
|
|
3333
3447
|
declare const RECORD_DATASET_URL_TOKEN: InjectionToken<string>;
|
|
@@ -3633,7 +3747,7 @@ declare class SearchService implements SearchServiceI {
|
|
|
3633
3747
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
|
|
3634
3748
|
}
|
|
3635
3749
|
|
|
3636
|
-
type FieldType = 'values' | 'dateRange';
|
|
3750
|
+
type FieldType = 'values' | 'dateRange' | 'spatialExtent';
|
|
3637
3751
|
type FieldValue = string | number;
|
|
3638
3752
|
interface FieldAvailableValue {
|
|
3639
3753
|
value: FieldValue;
|
|
@@ -3731,6 +3845,15 @@ declare class DateRangeSearchField extends SimpleSearchField {
|
|
|
3731
3845
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3732
3846
|
getType(): FieldType;
|
|
3733
3847
|
}
|
|
3848
|
+
declare class ResourceCreationRevisionDateSearchField extends DateRangeSearchField {
|
|
3849
|
+
constructor(injector: Injector, order?: 'asc' | 'desc');
|
|
3850
|
+
}
|
|
3851
|
+
declare class BoundingBoxSearchField extends SimpleSearchField {
|
|
3852
|
+
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3853
|
+
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3854
|
+
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
3855
|
+
getType(): FieldType;
|
|
3856
|
+
}
|
|
3734
3857
|
declare class AvailableServicesField extends SimpleSearchField {
|
|
3735
3858
|
private translateService;
|
|
3736
3859
|
constructor(injector: Injector);
|
|
@@ -4636,17 +4759,23 @@ declare class FilterDropdownComponent implements OnInit {
|
|
|
4636
4759
|
private searchFacade;
|
|
4637
4760
|
private searchService;
|
|
4638
4761
|
private fieldsService;
|
|
4762
|
+
private notificationsService;
|
|
4763
|
+
private translateService;
|
|
4639
4764
|
fieldName: string;
|
|
4640
4765
|
title: string;
|
|
4766
|
+
spatialExtentMaxFileSize: number;
|
|
4641
4767
|
fieldType: FieldType;
|
|
4642
|
-
dateRange: DateRange;
|
|
4643
4768
|
choices$: Observable<Choice$1[]>;
|
|
4644
4769
|
selected$: Observable<FieldValue[]>;
|
|
4645
4770
|
selectedDateRange$: Observable<DateRange>;
|
|
4771
|
+
selectedBoundingBox$: Observable<BoundingBox | null>;
|
|
4646
4772
|
onSelectedValues(values: unknown[]): void;
|
|
4773
|
+
private spatialExtentErrorNotificationId;
|
|
4774
|
+
onBboxChange(bbox: BoundingBox | null): void;
|
|
4775
|
+
onSpatialExtentError(error: SpatialExtentDropdownError): void;
|
|
4776
|
+
private clearSpatialExtentErrorNotification;
|
|
4647
4777
|
ngOnInit(): void;
|
|
4648
|
-
|
|
4649
|
-
onEndDateChange(end: Date): void;
|
|
4778
|
+
onDateRangeChange(dateRange: DateRange): void;
|
|
4650
4779
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
|
|
4651
4780
|
static ɵcmp: i0.ɵɵComponentDeclaration<FilterDropdownComponent, "gn-ui-filter-dropdown", never, { "fieldName": { "alias": "fieldName"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
|
|
4652
4781
|
}
|
|
@@ -4843,7 +4972,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4843
4972
|
private searchFacade;
|
|
4844
4973
|
private searchService;
|
|
4845
4974
|
private fieldsService;
|
|
4846
|
-
private
|
|
4975
|
+
private dateService;
|
|
4847
4976
|
private translate;
|
|
4848
4977
|
fieldName: string;
|
|
4849
4978
|
fieldType: FieldType;
|
|
@@ -4852,6 +4981,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4852
4981
|
ngOnInit(): void;
|
|
4853
4982
|
translateLabel(): void;
|
|
4854
4983
|
getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
|
|
4984
|
+
private formatBound;
|
|
4855
4985
|
removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
|
|
4856
4986
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
|
|
4857
4987
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -4890,10 +5020,11 @@ interface DatasetHeaders {
|
|
|
4890
5020
|
interface PropertyInfo {
|
|
4891
5021
|
name: string;
|
|
4892
5022
|
label: string;
|
|
4893
|
-
type: 'number' | 'date' | '
|
|
5023
|
+
type: 'number' | 'date' | 'boolean' | 'string' | 'other';
|
|
4894
5024
|
}
|
|
4895
5025
|
interface DatasetInfo {
|
|
4896
5026
|
itemsCount: number;
|
|
5027
|
+
hasGeometry: boolean;
|
|
4897
5028
|
}
|
|
4898
5029
|
type FieldName = string;
|
|
4899
5030
|
type SumOperation = ['sum', FieldName];
|
|
@@ -4925,8 +5056,12 @@ declare class BaseReader {
|
|
|
4925
5056
|
protected sort: FieldSort[];
|
|
4926
5057
|
protected startIndex: number;
|
|
4927
5058
|
protected count: number;
|
|
5059
|
+
protected loadPromise_: Promise<void>;
|
|
5060
|
+
protected cacheEnabled: boolean;
|
|
4928
5061
|
constructor(url: string);
|
|
5062
|
+
enableCache(enabled: boolean): void;
|
|
4929
5063
|
load(): void;
|
|
5064
|
+
get isLoaded(): Promise<void>;
|
|
4930
5065
|
get properties(): Promise<PropertyInfo[]>;
|
|
4931
5066
|
get info(): Promise<DatasetInfo>;
|
|
4932
5067
|
read(): Promise<DataItem[]>;
|
|
@@ -4939,21 +5074,22 @@ declare class BaseReader {
|
|
|
4939
5074
|
limit(startIndex: number, count: number): this;
|
|
4940
5075
|
}
|
|
4941
5076
|
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
wfsVersion?: WfsVersion;
|
|
5077
|
+
interface OpenDatasetOptions {
|
|
5078
|
+
typeHint?: SupportedType;
|
|
4945
5079
|
wfsFeatureType?: string;
|
|
4946
|
-
|
|
5080
|
+
enableCache?: boolean;
|
|
5081
|
+
}
|
|
5082
|
+
declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
|
|
4947
5083
|
/**
|
|
4948
5084
|
* This fetches the full dataset at the given URL and parses it according to its mime type.
|
|
4949
5085
|
* All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
|
|
4950
5086
|
* File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
|
|
4951
|
-
* File type is determined
|
|
5087
|
+
* File type is determined like so:
|
|
4952
5088
|
* 1. if a type hint is given, use it
|
|
4953
5089
|
* 2. otherwise, look for a Content-Type header in the response with a supported mime type
|
|
4954
5090
|
* 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
|
|
4955
5091
|
*/
|
|
4956
|
-
declare function readDataset(url: string,
|
|
5092
|
+
declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
|
|
4957
5093
|
/**
|
|
4958
5094
|
* This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
|
|
4959
5095
|
*/
|
|
@@ -4966,31 +5102,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
|
|
|
4966
5102
|
*/
|
|
4967
5103
|
declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
|
|
4968
5104
|
|
|
4969
|
-
declare
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
5105
|
+
declare class Engine {
|
|
5106
|
+
private db;
|
|
5107
|
+
private init_;
|
|
5108
|
+
private makeInit;
|
|
5109
|
+
isReady(): Promise<Engine>;
|
|
5110
|
+
/**
|
|
5111
|
+
* Returns information about a dataset once it's loaded:
|
|
5112
|
+
* - a list of properties description
|
|
5113
|
+
* - the name of the dataset geometry column (null if no geometry present)
|
|
5114
|
+
* @param datasetId name of the table under which the dataset will be stored
|
|
5115
|
+
* @param loadQuery duckdb-specific query for creating a table out of the data
|
|
5116
|
+
* @param forceReload if true, any existing data will be dropped and redownloaded
|
|
5117
|
+
*/
|
|
5118
|
+
loadFile(datasetId: string, loadQuery: string, forceReload?: boolean): Promise<{
|
|
5119
|
+
properties: PropertyInfo[];
|
|
5120
|
+
geometryColumn: string | null;
|
|
5121
|
+
rowsCount: number;
|
|
5122
|
+
}>;
|
|
5123
|
+
registerData(name: string, buffer: Uint8Array): Promise<void>;
|
|
5124
|
+
/**
|
|
5125
|
+
* @param query duckdb-specific query for fetching items
|
|
5126
|
+
*/
|
|
5127
|
+
queryItems(query: string): Promise<DataItem[]>;
|
|
5128
|
+
close(): void;
|
|
4974
5129
|
}
|
|
4975
5130
|
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
protected
|
|
4983
|
-
|
|
5131
|
+
/**
|
|
5132
|
+
* This reader handles file formats supported natively by DuckDB
|
|
5133
|
+
*/
|
|
5134
|
+
declare class BaseFileReader extends BaseReader {
|
|
5135
|
+
protected engine: Engine;
|
|
5136
|
+
protected datasetId: string;
|
|
5137
|
+
protected properties_: PropertyInfo[];
|
|
5138
|
+
protected geometryColumn: string;
|
|
5139
|
+
protected rowsCount: number;
|
|
5140
|
+
protected generateDatasetId(): string;
|
|
5141
|
+
protected getLoadQuery(): Promise<string>;
|
|
5142
|
+
load(): Promise<void>;
|
|
4984
5143
|
get properties(): Promise<PropertyInfo[]>;
|
|
4985
5144
|
get info(): Promise<DatasetInfo>;
|
|
4986
5145
|
read(): Promise<DataItem[]>;
|
|
4987
5146
|
}
|
|
4988
5147
|
|
|
4989
5148
|
declare class GeojsonReader extends BaseFileReader {
|
|
4990
|
-
|
|
4991
|
-
items: DataItem[];
|
|
4992
|
-
properties: PropertyInfo[];
|
|
4993
|
-
}>;
|
|
5149
|
+
getLoadQuery(): Promise<string>;
|
|
4994
5150
|
}
|
|
4995
5151
|
|
|
4996
5152
|
interface WfsDownloadUrls {
|
|
@@ -5114,31 +5270,37 @@ interface TableItemModel {
|
|
|
5114
5270
|
id: TableItemId;
|
|
5115
5271
|
[key: string]: TableItemType;
|
|
5116
5272
|
}
|
|
5273
|
+
interface TableColumn {
|
|
5274
|
+
name: string;
|
|
5275
|
+
label: string;
|
|
5276
|
+
}
|
|
5117
5277
|
declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
5118
5278
|
private eltRef;
|
|
5119
5279
|
private cdr;
|
|
5120
5280
|
private translateService;
|
|
5121
|
-
|
|
5281
|
+
columnsFromFeatureCatalog: TableColumn[];
|
|
5122
5282
|
set featureAttributes(value: {
|
|
5123
5283
|
value: string;
|
|
5124
5284
|
label: string;
|
|
5125
5285
|
}[]);
|
|
5286
|
+
columnsFromDataset: TableColumn[];
|
|
5126
5287
|
set dataset(value: BaseReader);
|
|
5127
5288
|
activeId: TableItemId;
|
|
5128
5289
|
selected: EventEmitter<any>;
|
|
5129
5290
|
sort: MatSort;
|
|
5130
5291
|
paginator: MatPaginator;
|
|
5131
5292
|
dataset_: BaseReader;
|
|
5132
|
-
properties$: BehaviorSubject<string[]>;
|
|
5133
5293
|
dataSource: DataTableDataSource;
|
|
5134
5294
|
headerHeight: number;
|
|
5135
5295
|
count: number;
|
|
5136
5296
|
loading$: BehaviorSubject<boolean>;
|
|
5137
5297
|
error: any;
|
|
5298
|
+
get columns(): TableColumn[];
|
|
5299
|
+
get columnNames(): string[];
|
|
5138
5300
|
ngOnInit(): void;
|
|
5139
5301
|
ngAfterViewInit(): void;
|
|
5140
5302
|
ngOnChanges(): void;
|
|
5141
|
-
setSort(sort:
|
|
5303
|
+
setSort(sort: Sort): void;
|
|
5142
5304
|
setPagination(): void;
|
|
5143
5305
|
readData(): Promise<void>;
|
|
5144
5306
|
scrollToItem(itemId: TableItemId): void;
|
|
@@ -5174,6 +5336,7 @@ declare class FigureContainerComponent implements OnChanges {
|
|
|
5174
5336
|
static ɵcmp: i0.ɵɵComponentDeclaration<FigureContainerComponent, "gn-ui-figure-container", never, { "dataset": { "alias": "dataset"; "required": false; }; "expression": { "alias": "expression"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "digits": { "alias": "digits"; "required": false; }; }, {}, never, never, true, never>;
|
|
5175
5337
|
}
|
|
5176
5338
|
|
|
5339
|
+
declare const DEFAULT_BASEMAP_LAYER: MapContextLayerMapLibreStyle;
|
|
5177
5340
|
declare class MapContainerComponent implements AfterViewInit, OnChanges {
|
|
5178
5341
|
private doNotUseDefaultBasemap;
|
|
5179
5342
|
private basemapLayers;
|
|
@@ -5335,8 +5498,7 @@ declare class MdViewFacade {
|
|
|
5335
5498
|
otherError?: string;
|
|
5336
5499
|
}>;
|
|
5337
5500
|
related$: rxjs.Observable<CatalogRecord[]>;
|
|
5338
|
-
|
|
5339
|
-
sourceOf$: rxjs.Observable<CatalogRecord[]>;
|
|
5501
|
+
linkedRecords$: rxjs.Observable<LinkedRecord[]>;
|
|
5340
5502
|
chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
|
|
5341
5503
|
allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
|
|
5342
5504
|
resourceDoi$: rxjs.Observable<{
|
|
@@ -5422,16 +5584,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
|
|
|
5422
5584
|
}) => {
|
|
5423
5585
|
related: CatalogRecord[];
|
|
5424
5586
|
} & _ngrx_store.Action<"[Metadata view] Set related records">>;
|
|
5425
|
-
declare const
|
|
5426
|
-
|
|
5427
|
-
}) => {
|
|
5428
|
-
sources: CatalogRecord[];
|
|
5429
|
-
} & _ngrx_store.Action<"[Metadata view] Set sources">>;
|
|
5430
|
-
declare const setSourceOf: _ngrx_store.ActionCreator<"[Metadata view] Set has sources", (props: {
|
|
5431
|
-
sourceOf: CatalogRecord[];
|
|
5587
|
+
declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
|
|
5588
|
+
linkedRecords: LinkedRecord[];
|
|
5432
5589
|
}) => {
|
|
5433
|
-
|
|
5434
|
-
} & _ngrx_store.Action<"[Metadata view] Set
|
|
5590
|
+
linkedRecords: LinkedRecord[];
|
|
5591
|
+
} & _ngrx_store.Action<"[Metadata view] Set associated records">>;
|
|
5435
5592
|
declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
|
|
5436
5593
|
chartConfig: DatavizChartConfigModel;
|
|
5437
5594
|
}) => {
|
|
@@ -5487,9 +5644,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
|
|
|
5487
5644
|
declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
|
|
5488
5645
|
declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
|
|
5489
5646
|
declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
|
|
5647
|
+
declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
|
|
5490
5648
|
declare const mdview_actions_d_setRelated: typeof setRelated;
|
|
5491
|
-
declare const mdview_actions_d_setSourceOf: typeof setSourceOf;
|
|
5492
|
-
declare const mdview_actions_d_setSources: typeof setSources;
|
|
5493
5649
|
declare namespace mdview_actions_d {
|
|
5494
5650
|
export {
|
|
5495
5651
|
mdview_actions_d_addUserFeedback as addUserFeedback,
|
|
@@ -5507,9 +5663,8 @@ declare namespace mdview_actions_d {
|
|
|
5507
5663
|
mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
|
|
5508
5664
|
mdview_actions_d_setChartConfig as setChartConfig,
|
|
5509
5665
|
mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
|
|
5666
|
+
mdview_actions_d_setLinkedRecords as setLinkedRecords,
|
|
5510
5667
|
mdview_actions_d_setRelated as setRelated,
|
|
5511
|
-
mdview_actions_d_setSourceOf as setSourceOf,
|
|
5512
|
-
mdview_actions_d_setSources as setSources,
|
|
5513
5668
|
};
|
|
5514
5669
|
}
|
|
5515
5670
|
|
|
@@ -6912,6 +7067,7 @@ interface SearchConfig {
|
|
|
6912
7067
|
SEARCH_PRESET?: SearchPreset[];
|
|
6913
7068
|
ADVANCED_FILTERS?: [];
|
|
6914
7069
|
LIMIT?: number;
|
|
7070
|
+
SPATIAL_EXTENT_MAX_FILE_SIZE?: number;
|
|
6915
7071
|
}
|
|
6916
7072
|
interface SearchConfig {
|
|
6917
7073
|
FILTER_GEOMETRY?: Geometry;
|
|
@@ -6940,6 +7096,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6940
7096
|
|
|
6941
7097
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6942
7098
|
|
|
6943
|
-
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 };
|
|
6944
|
-
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, 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 };
|
|
7099
|
+
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, GEOCODING_PROVIDER, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingService, 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, LocationSearchComponent, 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 };
|
|
7100
|
+
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, GeocodingProvider, 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, QueryBool, 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 };
|
|
6945
7101
|
//# sourceMappingURL=index.d.ts.map
|