geonetwork-ui 2.11.0-dev.a5c259d9e → 2.11.0-dev.a63e6e32a

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 (51) hide show
  1. package/fesm2022/geonetwork-ui.mjs +477 -295
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +137 -75
  4. package/index.d.ts.map +1 -1
  5. package/package.json +2 -1
  6. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +107 -34
  7. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +20 -1
  8. package/src/libs/feature/map/src/index.ts +0 -1
  9. package/src/libs/feature/map/src/lib/feature-map.module.ts +1 -8
  10. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +1 -1
  11. package/src/libs/feature/search/src/index.ts +2 -0
  12. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +5 -4
  13. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +20 -20
  14. package/src/libs/feature/{map/src/lib → search/src/lib/geocoding}/geocoding.service.ts +5 -1
  15. package/src/libs/feature/search/src/lib/location-search/location-search.component.html +8 -0
  16. package/src/libs/feature/search/src/lib/location-search/location-search.component.ts +40 -0
  17. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +18 -8
  18. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +8 -2
  19. package/src/libs/feature/search/src/lib/utils/service/fields.ts +49 -5
  20. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +2 -1
  21. package/src/libs/ui/inputs/src/index.ts +1 -0
  22. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +10 -1
  23. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +8 -0
  24. package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
  25. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
  26. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
  27. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
  28. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
  29. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
  30. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +7 -4
  31. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +12 -9
  32. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +2 -2
  33. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +3 -9
  34. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +26 -2
  35. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -0
  36. package/src/libs/util/shared/src/index.ts +1 -0
  37. package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
  38. package/src/libs/util/shared/src/lib/links/link-utils.ts +19 -10
  39. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  40. package/src/libs/util/shared/src/lib/utils/geojson.ts +8 -0
  41. package/translations/de.json +9 -5
  42. package/translations/en.json +8 -4
  43. package/translations/es.json +7 -3
  44. package/translations/fr.json +9 -5
  45. package/translations/it.json +7 -3
  46. package/translations/nl.json +7 -3
  47. package/translations/pt.json +7 -3
  48. package/translations/sk.json +7 -3
  49. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.css +0 -0
  50. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +0 -41
  51. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +0 -112
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';
@@ -17,12 +17,12 @@ 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 * as geonetwork_ui from 'geonetwork-ui';
21
- import * as _angular_cdk_overlay from '@angular/cdk/overlay';
22
- import { CdkOverlayOrigin, CdkConnectedOverlay, ConnectedPosition, CdkScrollable } from '@angular/cdk/overlay';
20
+ import { GeoadminOptions, GeonamesOptions, DataGouvFrOptions, GeocodingResult } from '@geospatial-sdk/geocoding';
23
21
  import { UntypedFormControl, FormControl } from '@angular/forms';
24
22
  import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
25
- import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
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';
26
26
  import { OgcApiEndpoint, WfsEndpoint, MimeType, WfsFeatureTypeFull, WmsLayerFull, WmtsLayer, StacItem, WfsVersion, OgcApiCollectionInfo, OgcApiRecord, GetCollectionItemsOptions, StacItemsDocument } from '@camptocamp/ogc-client';
27
27
  import OlMap from 'ol/Map.js';
28
28
  import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/core/dist/model';
@@ -764,7 +764,8 @@ type FieldFilterByRange = {
764
764
  start?: Date;
765
765
  end?: Date;
766
766
  };
767
- type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange;
767
+ type FieldFilterByBoundingBox = [number, number, number, number];
768
+ type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange | FieldFilterByBoundingBox;
768
769
  type FieldFilters = Record<FieldName$1, FieldFilter$1>;
769
770
  type QueryString = {
770
771
  query_string: string;
@@ -776,7 +777,23 @@ type QueryRange = {
776
777
  lte: string;
777
778
  }>;
778
779
  };
779
- type FilterQuery = Array<QueryString | QueryRange>;
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>;
780
797
 
781
798
  interface TermsAggregationParams {
782
799
  type: 'terms';
@@ -1716,13 +1733,15 @@ declare class ElasticsearchService {
1716
1733
  private get metadataLang();
1717
1734
  getSearchRequestBody(aggregations?: any, size?: number, from?: number, sortBy?: SortByField, requestFields?: RequestFields, searchFilters?: SearchFilters, configFilters?: SearchFilters, uuids?: string[], geometry?: Geometry): EsSearchParams;
1718
1735
  private processRuntimeFields;
1719
- registerRuntimeField(fieldName: string, expression: string): void;
1736
+ registerRuntimeField(fieldName: string, expression: string, type?: 'keyword' | 'date'): void;
1720
1737
  getMetadataByIdsPayload(uuids: string[]): EsSearchParams;
1721
1738
  getRelatedRecordPayload(record: CatalogRecord, size?: number, _source?: string[]): EsSearchParams;
1722
1739
  private buildPayloadSort;
1723
1740
  private injectLangInQueryStringFields;
1724
1741
  private getQueryLang;
1725
1742
  private isCurrentSearchLang;
1743
+ private findSpatialFilterExtent;
1744
+ private buildDateRangeQuery;
1726
1745
  private filtersToQuery;
1727
1746
  private mustNotFilters;
1728
1747
  private buildPayloadQuery;
@@ -2146,7 +2165,7 @@ declare class DateService {
2146
2165
  dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
2147
2166
  private getDateObject;
2148
2167
  private getLocaleAndDate;
2149
- private getDateLocale;
2168
+ getDateFnsLocale(): Promise<Locale>;
2150
2169
  formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2151
2170
  formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2152
2171
  formatRelativeDateTime(date: Date | string): Promise<string>;
@@ -2182,6 +2201,7 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2182
2201
  */
2183
2202
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2184
2203
  type BoundingBox = [number, number, number, number];
2204
+ declare function isBoundingBox(value: unknown): value is BoundingBox;
2185
2205
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2186
2206
  /**
2187
2207
  * Builds the closed GeoJSON Polygon matching the given bounding box.
@@ -2387,14 +2407,7 @@ declare function checkFileFormat(link: DatasetOnlineResource | ServiceOnlineReso
2387
2407
  declare function getBadgeColor(linkFormat: FileFormat): string;
2388
2408
  declare function getLinkId(link: DatasetOnlineResource): string;
2389
2409
  declare function getLinkLabel(link: DatasetOnlineResource | ServiceOnlineResource): string;
2390
- declare function getLayers(url: string, serviceProtocol: ServiceProtocol): Promise<{
2391
- name: string;
2392
- hasRecords?: boolean;
2393
- hasFeatures?: boolean;
2394
- hasVectorTiles?: boolean;
2395
- hasMapTiles?: boolean;
2396
- hasDataQueries?: boolean;
2397
- }[] | _camptocamp_ogc_client.WfsFeatureTypeFull[] | _camptocamp_ogc_client.WmsLayerFull[] | _camptocamp_ogc_client.WmtsLayer[]>;
2410
+ declare function getLayers(url: string, serviceProtocol: ServiceProtocol, deep?: boolean): Promise<any[]>;
2398
2411
  declare function wmsLayerFlatten(layerFull: any): any[];
2399
2412
  declare function getMimeTypeForFormat(format: FileFormat): string | null;
2400
2413
 
@@ -2414,6 +2427,15 @@ declare class LinkClassifierService {
2414
2427
  static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
2415
2428
  }
2416
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
+
2417
2439
  declare class ImageFallbackDirective {
2418
2440
  private el;
2419
2441
  fallbackUrl: string;
@@ -2738,6 +2760,13 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
2738
2760
  triggerRef: MatAutocompleteTrigger;
2739
2761
  autocomplete: MatAutocomplete;
2740
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
+ }>;
2741
2770
  searching: boolean;
2742
2771
  control: UntypedFormControl;
2743
2772
  cancelEnter: boolean;
@@ -2783,7 +2812,7 @@ declare class AutocompleteComponent implements OnInit, AfterViewInit, OnDestroy,
2783
2812
  handleSelection(event: MatAutocompleteSelectedEvent): void;
2784
2813
  handleInput(event: InputEvent): void;
2785
2814
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
2786
- 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>;
2787
2816
  }
2788
2817
 
2789
2818
  declare class BadgeComponent {
@@ -2841,30 +2870,47 @@ declare class CopyTextButtonComponent {
2841
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>;
2842
2871
  }
2843
2872
 
2873
+ declare function provideLocalizedDateAdapter(): Provider[];
2874
+
2844
2875
  declare class DatePickerComponent {
2845
- private dateAdapter;
2846
- private translate;
2847
2876
  date: Date;
2848
2877
  dateChange: EventEmitter<Date>;
2849
- constructor();
2850
2878
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
2851
2879
  static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
2852
2880
  }
2853
2881
 
2854
- declare class DateRangeDropdownComponent implements AfterViewChecked {
2855
- private overlayContainer;
2882
+ type DateRangeBound = 'start' | 'end';
2883
+ declare class DateRangeDropdownComponent {
2884
+ private scrollStrategies;
2885
+ private dateAdapter;
2886
+ private dateFormats;
2856
2887
  private cdr;
2857
2888
  title: string;
2858
- startDate: Date;
2859
- endDate: Date;
2860
- startDateChange: EventEmitter<Date>;
2861
- endDateChange: EventEmitter<Date>;
2862
- picker: ElementRef;
2863
- isPickerDisplayed: boolean;
2864
- ngAfterViewChecked(): void;
2865
- checkPickerOverlay(): void;
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;
2866
2912
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
2867
- 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>;
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>;
2868
2914
  }
2869
2915
 
2870
2916
  declare class DateRangePickerComponent {
@@ -2900,20 +2946,20 @@ declare class DragAndDropFileInputComponent {
2900
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>;
2901
2947
  }
2902
2948
 
2903
- interface Choice$1 {
2904
- value: unknown;
2949
+ interface Choice$1<T = unknown> {
2950
+ value: T;
2905
2951
  label: string;
2906
2952
  }
2907
2953
 
2908
- declare class DropdownMultiselectComponent {
2954
+ declare class DropdownMultiselectComponent<T = unknown> {
2909
2955
  private scrollStrategies;
2910
2956
  title: string;
2911
- choices: Choice$1[];
2912
- selected: unknown[];
2957
+ choices: Choice$1<T>[];
2958
+ selected: T[];
2913
2959
  allowSearch: boolean;
2914
2960
  maxRows: number;
2915
2961
  searchInputValue: string;
2916
- selectValues: EventEmitter<unknown[]>;
2962
+ selectValues: EventEmitter<T[]>;
2917
2963
  overlayOrigin: CdkOverlayOrigin;
2918
2964
  overlay: CdkConnectedOverlay;
2919
2965
  overlayContainer: ElementRef;
@@ -2926,8 +2972,8 @@ declare class DropdownMultiselectComponent {
2926
2972
  overlayMaxHeight: string;
2927
2973
  id: string;
2928
2974
  get hasSelectedChoices(): boolean;
2929
- get selectedChoices(): Choice$1[];
2930
- get filteredChoicesByText(): Choice$1[];
2975
+ get selectedChoices(): Choice$1<T>[];
2976
+ get filteredChoicesByText(): Choice$1<T>[];
2931
2977
  get focusedIndex(): number | -1;
2932
2978
  private setFocus;
2933
2979
  openOverlay(): Promise<[void, any]>;
@@ -2937,13 +2983,13 @@ declare class DropdownMultiselectComponent {
2937
2983
  focusFirstItem(): void;
2938
2984
  focusLastItem(): void;
2939
2985
  shiftItemFocus(shift: number): void;
2940
- isSelected(choice: Choice$1): boolean;
2941
- select(choice: Choice$1, selected: boolean): void;
2942
- 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;
2943
2989
  clearSelection(event: Event): void;
2944
2990
  clearSearchInputValue(event: Event): void;
2945
- static ɵfac: i0.ɵɵFactoryDeclaration<DropdownMultiselectComponent, never>;
2946
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMultiselectComponent, "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>;
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>;
2947
2993
  }
2948
2994
 
2949
2995
  interface DropdownChoice {
@@ -3191,6 +3237,7 @@ declare class SpatialExtentDropdownComponent {
3191
3237
  private scrollStrategies;
3192
3238
  title: string;
3193
3239
  maxFileSizeMb: number | null;
3240
+ set initialBbox(value: BoundingBox | null);
3194
3241
  bboxChange: EventEmitter<BoundingBox>;
3195
3242
  errorChange: EventEmitter<SpatialExtentDropdownError>;
3196
3243
  bbox: BoundingBox | null;
@@ -3204,6 +3251,11 @@ declare class SpatialExtentDropdownComponent {
3204
3251
  overlayMinWidth: string;
3205
3252
  errorKey: string | null;
3206
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
+ };
3207
3259
  openOverlay(): void;
3208
3260
  closeOverlay(): void;
3209
3261
  toggleOverlay(): void;
@@ -3212,7 +3264,7 @@ declare class SpatialExtentDropdownComponent {
3212
3264
  private setError;
3213
3265
  removeSelection(event: Event): void;
3214
3266
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentDropdownComponent, never>;
3215
- 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>;
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>;
3216
3268
  }
3217
3269
 
3218
3270
  declare class ResultsHitsSearchKindComponent implements OnChanges {
@@ -3221,7 +3273,7 @@ declare class ResultsHitsSearchKindComponent implements OnChanges {
3221
3273
  selectionChanged: EventEmitter<string[]>;
3222
3274
  availableChoices: Choice$1[];
3223
3275
  ngOnChanges(changes: SimpleChanges): void;
3224
- buildFilterChoices(availableValues: Choice$1[]): Choice$1[];
3276
+ buildFilterChoices(availableValues: Choice$1[]): Choice$1<unknown>[];
3225
3277
  onSelectedValues(values: string[]): void;
3226
3278
  isSelectedChoice(choiceValue: string): boolean;
3227
3279
  isAllChoice(choiceValue: string): boolean;
@@ -3331,26 +3383,6 @@ declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
3331
3383
  static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerRecordPreviewComponent, "gn-ui-add-layer-record-preview", never, {}, {}, never, never, true, never>;
3332
3384
  }
3333
3385
 
3334
- declare class GeocodingComponent implements OnDestroy {
3335
- private mapFacade;
3336
- private geocodingService;
3337
- searchText: string;
3338
- results: any[];
3339
- searchTextChanged: Subject<string>;
3340
- destroy$: Subject<void>;
3341
- errorMessage: string | null;
3342
- constructor();
3343
- ngOnDestroy(): void;
3344
- onSearchChange(searchText: string): void;
3345
- clearSearch(): void;
3346
- zoomToLocation(result: any): Promise<void>;
3347
- zoomToPoint(pointCoords: [number, number]): Promise<void>;
3348
- zoomToPolygon(polygonCoords: [[number, number][]]): Promise<void>;
3349
- onEnterPress(): void;
3350
- static ɵfac: i0.ɵɵFactoryDeclaration<GeocodingComponent, never>;
3351
- static ɵcmp: i0.ɵɵComponentDeclaration<GeocodingComponent, "gn-ui-geocoding", never, {}, {}, never, never, true, never>;
3352
- }
3353
-
3354
3386
  interface NotificationContent {
3355
3387
  type: 'info' | 'warning' | 'error' | 'success';
3356
3388
  title: string;
@@ -3384,6 +3416,32 @@ declare class FeatureSearchModule {
3384
3416
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureSearchModule>;
3385
3417
  }
3386
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
+
3387
3445
  declare const FILTER_GEOMETRY: InjectionToken<Promise<Geometry>>;
3388
3446
 
3389
3447
  declare const RECORD_DATASET_URL_TOKEN: InjectionToken<string>;
@@ -3787,9 +3845,13 @@ declare class DateRangeSearchField extends SimpleSearchField {
3787
3845
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3788
3846
  getType(): FieldType;
3789
3847
  }
3790
- declare class SpatialExtentSearchField extends SimpleSearchField {
3791
- constructor(injector: Injector);
3848
+ declare class ResourceCreationRevisionDateSearchField extends DateRangeSearchField {
3849
+ constructor(injector: Injector, order?: 'asc' | 'desc');
3850
+ }
3851
+ declare class BoundingBoxSearchField extends SimpleSearchField {
3792
3852
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3853
+ getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
3854
+ getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
3793
3855
  getType(): FieldType;
3794
3856
  }
3795
3857
  declare class AvailableServicesField extends SimpleSearchField {
@@ -4703,18 +4765,17 @@ declare class FilterDropdownComponent implements OnInit {
4703
4765
  title: string;
4704
4766
  spatialExtentMaxFileSize: number;
4705
4767
  fieldType: FieldType;
4706
- dateRange: DateRange;
4707
4768
  choices$: Observable<Choice$1[]>;
4708
4769
  selected$: Observable<FieldValue[]>;
4709
4770
  selectedDateRange$: Observable<DateRange>;
4771
+ selectedBoundingBox$: Observable<BoundingBox | null>;
4710
4772
  onSelectedValues(values: unknown[]): void;
4711
4773
  private spatialExtentErrorNotificationId;
4712
4774
  onBboxChange(bbox: BoundingBox | null): void;
4713
4775
  onSpatialExtentError(error: SpatialExtentDropdownError): void;
4714
4776
  private clearSpatialExtentErrorNotification;
4715
4777
  ngOnInit(): void;
4716
- onStartDateChange(start: Date): void;
4717
- onEndDateChange(end: Date): void;
4778
+ onDateRangeChange(dateRange: DateRange): void;
4718
4779
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
4719
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>;
4720
4781
  }
@@ -4911,7 +4972,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4911
4972
  private searchFacade;
4912
4973
  private searchService;
4913
4974
  private fieldsService;
4914
- private datePipe;
4975
+ private dateService;
4915
4976
  private translate;
4916
4977
  fieldName: string;
4917
4978
  fieldType: FieldType;
@@ -4920,6 +4981,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4920
4981
  ngOnInit(): void;
4921
4982
  translateLabel(): void;
4922
4983
  getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
4984
+ private formatBound;
4923
4985
  removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
4924
4986
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
4925
4987
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
@@ -7034,6 +7096,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
7034
7096
 
7035
7097
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
7036
7098
 
7037
- 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, 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, 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 };
7038
- 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, 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 };
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 };
7039
7101
  //# sourceMappingURL=index.d.ts.map