geonetwork-ui 2.11.0-dev.a83f0f51a → 2.11.0-dev.aed5b2e5b

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.
Files changed (75) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1248 -747
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +195 -76
  4. package/index.d.ts.map +1 -1
  5. package/package.json +11 -11
  6. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
  7. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +1 -0
  8. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +40 -16
  9. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -0
  10. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -2
  11. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -2
  12. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +2 -1
  13. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -22
  14. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -0
  15. package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -4
  16. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +4 -8
  17. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +7 -16
  18. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -3
  19. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +4 -9
  20. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +2 -7
  21. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +1 -1
  22. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +9 -4
  23. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +46 -19
  24. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +17 -8
  25. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +3 -1
  26. package/src/libs/feature/search/src/lib/utils/service/fields.ts +16 -1
  27. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -7
  28. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +31 -19
  29. package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +2 -2
  30. package/src/libs/ui/inputs/src/index.ts +2 -0
  31. package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
  32. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
  33. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
  34. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
  35. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
  36. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
  37. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +1 -0
  38. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +20 -7
  39. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +46 -5
  40. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  41. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.css +0 -0
  42. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +117 -0
  43. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +191 -0
  44. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +4 -5
  45. package/src/libs/util/app-config/src/lib/app-config.ts +3 -0
  46. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  47. package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +19 -22
  48. package/src/libs/util/data-fetcher/src/lib/engine/duckdb.ts +185 -0
  49. package/src/libs/util/data-fetcher/src/lib/engine/results.ts +63 -0
  50. package/src/libs/util/data-fetcher/src/lib/{sql-utils.ts → engine/sql-utils.ts} +28 -13
  51. package/src/libs/util/data-fetcher/src/lib/model.ts +2 -1
  52. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +53 -38
  53. package/src/libs/util/data-fetcher/src/lib/readers/base.ts +11 -0
  54. package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +9 -47
  55. package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +27 -27
  56. package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +5 -24
  57. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +5 -49
  58. package/src/libs/util/data-fetcher/src/lib/readers/json.ts +5 -23
  59. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +184 -128
  60. package/src/libs/util/data-fetcher/src/lib/utils.ts +0 -143
  61. package/src/libs/util/shared/src/index.ts +1 -0
  62. package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
  63. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  64. package/src/libs/util/shared/src/lib/utils/file.ts +15 -0
  65. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  66. package/tailwind.base.css +5 -0
  67. package/translations/de.json +13 -2
  68. package/translations/en.json +12 -1
  69. package/translations/es.json +11 -0
  70. package/translations/fr.json +13 -2
  71. package/translations/it.json +11 -0
  72. package/translations/nl.json +11 -0
  73. package/translations/pt.json +11 -0
  74. package/translations/sk.json +11 -0
  75. package/src/libs/util/data-fetcher/src/lib/readers/base-cache.ts +0 -14
package/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Geometry, Feature, Polygon, FeatureCollection } from 'geojson';
3
3
  import { XmlElement, XmlDocument, XmlComment, XmlProcessingInstruction, XmlDeclaration, XmlDocumentType, XmlCdata, XmlText } from '@rgrove/parse-xml';
4
4
  export { XmlDocument, XmlElement } from '@rgrove/parse-xml';
5
5
  import * as i0 from '@angular/core';
6
- import { InjectionToken, Provider, OnInit, AfterViewInit, OnDestroy, OnChanges, ElementRef, EventEmitter, SimpleChanges, TemplateRef, Type, ViewContainerRef, AfterViewChecked, QueryList, Injector, Signal, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
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
20
  import * as geonetwork_ui from 'geonetwork-ui';
21
+ import * as _angular_cdk_overlay from '@angular/cdk/overlay';
22
+ import { CdkOverlayOrigin, ConnectedPosition, CdkConnectedOverlay, CdkScrollable } from '@angular/cdk/overlay';
21
23
  import { UntypedFormControl, FormControl } from '@angular/forms';
22
24
  import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
23
25
  import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
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;
@@ -1051,8 +1061,7 @@ declare abstract class RecordsRepositoryInterface {
1051
1061
  abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
1052
1062
  abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
1053
1063
  abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
1054
- abstract getSources(record: CatalogRecord): Observable<CatalogRecord[]>;
1055
- abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
1064
+ abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
1056
1065
  abstract fuzzySearch(query: string): Observable<SearchResults>;
1057
1066
  abstract canDuplicate(record: CatalogRecord): boolean;
1058
1067
  abstract canDelete(record: CatalogRecord): Observable<boolean>;
@@ -1138,8 +1147,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1138
1147
  private mapEmbeddedFeatureCatalog;
1139
1148
  getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
1140
1149
  getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
1141
- getSources(record: CatalogRecord): Observable<CatalogRecord[]>;
1142
- getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
1150
+ getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
1143
1151
  aggregate(params: AggregationsParams): Observable<Aggregations>;
1144
1152
  fuzzySearch(query: string): Observable<SearchResults>;
1145
1153
  getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
@@ -2138,7 +2146,7 @@ declare class DateService {
2138
2146
  dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
2139
2147
  private getDateObject;
2140
2148
  private getLocaleAndDate;
2141
- private getDateLocale;
2149
+ getDateFnsLocale(): Promise<Locale>;
2142
2150
  formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2143
2151
  formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2144
2152
  formatRelativeDateTime(date: Date | string): Promise<string>;
@@ -2156,6 +2164,9 @@ declare function bytesToMegabytes(bytes: number): number;
2156
2164
  */
2157
2165
  declare function propagateToDocumentOnly(event: Event): void;
2158
2166
 
2167
+ declare function isFileExtensionValid(fileName: string, acceptedExtensions: string[]): boolean;
2168
+ declare function readFileAsText(file: File): Promise<string>;
2169
+
2159
2170
  declare function formatUserInfo(userInfo: string | unknown, displayCount?: boolean): string;
2160
2171
 
2161
2172
  type FuzzyFilter = (input: string) => boolean;
@@ -2403,6 +2414,15 @@ declare class LinkClassifierService {
2403
2414
  static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
2404
2415
  }
2405
2416
 
2417
+ declare class AutofocusDirective {
2418
+ private el;
2419
+ private injector;
2420
+ set autofocus(active: boolean);
2421
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
2422
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[gnUiAutofocus]", never, { "autofocus": { "alias": "gnUiAutofocus"; "required": false; }; }, {}, never, never, true, never>;
2423
+ static ngAcceptInputType_autofocus: unknown;
2424
+ }
2425
+
2406
2426
  declare class ImageFallbackDirective {
2407
2427
  private el;
2408
2428
  fallbackUrl: string;
@@ -2830,30 +2850,47 @@ declare class CopyTextButtonComponent {
2830
2850
  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
2851
  }
2832
2852
 
2853
+ declare function provideLocalizedDateAdapter(): Provider[];
2854
+
2833
2855
  declare class DatePickerComponent {
2834
- private dateAdapter;
2835
- private translate;
2836
2856
  date: Date;
2837
2857
  dateChange: EventEmitter<Date>;
2838
- constructor();
2839
2858
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
2840
2859
  static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
2841
2860
  }
2842
2861
 
2843
- declare class DateRangeDropdownComponent implements AfterViewChecked {
2844
- private overlayContainer;
2862
+ type DateRangeBound = 'start' | 'end';
2863
+ declare class DateRangeDropdownComponent {
2864
+ private scrollStrategies;
2865
+ private dateAdapter;
2866
+ private dateFormats;
2845
2867
  private cdr;
2846
2868
  title: string;
2847
- startDate: Date;
2848
- endDate: Date;
2849
- startDateChange: EventEmitter<Date>;
2850
- endDateChange: EventEmitter<Date>;
2851
- picker: ElementRef;
2852
- isPickerDisplayed: boolean;
2853
- ngAfterViewChecked(): void;
2854
- checkPickerOverlay(): void;
2869
+ dateRange: FieldFilterByRange;
2870
+ dateRangeChange: EventEmitter<FieldFilterByRange>;
2871
+ overlayOrigin: CdkOverlayOrigin;
2872
+ overlayPositions: ConnectedPosition[];
2873
+ scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2874
+ overlayOpen: boolean;
2875
+ expandedBound: DateRangeBound | null;
2876
+ invalidBounds: Record<DateRangeBound, boolean>;
2877
+ constructor();
2878
+ get startDate(): Date;
2879
+ get endDate(): Date;
2880
+ get selectedDatesCount(): number;
2881
+ openOverlay(): void;
2882
+ closeOverlay(): void;
2883
+ toggleBound(bound: DateRangeBound): void;
2884
+ formatDate(date: Date): string;
2885
+ onDateInput(bound: DateRangeBound, event: Event): void;
2886
+ normalizeDateInput(bound: DateRangeBound, event: Event): void;
2887
+ private isAcceptable;
2888
+ setStartDate(date: Date): void;
2889
+ setEndDate(date: Date): void;
2890
+ clearDates(event: Event): void;
2891
+ private applyDateRange;
2855
2892
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
2856
- static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; }, { "startDateChange": "startDateChange"; "endDateChange": "endDateChange"; }, never, never, true, never>;
2893
+ 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
2894
  }
2858
2895
 
2859
2896
  declare class DateRangePickerComponent {
@@ -2866,15 +2903,27 @@ declare class DateRangePickerComponent {
2866
2903
  }
2867
2904
 
2868
2905
  declare const placeholder = "dropFile";
2906
+ type DragAndDropFileInputError = 'invalid-extension' | 'file-too-large';
2869
2907
  declare class DragAndDropFileInputComponent {
2870
2908
  placeholder: string;
2871
2909
  accept: string;
2872
- fileChange: EventEmitter<any>;
2910
+ maxFileSizeMb: number | null;
2911
+ icon: string | null;
2912
+ dropzoneBackgroundColor: string | null;
2913
+ textClass: string;
2914
+ extraClass: string;
2915
+ showFileName: boolean;
2916
+ fileChange: EventEmitter<File>;
2917
+ errorChange: EventEmitter<DragAndDropFileInputError>;
2873
2918
  selectedFile: File;
2919
+ private dropzone;
2874
2920
  get fileName(): string | null;
2921
+ get maxFileSizeBytes(): number | null;
2875
2922
  selectFile(event: any): void;
2923
+ openFileSelector(): void;
2924
+ clear(): void;
2876
2925
  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>;
2926
+ 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
2927
  }
2879
2928
 
2880
2929
  interface Choice$1 {
@@ -3159,6 +3208,39 @@ declare class DateRangeInputsComponent {
3159
3208
  static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputsComponent, "gn-ui-date-range-inputs", never, { "temporalExtent": { "alias": "temporalExtent"; "required": false; }; }, { "temporalExtentChange": "temporalExtentChange"; }, never, never, true, never>;
3160
3209
  }
3161
3210
 
3211
+ interface SpatialExtentDropdownError {
3212
+ key: string;
3213
+ params?: Record<string, string | number>;
3214
+ }
3215
+ declare class SpatialExtentDropdownComponent {
3216
+ private cd;
3217
+ private scrollStrategies;
3218
+ title: string;
3219
+ maxFileSizeMb: number | null;
3220
+ bboxChange: EventEmitter<BoundingBox>;
3221
+ errorChange: EventEmitter<SpatialExtentDropdownError>;
3222
+ bbox: BoundingBox | null;
3223
+ fileName: string;
3224
+ overlayOrigin: CdkOverlayOrigin;
3225
+ overlay: CdkConnectedOverlay;
3226
+ fileInput: DragAndDropFileInputComponent;
3227
+ overlayPositions: ConnectedPosition[];
3228
+ scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
3229
+ overlayOpen: boolean;
3230
+ overlayMinWidth: string;
3231
+ errorKey: string | null;
3232
+ get hasSelection(): boolean;
3233
+ openOverlay(): void;
3234
+ closeOverlay(): void;
3235
+ toggleOverlay(): void;
3236
+ handleFileSelected(file: File): Promise<void>;
3237
+ handleFileError(error: DragAndDropFileInputError): void;
3238
+ private setError;
3239
+ removeSelection(event: Event): void;
3240
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentDropdownComponent, never>;
3241
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentDropdownComponent, "gn-ui-spatial-extent-dropdown", never, { "title": { "alias": "title"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; }, { "bboxChange": "bboxChange"; "errorChange": "errorChange"; }, never, never, true, never>;
3242
+ }
3243
+
3162
3244
  declare class ResultsHitsSearchKindComponent implements OnChanges {
3163
3245
  selected: string[];
3164
3246
  choices: Choice$1[];
@@ -3307,7 +3389,7 @@ type NotificationWithIdentity = NotificationContent & {
3307
3389
  };
3308
3390
  declare class NotificationsService {
3309
3391
  notifications$: BehaviorSubject<NotificationWithIdentity[]>;
3310
- showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): void;
3392
+ showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): number;
3311
3393
  removeNotificationById(id: number): void;
3312
3394
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
3313
3395
  static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
@@ -3633,7 +3715,7 @@ declare class SearchService implements SearchServiceI {
3633
3715
  static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
3634
3716
  }
3635
3717
 
3636
- type FieldType = 'values' | 'dateRange';
3718
+ type FieldType = 'values' | 'dateRange' | 'spatialExtent';
3637
3719
  type FieldValue = string | number;
3638
3720
  interface FieldAvailableValue {
3639
3721
  value: FieldValue;
@@ -3731,6 +3813,11 @@ declare class DateRangeSearchField extends SimpleSearchField {
3731
3813
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3732
3814
  getType(): FieldType;
3733
3815
  }
3816
+ declare class SpatialExtentSearchField extends SimpleSearchField {
3817
+ constructor(injector: Injector);
3818
+ getAvailableValues(): Observable<FieldAvailableValue[]>;
3819
+ getType(): FieldType;
3820
+ }
3734
3821
  declare class AvailableServicesField extends SimpleSearchField {
3735
3822
  private translateService;
3736
3823
  constructor(injector: Injector);
@@ -4636,17 +4723,22 @@ declare class FilterDropdownComponent implements OnInit {
4636
4723
  private searchFacade;
4637
4724
  private searchService;
4638
4725
  private fieldsService;
4726
+ private notificationsService;
4727
+ private translateService;
4639
4728
  fieldName: string;
4640
4729
  title: string;
4730
+ spatialExtentMaxFileSize: number;
4641
4731
  fieldType: FieldType;
4642
- dateRange: DateRange;
4643
4732
  choices$: Observable<Choice$1[]>;
4644
4733
  selected$: Observable<FieldValue[]>;
4645
4734
  selectedDateRange$: Observable<DateRange>;
4646
4735
  onSelectedValues(values: unknown[]): void;
4736
+ private spatialExtentErrorNotificationId;
4737
+ onBboxChange(bbox: BoundingBox | null): void;
4738
+ onSpatialExtentError(error: SpatialExtentDropdownError): void;
4739
+ private clearSpatialExtentErrorNotification;
4647
4740
  ngOnInit(): void;
4648
- onStartDateChange(start: Date): void;
4649
- onEndDateChange(end: Date): void;
4741
+ onDateRangeChange(dateRange: DateRange): void;
4650
4742
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
4651
4743
  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
4744
  }
@@ -4843,7 +4935,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4843
4935
  private searchFacade;
4844
4936
  private searchService;
4845
4937
  private fieldsService;
4846
- private datePipe;
4938
+ private dateService;
4847
4939
  private translate;
4848
4940
  fieldName: string;
4849
4941
  fieldType: FieldType;
@@ -4852,6 +4944,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4852
4944
  ngOnInit(): void;
4853
4945
  translateLabel(): void;
4854
4946
  getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
4947
+ private formatBound;
4855
4948
  removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
4856
4949
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
4857
4950
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
@@ -4890,10 +4983,11 @@ interface DatasetHeaders {
4890
4983
  interface PropertyInfo {
4891
4984
  name: string;
4892
4985
  label: string;
4893
- type: 'number' | 'date' | 'url' | 'string';
4986
+ type: 'number' | 'date' | 'boolean' | 'string' | 'other';
4894
4987
  }
4895
4988
  interface DatasetInfo {
4896
4989
  itemsCount: number;
4990
+ hasGeometry: boolean;
4897
4991
  }
4898
4992
  type FieldName = string;
4899
4993
  type SumOperation = ['sum', FieldName];
@@ -4925,8 +5019,12 @@ declare class BaseReader {
4925
5019
  protected sort: FieldSort[];
4926
5020
  protected startIndex: number;
4927
5021
  protected count: number;
5022
+ protected loadPromise_: Promise<void>;
5023
+ protected cacheEnabled: boolean;
4928
5024
  constructor(url: string);
5025
+ enableCache(enabled: boolean): void;
4929
5026
  load(): void;
5027
+ get isLoaded(): Promise<void>;
4930
5028
  get properties(): Promise<PropertyInfo[]>;
4931
5029
  get info(): Promise<DatasetInfo>;
4932
5030
  read(): Promise<DataItem[]>;
@@ -4939,21 +5037,22 @@ declare class BaseReader {
4939
5037
  limit(startIndex: number, count: number): this;
4940
5038
  }
4941
5039
 
4942
- declare function openDataset(url: string, typeHint?: SupportedType, options?: {
4943
- namespace?: string;
4944
- wfsVersion?: WfsVersion;
5040
+ interface OpenDatasetOptions {
5041
+ typeHint?: SupportedType;
4945
5042
  wfsFeatureType?: string;
4946
- }, cacheActive?: boolean): Promise<BaseReader>;
5043
+ enableCache?: boolean;
5044
+ }
5045
+ declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
4947
5046
  /**
4948
5047
  * This fetches the full dataset at the given URL and parses it according to its mime type.
4949
5048
  * All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
4950
5049
  * File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
4951
- * File type is determined liked so:
5050
+ * File type is determined like so:
4952
5051
  * 1. if a type hint is given, use it
4953
5052
  * 2. otherwise, look for a Content-Type header in the response with a supported mime type
4954
5053
  * 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
4955
5054
  */
4956
- declare function readDataset(url: string, typeHint?: SupportedType, options?: any, cacheActive?: boolean): Promise<DataItem[]>;
5055
+ declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
4957
5056
  /**
4958
5057
  * This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
4959
5058
  */
@@ -4966,31 +5065,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
4966
5065
  */
4967
5066
  declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
4968
5067
 
4969
- declare abstract class BaseCacheReader extends BaseReader {
4970
- protected url: string;
4971
- protected cacheActive: boolean;
4972
- constructor(url: string, cacheActive?: boolean);
4973
- setCacheActive(value: boolean): void;
5068
+ declare class Engine {
5069
+ private db;
5070
+ private init_;
5071
+ private makeInit;
5072
+ isReady(): Promise<Engine>;
5073
+ /**
5074
+ * Returns information about a dataset once it's loaded:
5075
+ * - a list of properties description
5076
+ * - the name of the dataset geometry column (null if no geometry present)
5077
+ * @param datasetId name of the table under which the dataset will be stored
5078
+ * @param loadQuery duckdb-specific query for creating a table out of the data
5079
+ * @param forceReload if true, any existing data will be dropped and redownloaded
5080
+ */
5081
+ loadFile(datasetId: string, loadQuery: string, forceReload?: boolean): Promise<{
5082
+ properties: PropertyInfo[];
5083
+ geometryColumn: string | null;
5084
+ rowsCount: number;
5085
+ }>;
5086
+ registerData(name: string, buffer: Uint8Array): Promise<void>;
5087
+ /**
5088
+ * @param query duckdb-specific query for fetching items
5089
+ */
5090
+ queryItems(query: string): Promise<DataItem[]>;
5091
+ close(): void;
4974
5092
  }
4975
5093
 
4976
- type ParseResult = {
4977
- items: DataItem[];
4978
- properties: PropertyInfo[];
4979
- };
4980
- declare class BaseFileReader extends BaseCacheReader {
4981
- private parseResult_;
4982
- protected getData(): Promise<ParseResult>;
4983
- load(): void;
5094
+ /**
5095
+ * This reader handles file formats supported natively by DuckDB
5096
+ */
5097
+ declare class BaseFileReader extends BaseReader {
5098
+ protected engine: Engine;
5099
+ protected datasetId: string;
5100
+ protected properties_: PropertyInfo[];
5101
+ protected geometryColumn: string;
5102
+ protected rowsCount: number;
5103
+ protected generateDatasetId(): string;
5104
+ protected getLoadQuery(): Promise<string>;
5105
+ load(): Promise<void>;
4984
5106
  get properties(): Promise<PropertyInfo[]>;
4985
5107
  get info(): Promise<DatasetInfo>;
4986
5108
  read(): Promise<DataItem[]>;
4987
5109
  }
4988
5110
 
4989
5111
  declare class GeojsonReader extends BaseFileReader {
4990
- getData(): Promise<{
4991
- items: DataItem[];
4992
- properties: PropertyInfo[];
4993
- }>;
5112
+ getLoadQuery(): Promise<string>;
4994
5113
  }
4995
5114
 
4996
5115
  interface WfsDownloadUrls {
@@ -5114,31 +5233,37 @@ interface TableItemModel {
5114
5233
  id: TableItemId;
5115
5234
  [key: string]: TableItemType;
5116
5235
  }
5236
+ interface TableColumn {
5237
+ name: string;
5238
+ label: string;
5239
+ }
5117
5240
  declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5118
5241
  private eltRef;
5119
5242
  private cdr;
5120
5243
  private translateService;
5121
- _featureAttributes: any[];
5244
+ columnsFromFeatureCatalog: TableColumn[];
5122
5245
  set featureAttributes(value: {
5123
5246
  value: string;
5124
5247
  label: string;
5125
5248
  }[]);
5249
+ columnsFromDataset: TableColumn[];
5126
5250
  set dataset(value: BaseReader);
5127
5251
  activeId: TableItemId;
5128
5252
  selected: EventEmitter<any>;
5129
5253
  sort: MatSort;
5130
5254
  paginator: MatPaginator;
5131
5255
  dataset_: BaseReader;
5132
- properties$: BehaviorSubject<string[]>;
5133
5256
  dataSource: DataTableDataSource;
5134
5257
  headerHeight: number;
5135
5258
  count: number;
5136
5259
  loading$: BehaviorSubject<boolean>;
5137
5260
  error: any;
5261
+ get columns(): TableColumn[];
5262
+ get columnNames(): string[];
5138
5263
  ngOnInit(): void;
5139
5264
  ngAfterViewInit(): void;
5140
5265
  ngOnChanges(): void;
5141
- setSort(sort: MatSort): void;
5266
+ setSort(sort: Sort): void;
5142
5267
  setPagination(): void;
5143
5268
  readData(): Promise<void>;
5144
5269
  scrollToItem(itemId: TableItemId): void;
@@ -5174,6 +5299,7 @@ declare class FigureContainerComponent implements OnChanges {
5174
5299
  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
5300
  }
5176
5301
 
5302
+ declare const DEFAULT_BASEMAP_LAYER: MapContextLayerMapLibreStyle;
5177
5303
  declare class MapContainerComponent implements AfterViewInit, OnChanges {
5178
5304
  private doNotUseDefaultBasemap;
5179
5305
  private basemapLayers;
@@ -5335,8 +5461,7 @@ declare class MdViewFacade {
5335
5461
  otherError?: string;
5336
5462
  }>;
5337
5463
  related$: rxjs.Observable<CatalogRecord[]>;
5338
- sources$: rxjs.Observable<CatalogRecord[]>;
5339
- sourceOf$: rxjs.Observable<CatalogRecord[]>;
5464
+ linkedRecords$: rxjs.Observable<LinkedRecord[]>;
5340
5465
  chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
5341
5466
  allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
5342
5467
  resourceDoi$: rxjs.Observable<{
@@ -5422,16 +5547,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
5422
5547
  }) => {
5423
5548
  related: CatalogRecord[];
5424
5549
  } & _ngrx_store.Action<"[Metadata view] Set related records">>;
5425
- declare const setSources: _ngrx_store.ActionCreator<"[Metadata view] Set sources", (props: {
5426
- sources: CatalogRecord[];
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[];
5550
+ declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
5551
+ linkedRecords: LinkedRecord[];
5432
5552
  }) => {
5433
- sourceOf: CatalogRecord[];
5434
- } & _ngrx_store.Action<"[Metadata view] Set has sources">>;
5553
+ linkedRecords: LinkedRecord[];
5554
+ } & _ngrx_store.Action<"[Metadata view] Set associated records">>;
5435
5555
  declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
5436
5556
  chartConfig: DatavizChartConfigModel;
5437
5557
  }) => {
@@ -5487,9 +5607,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
5487
5607
  declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
5488
5608
  declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
5489
5609
  declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
5610
+ declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
5490
5611
  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
5612
  declare namespace mdview_actions_d {
5494
5613
  export {
5495
5614
  mdview_actions_d_addUserFeedback as addUserFeedback,
@@ -5507,9 +5626,8 @@ declare namespace mdview_actions_d {
5507
5626
  mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
5508
5627
  mdview_actions_d_setChartConfig as setChartConfig,
5509
5628
  mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
5629
+ mdview_actions_d_setLinkedRecords as setLinkedRecords,
5510
5630
  mdview_actions_d_setRelated as setRelated,
5511
- mdview_actions_d_setSourceOf as setSourceOf,
5512
- mdview_actions_d_setSources as setSources,
5513
5631
  };
5514
5632
  }
5515
5633
 
@@ -6912,6 +7030,7 @@ interface SearchConfig {
6912
7030
  SEARCH_PRESET?: SearchPreset[];
6913
7031
  ADVANCED_FILTERS?: [];
6914
7032
  LIMIT?: number;
7033
+ SPATIAL_EXTENT_MAX_FILE_SIZE?: number;
6915
7034
  }
6916
7035
  interface SearchConfig {
6917
7036
  FILTER_GEOMETRY?: Geometry;
@@ -6940,6 +7059,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6940
7059
 
6941
7060
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6942
7061
 
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 };
7062
+ 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, 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, SpatialExtentDropdownComponent, SpatialExtentSearchField, 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, 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 };
7063
+ 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, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, LinkedRecord, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordRelation, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentDropdownError, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6945
7064
  //# sourceMappingURL=index.d.ts.map