geonetwork-ui 2.10.3-dev.4154db07d → 2.11.0-dev.0ddf1324b
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 +1661 -986
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +298 -128
- 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 +130 -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 +20 -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.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/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/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/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/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 +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.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 -4
- package/translations/en.json +29 -3
- package/translations/es.json +27 -1
- package/translations/fr.json +30 -4
- package/translations/it.json +28 -2
- package/translations/nl.json +27 -1
- package/translations/pt.json +27 -1
- package/translations/sk.json +28 -2
- 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 → editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.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';
|
|
@@ -17,14 +17,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';
|
|
@@ -233,12 +233,24 @@ interface SourceRecord {
|
|
|
233
233
|
title?: string;
|
|
234
234
|
href?: string;
|
|
235
235
|
}
|
|
236
|
+
declare const associationTypeValues: readonly ["crossReference", "largerWorkCitation", "partOfSeamlessDatabase", "stereoMate", "isComposedOf", "collectiveTitle", "series", "dependency", "revisionOf"];
|
|
237
|
+
type AssociationType = (typeof associationTypeValues)[number];
|
|
236
238
|
/**
|
|
237
239
|
* Represents another record associated with this one (e.g. a parent/sibling dataset).
|
|
238
240
|
*/
|
|
239
241
|
interface AssociatedRecord {
|
|
240
|
-
|
|
241
|
-
associationType:
|
|
242
|
+
uniqueIdentifier: string;
|
|
243
|
+
associationType: AssociationType;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* Nature of the link between a record and another one; the association type is
|
|
247
|
+
* only known for 'sibling' relations, as it is held by the declaring record.
|
|
248
|
+
*/
|
|
249
|
+
type RecordRelation = 'source' | 'sourceOf' | 'sibling' | 'associated';
|
|
250
|
+
interface LinkedRecord {
|
|
251
|
+
record: CatalogRecord;
|
|
252
|
+
relation: RecordRelation;
|
|
253
|
+
associationType?: AssociationType;
|
|
242
254
|
}
|
|
243
255
|
interface DatasetRecord extends BaseRecord {
|
|
244
256
|
kind: 'dataset';
|
|
@@ -357,7 +369,19 @@ type SortOrder = 'asc' | 'desc';
|
|
|
357
369
|
interface SortParam {
|
|
358
370
|
[key: string]: SortOrder;
|
|
359
371
|
}
|
|
360
|
-
type
|
|
372
|
+
type EsFieldSort = {
|
|
373
|
+
order: SortOrder;
|
|
374
|
+
mode?: 'max' | 'min';
|
|
375
|
+
missing?: '_last';
|
|
376
|
+
nested?: {
|
|
377
|
+
path: string;
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
type SortParams = string | SortParam | {
|
|
381
|
+
[property: string]: EsFieldSort;
|
|
382
|
+
} | (string | SortParam | {
|
|
383
|
+
[property: string]: EsFieldSort;
|
|
384
|
+
})[];
|
|
361
385
|
interface EsRequestAggTerm {
|
|
362
386
|
field?: string;
|
|
363
387
|
size?: number;
|
|
@@ -740,7 +764,8 @@ type FieldFilterByRange = {
|
|
|
740
764
|
start?: Date;
|
|
741
765
|
end?: Date;
|
|
742
766
|
};
|
|
743
|
-
type
|
|
767
|
+
type FieldFilterByBoundingBox = [number, number, number, number];
|
|
768
|
+
type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange | FieldFilterByBoundingBox;
|
|
744
769
|
type FieldFilters = Record<FieldName$1, FieldFilter$1>;
|
|
745
770
|
type QueryString = {
|
|
746
771
|
query_string: string;
|
|
@@ -752,7 +777,23 @@ type QueryRange = {
|
|
|
752
777
|
lte: string;
|
|
753
778
|
}>;
|
|
754
779
|
};
|
|
755
|
-
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>;
|
|
756
797
|
|
|
757
798
|
interface TermsAggregationParams {
|
|
758
799
|
type: 'terms';
|
|
@@ -1037,8 +1078,7 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1037
1078
|
abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
|
|
1038
1079
|
abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1039
1080
|
abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1040
|
-
abstract
|
|
1041
|
-
abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1081
|
+
abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1042
1082
|
abstract fuzzySearch(query: string): Observable<SearchResults>;
|
|
1043
1083
|
abstract canDuplicate(record: CatalogRecord): boolean;
|
|
1044
1084
|
abstract canDelete(record: CatalogRecord): Observable<boolean>;
|
|
@@ -1124,8 +1164,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1124
1164
|
private mapEmbeddedFeatureCatalog;
|
|
1125
1165
|
getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
|
|
1126
1166
|
getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1127
|
-
|
|
1128
|
-
getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
|
|
1167
|
+
getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
|
|
1129
1168
|
aggregate(params: AggregationsParams): Observable<Aggregations>;
|
|
1130
1169
|
fuzzySearch(query: string): Observable<SearchResults>;
|
|
1131
1170
|
getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
|
|
@@ -1694,13 +1733,15 @@ declare class ElasticsearchService {
|
|
|
1694
1733
|
private get metadataLang();
|
|
1695
1734
|
getSearchRequestBody(aggregations?: any, size?: number, from?: number, sortBy?: SortByField, requestFields?: RequestFields, searchFilters?: SearchFilters, configFilters?: SearchFilters, uuids?: string[], geometry?: Geometry): EsSearchParams;
|
|
1696
1735
|
private processRuntimeFields;
|
|
1697
|
-
registerRuntimeField(fieldName: string, expression: string): void;
|
|
1736
|
+
registerRuntimeField(fieldName: string, expression: string, type?: 'keyword' | 'date'): void;
|
|
1698
1737
|
getMetadataByIdsPayload(uuids: string[]): EsSearchParams;
|
|
1699
1738
|
getRelatedRecordPayload(record: CatalogRecord, size?: number, _source?: string[]): EsSearchParams;
|
|
1700
1739
|
private buildPayloadSort;
|
|
1701
1740
|
private injectLangInQueryStringFields;
|
|
1702
1741
|
private getQueryLang;
|
|
1703
1742
|
private isCurrentSearchLang;
|
|
1743
|
+
private findSpatialFilterExtent;
|
|
1744
|
+
private buildDateRangeQuery;
|
|
1704
1745
|
private filtersToQuery;
|
|
1705
1746
|
private mustNotFilters;
|
|
1706
1747
|
private buildPayloadQuery;
|
|
@@ -2124,7 +2165,7 @@ declare class DateService {
|
|
|
2124
2165
|
dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
|
|
2125
2166
|
private getDateObject;
|
|
2126
2167
|
private getLocaleAndDate;
|
|
2127
|
-
|
|
2168
|
+
getDateFnsLocale(): Promise<Locale>;
|
|
2128
2169
|
formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2129
2170
|
formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
|
|
2130
2171
|
formatRelativeDateTime(date: Date | string): Promise<string>;
|
|
@@ -2142,6 +2183,9 @@ declare function bytesToMegabytes(bytes: number): number;
|
|
|
2142
2183
|
*/
|
|
2143
2184
|
declare function propagateToDocumentOnly(event: Event): void;
|
|
2144
2185
|
|
|
2186
|
+
declare function isFileExtensionValid(fileName: string, acceptedExtensions: string[]): boolean;
|
|
2187
|
+
declare function readFileAsText(file: File): Promise<string>;
|
|
2188
|
+
|
|
2145
2189
|
declare function formatUserInfo(userInfo: string | unknown, displayCount?: boolean): string;
|
|
2146
2190
|
|
|
2147
2191
|
type FuzzyFilter = (input: string) => boolean;
|
|
@@ -2157,6 +2201,7 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
|
|
|
2157
2201
|
*/
|
|
2158
2202
|
declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
|
|
2159
2203
|
type BoundingBox = [number, number, number, number];
|
|
2204
|
+
declare function isBoundingBox(value: unknown): value is BoundingBox;
|
|
2160
2205
|
declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
|
|
2161
2206
|
/**
|
|
2162
2207
|
* Builds the closed GeoJSON Polygon matching the given bounding box.
|
|
@@ -2362,14 +2407,7 @@ declare function checkFileFormat(link: DatasetOnlineResource | ServiceOnlineReso
|
|
|
2362
2407
|
declare function getBadgeColor(linkFormat: FileFormat): string;
|
|
2363
2408
|
declare function getLinkId(link: DatasetOnlineResource): string;
|
|
2364
2409
|
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[]>;
|
|
2410
|
+
declare function getLayers(url: string, serviceProtocol: ServiceProtocol, deep?: boolean): Promise<any[]>;
|
|
2373
2411
|
declare function wmsLayerFlatten(layerFull: any): any[];
|
|
2374
2412
|
declare function getMimeTypeForFormat(format: FileFormat): string | null;
|
|
2375
2413
|
|
|
@@ -2389,6 +2427,15 @@ declare class LinkClassifierService {
|
|
|
2389
2427
|
static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
|
|
2390
2428
|
}
|
|
2391
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
|
+
|
|
2392
2439
|
declare class ImageFallbackDirective {
|
|
2393
2440
|
private el;
|
|
2394
2441
|
fallbackUrl: string;
|
|
@@ -2713,6 +2760,13 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
2713
2760
|
triggerRef: MatAutocompleteTrigger;
|
|
2714
2761
|
autocomplete: MatAutocomplete;
|
|
2715
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
|
+
}>;
|
|
2716
2770
|
searching: boolean;
|
|
2717
2771
|
control: UntypedFormControl;
|
|
2718
2772
|
cancelEnter: boolean;
|
|
@@ -2758,7 +2812,7 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
2758
2812
|
handleSelection(event: MatAutocompleteSelectedEvent): void;
|
|
2759
2813
|
handleInput(event: InputEvent): void;
|
|
2760
2814
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
2761
|
-
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>;
|
|
2762
2816
|
}
|
|
2763
2817
|
|
|
2764
2818
|
declare class BadgeComponent {
|
|
@@ -2816,30 +2870,47 @@ declare class CopyTextButtonComponent {
|
|
|
2816
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>;
|
|
2817
2871
|
}
|
|
2818
2872
|
|
|
2873
|
+
declare function provideLocalizedDateAdapter(): Provider[];
|
|
2874
|
+
|
|
2819
2875
|
declare class DatePickerComponent {
|
|
2820
|
-
private dateAdapter;
|
|
2821
|
-
private translate;
|
|
2822
2876
|
date: Date;
|
|
2823
2877
|
dateChange: EventEmitter<Date>;
|
|
2824
|
-
constructor();
|
|
2825
2878
|
static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
2826
2879
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
|
|
2827
2880
|
}
|
|
2828
2881
|
|
|
2829
|
-
|
|
2830
|
-
|
|
2882
|
+
type DateRangeBound = 'start' | 'end';
|
|
2883
|
+
declare class DateRangeDropdownComponent {
|
|
2884
|
+
private scrollStrategies;
|
|
2885
|
+
private dateAdapter;
|
|
2886
|
+
private dateFormats;
|
|
2831
2887
|
private cdr;
|
|
2832
2888
|
title: string;
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
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;
|
|
2841
2912
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
|
|
2842
|
-
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>;
|
|
2843
2914
|
}
|
|
2844
2915
|
|
|
2845
2916
|
declare class DateRangePickerComponent {
|
|
@@ -2852,31 +2923,43 @@ declare class DateRangePickerComponent {
|
|
|
2852
2923
|
}
|
|
2853
2924
|
|
|
2854
2925
|
declare const placeholder = "dropFile";
|
|
2926
|
+
type DragAndDropFileInputError = 'invalid-extension' | 'file-too-large';
|
|
2855
2927
|
declare class DragAndDropFileInputComponent {
|
|
2856
2928
|
placeholder: string;
|
|
2857
2929
|
accept: string;
|
|
2858
|
-
|
|
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>;
|
|
2859
2938
|
selectedFile: File;
|
|
2939
|
+
private dropzone;
|
|
2860
2940
|
get fileName(): string | null;
|
|
2941
|
+
get maxFileSizeBytes(): number | null;
|
|
2861
2942
|
selectFile(event: any): void;
|
|
2943
|
+
openFileSelector(): void;
|
|
2944
|
+
clear(): void;
|
|
2862
2945
|
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>;
|
|
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>;
|
|
2864
2947
|
}
|
|
2865
2948
|
|
|
2866
|
-
interface Choice$1 {
|
|
2867
|
-
value:
|
|
2949
|
+
interface Choice$1<T = unknown> {
|
|
2950
|
+
value: T;
|
|
2868
2951
|
label: string;
|
|
2869
2952
|
}
|
|
2870
2953
|
|
|
2871
|
-
declare class DropdownMultiselectComponent {
|
|
2954
|
+
declare class DropdownMultiselectComponent<T = unknown> {
|
|
2872
2955
|
private scrollStrategies;
|
|
2873
2956
|
title: string;
|
|
2874
|
-
choices: Choice$1[];
|
|
2875
|
-
selected:
|
|
2957
|
+
choices: Choice$1<T>[];
|
|
2958
|
+
selected: T[];
|
|
2876
2959
|
allowSearch: boolean;
|
|
2877
2960
|
maxRows: number;
|
|
2878
2961
|
searchInputValue: string;
|
|
2879
|
-
selectValues: EventEmitter<
|
|
2962
|
+
selectValues: EventEmitter<T[]>;
|
|
2880
2963
|
overlayOrigin: CdkOverlayOrigin;
|
|
2881
2964
|
overlay: CdkConnectedOverlay;
|
|
2882
2965
|
overlayContainer: ElementRef;
|
|
@@ -2889,8 +2972,8 @@ declare class DropdownMultiselectComponent {
|
|
|
2889
2972
|
overlayMaxHeight: string;
|
|
2890
2973
|
id: string;
|
|
2891
2974
|
get hasSelectedChoices(): boolean;
|
|
2892
|
-
get selectedChoices(): Choice$1[];
|
|
2893
|
-
get filteredChoicesByText(): Choice$1[];
|
|
2975
|
+
get selectedChoices(): Choice$1<T>[];
|
|
2976
|
+
get filteredChoicesByText(): Choice$1<T>[];
|
|
2894
2977
|
get focusedIndex(): number | -1;
|
|
2895
2978
|
private setFocus;
|
|
2896
2979
|
openOverlay(): Promise<[void, any]>;
|
|
@@ -2900,13 +2983,13 @@ declare class DropdownMultiselectComponent {
|
|
|
2900
2983
|
focusFirstItem(): void;
|
|
2901
2984
|
focusLastItem(): void;
|
|
2902
2985
|
shiftItemFocus(shift: number): void;
|
|
2903
|
-
isSelected(choice: Choice$1): boolean;
|
|
2904
|
-
select(choice: Choice$1
|
|
2905
|
-
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;
|
|
2906
2989
|
clearSelection(event: Event): void;
|
|
2907
2990
|
clearSearchInputValue(event: Event): void;
|
|
2908
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMultiselectComponent
|
|
2909
|
-
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>;
|
|
2910
2993
|
}
|
|
2911
2994
|
|
|
2912
2995
|
interface DropdownChoice {
|
|
@@ -3145,13 +3228,52 @@ declare class DateRangeInputsComponent {
|
|
|
3145
3228
|
static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputsComponent, "gn-ui-date-range-inputs", never, { "temporalExtent": { "alias": "temporalExtent"; "required": false; }; }, { "temporalExtentChange": "temporalExtentChange"; }, never, never, true, never>;
|
|
3146
3229
|
}
|
|
3147
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
|
+
|
|
3148
3270
|
declare class ResultsHitsSearchKindComponent implements OnChanges {
|
|
3149
3271
|
selected: string[];
|
|
3150
3272
|
choices: Choice$1[];
|
|
3151
3273
|
selectionChanged: EventEmitter<string[]>;
|
|
3152
3274
|
availableChoices: Choice$1[];
|
|
3153
3275
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3154
|
-
buildFilterChoices(availableValues: Choice$1[]): Choice$1[];
|
|
3276
|
+
buildFilterChoices(availableValues: Choice$1[]): Choice$1<unknown>[];
|
|
3155
3277
|
onSelectedValues(values: string[]): void;
|
|
3156
3278
|
isSelectedChoice(choiceValue: string): boolean;
|
|
3157
3279
|
isAllChoice(choiceValue: string): boolean;
|
|
@@ -3261,26 +3383,6 @@ declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
|
|
|
3261
3383
|
static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerRecordPreviewComponent, "gn-ui-add-layer-record-preview", never, {}, {}, never, never, true, never>;
|
|
3262
3384
|
}
|
|
3263
3385
|
|
|
3264
|
-
declare class GeocodingComponent implements OnDestroy {
|
|
3265
|
-
private mapFacade;
|
|
3266
|
-
private geocodingService;
|
|
3267
|
-
searchText: string;
|
|
3268
|
-
results: any[];
|
|
3269
|
-
searchTextChanged: Subject<string>;
|
|
3270
|
-
destroy$: Subject<void>;
|
|
3271
|
-
errorMessage: string | null;
|
|
3272
|
-
constructor();
|
|
3273
|
-
ngOnDestroy(): void;
|
|
3274
|
-
onSearchChange(searchText: string): void;
|
|
3275
|
-
clearSearch(): void;
|
|
3276
|
-
zoomToLocation(result: any): Promise<void>;
|
|
3277
|
-
zoomToPoint(pointCoords: [number, number]): Promise<void>;
|
|
3278
|
-
zoomToPolygon(polygonCoords: [[number, number][]]): Promise<void>;
|
|
3279
|
-
onEnterPress(): void;
|
|
3280
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GeocodingComponent, never>;
|
|
3281
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GeocodingComponent, "gn-ui-geocoding", never, {}, {}, never, never, true, never>;
|
|
3282
|
-
}
|
|
3283
|
-
|
|
3284
3386
|
interface NotificationContent {
|
|
3285
3387
|
type: 'info' | 'warning' | 'error' | 'success';
|
|
3286
3388
|
title: string;
|
|
@@ -3293,7 +3395,7 @@ type NotificationWithIdentity = NotificationContent & {
|
|
|
3293
3395
|
};
|
|
3294
3396
|
declare class NotificationsService {
|
|
3295
3397
|
notifications$: BehaviorSubject<NotificationWithIdentity[]>;
|
|
3296
|
-
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error):
|
|
3398
|
+
showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): number;
|
|
3297
3399
|
removeNotificationById(id: number): void;
|
|
3298
3400
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
|
|
3299
3401
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
|
|
@@ -3314,6 +3416,32 @@ declare class FeatureSearchModule {
|
|
|
3314
3416
|
static ɵinj: i0.ɵɵInjectorDeclaration<FeatureSearchModule>;
|
|
3315
3417
|
}
|
|
3316
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
|
+
|
|
3317
3445
|
declare const FILTER_GEOMETRY: InjectionToken<Promise<Geometry>>;
|
|
3318
3446
|
|
|
3319
3447
|
declare const RECORD_DATASET_URL_TOKEN: InjectionToken<string>;
|
|
@@ -3619,7 +3747,7 @@ declare class SearchService implements SearchServiceI {
|
|
|
3619
3747
|
static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
|
|
3620
3748
|
}
|
|
3621
3749
|
|
|
3622
|
-
type FieldType = 'values' | 'dateRange';
|
|
3750
|
+
type FieldType = 'values' | 'dateRange' | 'spatialExtent';
|
|
3623
3751
|
type FieldValue = string | number;
|
|
3624
3752
|
interface FieldAvailableValue {
|
|
3625
3753
|
value: FieldValue;
|
|
@@ -3717,6 +3845,15 @@ declare class DateRangeSearchField extends SimpleSearchField {
|
|
|
3717
3845
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3718
3846
|
getType(): FieldType;
|
|
3719
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
|
+
}
|
|
3720
3857
|
declare class AvailableServicesField extends SimpleSearchField {
|
|
3721
3858
|
private translateService;
|
|
3722
3859
|
constructor(injector: Injector);
|
|
@@ -4622,17 +4759,23 @@ declare class FilterDropdownComponent implements OnInit {
|
|
|
4622
4759
|
private searchFacade;
|
|
4623
4760
|
private searchService;
|
|
4624
4761
|
private fieldsService;
|
|
4762
|
+
private notificationsService;
|
|
4763
|
+
private translateService;
|
|
4625
4764
|
fieldName: string;
|
|
4626
4765
|
title: string;
|
|
4766
|
+
spatialExtentMaxFileSize: number;
|
|
4627
4767
|
fieldType: FieldType;
|
|
4628
|
-
dateRange: DateRange;
|
|
4629
4768
|
choices$: Observable<Choice$1[]>;
|
|
4630
4769
|
selected$: Observable<FieldValue[]>;
|
|
4631
4770
|
selectedDateRange$: Observable<DateRange>;
|
|
4771
|
+
selectedBoundingBox$: Observable<BoundingBox | null>;
|
|
4632
4772
|
onSelectedValues(values: unknown[]): void;
|
|
4773
|
+
private spatialExtentErrorNotificationId;
|
|
4774
|
+
onBboxChange(bbox: BoundingBox | null): void;
|
|
4775
|
+
onSpatialExtentError(error: SpatialExtentDropdownError): void;
|
|
4776
|
+
private clearSpatialExtentErrorNotification;
|
|
4633
4777
|
ngOnInit(): void;
|
|
4634
|
-
|
|
4635
|
-
onEndDateChange(end: Date): void;
|
|
4778
|
+
onDateRangeChange(dateRange: DateRange): void;
|
|
4636
4779
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
|
|
4637
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>;
|
|
4638
4781
|
}
|
|
@@ -4829,7 +4972,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4829
4972
|
private searchFacade;
|
|
4830
4973
|
private searchService;
|
|
4831
4974
|
private fieldsService;
|
|
4832
|
-
private
|
|
4975
|
+
private dateService;
|
|
4833
4976
|
private translate;
|
|
4834
4977
|
fieldName: string;
|
|
4835
4978
|
fieldType: FieldType;
|
|
@@ -4838,6 +4981,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
|
|
|
4838
4981
|
ngOnInit(): void;
|
|
4839
4982
|
translateLabel(): void;
|
|
4840
4983
|
getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
|
|
4984
|
+
private formatBound;
|
|
4841
4985
|
removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
|
|
4842
4986
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
|
|
4843
4987
|
static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -4876,10 +5020,11 @@ interface DatasetHeaders {
|
|
|
4876
5020
|
interface PropertyInfo {
|
|
4877
5021
|
name: string;
|
|
4878
5022
|
label: string;
|
|
4879
|
-
type: 'number' | 'date' | '
|
|
5023
|
+
type: 'number' | 'date' | 'boolean' | 'string' | 'other';
|
|
4880
5024
|
}
|
|
4881
5025
|
interface DatasetInfo {
|
|
4882
5026
|
itemsCount: number;
|
|
5027
|
+
hasGeometry: boolean;
|
|
4883
5028
|
}
|
|
4884
5029
|
type FieldName = string;
|
|
4885
5030
|
type SumOperation = ['sum', FieldName];
|
|
@@ -4911,8 +5056,12 @@ declare class BaseReader {
|
|
|
4911
5056
|
protected sort: FieldSort[];
|
|
4912
5057
|
protected startIndex: number;
|
|
4913
5058
|
protected count: number;
|
|
5059
|
+
protected loadPromise_: Promise<void>;
|
|
5060
|
+
protected cacheEnabled: boolean;
|
|
4914
5061
|
constructor(url: string);
|
|
5062
|
+
enableCache(enabled: boolean): void;
|
|
4915
5063
|
load(): void;
|
|
5064
|
+
get isLoaded(): Promise<void>;
|
|
4916
5065
|
get properties(): Promise<PropertyInfo[]>;
|
|
4917
5066
|
get info(): Promise<DatasetInfo>;
|
|
4918
5067
|
read(): Promise<DataItem[]>;
|
|
@@ -4925,21 +5074,22 @@ declare class BaseReader {
|
|
|
4925
5074
|
limit(startIndex: number, count: number): this;
|
|
4926
5075
|
}
|
|
4927
5076
|
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
wfsVersion?: WfsVersion;
|
|
5077
|
+
interface OpenDatasetOptions {
|
|
5078
|
+
typeHint?: SupportedType;
|
|
4931
5079
|
wfsFeatureType?: string;
|
|
4932
|
-
|
|
5080
|
+
enableCache?: boolean;
|
|
5081
|
+
}
|
|
5082
|
+
declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
|
|
4933
5083
|
/**
|
|
4934
5084
|
* This fetches the full dataset at the given URL and parses it according to its mime type.
|
|
4935
5085
|
* All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
|
|
4936
5086
|
* File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
|
|
4937
|
-
* File type is determined
|
|
5087
|
+
* File type is determined like so:
|
|
4938
5088
|
* 1. if a type hint is given, use it
|
|
4939
5089
|
* 2. otherwise, look for a Content-Type header in the response with a supported mime type
|
|
4940
5090
|
* 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
|
|
4941
5091
|
*/
|
|
4942
|
-
declare function readDataset(url: string,
|
|
5092
|
+
declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
|
|
4943
5093
|
/**
|
|
4944
5094
|
* This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
|
|
4945
5095
|
*/
|
|
@@ -4952,31 +5102,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
|
|
|
4952
5102
|
*/
|
|
4953
5103
|
declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
|
|
4954
5104
|
|
|
4955
|
-
declare
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
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;
|
|
4960
5129
|
}
|
|
4961
5130
|
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
protected
|
|
4969
|
-
|
|
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>;
|
|
4970
5143
|
get properties(): Promise<PropertyInfo[]>;
|
|
4971
5144
|
get info(): Promise<DatasetInfo>;
|
|
4972
5145
|
read(): Promise<DataItem[]>;
|
|
4973
5146
|
}
|
|
4974
5147
|
|
|
4975
5148
|
declare class GeojsonReader extends BaseFileReader {
|
|
4976
|
-
|
|
4977
|
-
items: DataItem[];
|
|
4978
|
-
properties: PropertyInfo[];
|
|
4979
|
-
}>;
|
|
5149
|
+
getLoadQuery(): Promise<string>;
|
|
4980
5150
|
}
|
|
4981
5151
|
|
|
4982
5152
|
interface WfsDownloadUrls {
|
|
@@ -5020,7 +5190,7 @@ declare class ChartViewComponent {
|
|
|
5020
5190
|
set link(value: DatasetOnlineResource);
|
|
5021
5191
|
private currentLink$;
|
|
5022
5192
|
set aggregation(value: FieldAggregation[0]);
|
|
5023
|
-
aggregation$: BehaviorSubject<"
|
|
5193
|
+
aggregation$: BehaviorSubject<"max" | "min" | "count" | "sum" | "average">;
|
|
5024
5194
|
set xProperty(value: string);
|
|
5025
5195
|
xProperty$: BehaviorSubject<string>;
|
|
5026
5196
|
set yProperty(value: string);
|
|
@@ -5029,7 +5199,7 @@ declare class ChartViewComponent {
|
|
|
5029
5199
|
chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
|
|
5030
5200
|
set userChartConfig(config: DatavizChartConfigModel);
|
|
5031
5201
|
chartConfig$: Observable<{
|
|
5032
|
-
aggregation: "
|
|
5202
|
+
aggregation: "max" | "min" | "count" | "sum" | "average";
|
|
5033
5203
|
xProperty: string;
|
|
5034
5204
|
yProperty: string;
|
|
5035
5205
|
chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
|
|
@@ -5100,31 +5270,37 @@ interface TableItemModel {
|
|
|
5100
5270
|
id: TableItemId;
|
|
5101
5271
|
[key: string]: TableItemType;
|
|
5102
5272
|
}
|
|
5273
|
+
interface TableColumn {
|
|
5274
|
+
name: string;
|
|
5275
|
+
label: string;
|
|
5276
|
+
}
|
|
5103
5277
|
declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
|
|
5104
5278
|
private eltRef;
|
|
5105
5279
|
private cdr;
|
|
5106
5280
|
private translateService;
|
|
5107
|
-
|
|
5281
|
+
columnsFromFeatureCatalog: TableColumn[];
|
|
5108
5282
|
set featureAttributes(value: {
|
|
5109
5283
|
value: string;
|
|
5110
5284
|
label: string;
|
|
5111
5285
|
}[]);
|
|
5286
|
+
columnsFromDataset: TableColumn[];
|
|
5112
5287
|
set dataset(value: BaseReader);
|
|
5113
5288
|
activeId: TableItemId;
|
|
5114
5289
|
selected: EventEmitter<any>;
|
|
5115
5290
|
sort: MatSort;
|
|
5116
5291
|
paginator: MatPaginator;
|
|
5117
5292
|
dataset_: BaseReader;
|
|
5118
|
-
properties$: BehaviorSubject<string[]>;
|
|
5119
5293
|
dataSource: DataTableDataSource;
|
|
5120
5294
|
headerHeight: number;
|
|
5121
5295
|
count: number;
|
|
5122
5296
|
loading$: BehaviorSubject<boolean>;
|
|
5123
5297
|
error: any;
|
|
5298
|
+
get columns(): TableColumn[];
|
|
5299
|
+
get columnNames(): string[];
|
|
5124
5300
|
ngOnInit(): void;
|
|
5125
5301
|
ngAfterViewInit(): void;
|
|
5126
5302
|
ngOnChanges(): void;
|
|
5127
|
-
setSort(sort:
|
|
5303
|
+
setSort(sort: Sort): void;
|
|
5128
5304
|
setPagination(): void;
|
|
5129
5305
|
readData(): Promise<void>;
|
|
5130
5306
|
scrollToItem(itemId: TableItemId): void;
|
|
@@ -5322,8 +5498,7 @@ declare class MdViewFacade {
|
|
|
5322
5498
|
otherError?: string;
|
|
5323
5499
|
}>;
|
|
5324
5500
|
related$: rxjs.Observable<CatalogRecord[]>;
|
|
5325
|
-
|
|
5326
|
-
sourceOf$: rxjs.Observable<CatalogRecord[]>;
|
|
5501
|
+
linkedRecords$: rxjs.Observable<LinkedRecord[]>;
|
|
5327
5502
|
chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
|
|
5328
5503
|
allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
|
|
5329
5504
|
resourceDoi$: rxjs.Observable<{
|
|
@@ -5409,16 +5584,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
|
|
|
5409
5584
|
}) => {
|
|
5410
5585
|
related: CatalogRecord[];
|
|
5411
5586
|
} & _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[];
|
|
5587
|
+
declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
|
|
5588
|
+
linkedRecords: LinkedRecord[];
|
|
5419
5589
|
}) => {
|
|
5420
|
-
|
|
5421
|
-
} & _ngrx_store.Action<"[Metadata view] Set
|
|
5590
|
+
linkedRecords: LinkedRecord[];
|
|
5591
|
+
} & _ngrx_store.Action<"[Metadata view] Set associated records">>;
|
|
5422
5592
|
declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
|
|
5423
5593
|
chartConfig: DatavizChartConfigModel;
|
|
5424
5594
|
}) => {
|
|
@@ -5474,9 +5644,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
|
|
|
5474
5644
|
declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
|
|
5475
5645
|
declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
|
|
5476
5646
|
declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
|
|
5647
|
+
declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
|
|
5477
5648
|
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
5649
|
declare namespace mdview_actions_d {
|
|
5481
5650
|
export {
|
|
5482
5651
|
mdview_actions_d_addUserFeedback as addUserFeedback,
|
|
@@ -5494,9 +5663,8 @@ declare namespace mdview_actions_d {
|
|
|
5494
5663
|
mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
|
|
5495
5664
|
mdview_actions_d_setChartConfig as setChartConfig,
|
|
5496
5665
|
mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
|
|
5666
|
+
mdview_actions_d_setLinkedRecords as setLinkedRecords,
|
|
5497
5667
|
mdview_actions_d_setRelated as setRelated,
|
|
5498
|
-
mdview_actions_d_setSourceOf as setSourceOf,
|
|
5499
|
-
mdview_actions_d_setSources as setSources,
|
|
5500
5668
|
};
|
|
5501
5669
|
}
|
|
5502
5670
|
|
|
@@ -6317,6 +6485,7 @@ declare class FormFieldComponent {
|
|
|
6317
6485
|
get valueAsDate(): Date;
|
|
6318
6486
|
get valueAsOverviews(): Array<GraphicOverview>;
|
|
6319
6487
|
get valueAsUpdateFrequency(): UpdateFrequency;
|
|
6488
|
+
get valueAsAssociatedRecords(): Array<AssociatedRecord>;
|
|
6320
6489
|
get valueAsTemporalExtents(): Array<DatasetTemporalExtent>;
|
|
6321
6490
|
get valueAsKeywords(): Array<Keyword>;
|
|
6322
6491
|
get valueAsTopics(): Array<string>;
|
|
@@ -6898,6 +7067,7 @@ interface SearchConfig {
|
|
|
6898
7067
|
SEARCH_PRESET?: SearchPreset[];
|
|
6899
7068
|
ADVANCED_FILTERS?: [];
|
|
6900
7069
|
LIMIT?: number;
|
|
7070
|
+
SPATIAL_EXTENT_MAX_FILE_SIZE?: number;
|
|
6901
7071
|
}
|
|
6902
7072
|
interface SearchConfig {
|
|
6903
7073
|
FILTER_GEOMETRY?: Geometry;
|
|
@@ -6926,6 +7096,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6926
7096
|
|
|
6927
7097
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6928
7098
|
|
|
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 };
|
|
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 };
|
|
6931
7101
|
//# sourceMappingURL=index.d.ts.map
|