geonetwork-ui 2.10.3-dev.4154db07d → 2.11.0-dev.4976ded4f

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 (94) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1473 -811
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +230 -82
  4. package/index.d.ts.map +1 -1
  5. package/package.json +8 -8
  6. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +5 -5
  7. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -5
  8. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +43 -13
  9. package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +13 -1
  10. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  11. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +9 -5
  12. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/association-type.mapper.ts +12 -0
  13. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +2 -2
  14. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +70 -10
  15. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +40 -16
  16. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +40 -2
  17. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +13 -1
  18. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -5
  19. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -2
  20. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -2
  21. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +2 -1
  22. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +22 -22
  23. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.css +0 -0
  24. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.html +33 -0
  25. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.ts +94 -0
  26. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +16 -12
  27. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +6 -0
  28. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +6 -0
  29. package/src/libs/feature/editor/src/lib/fields.config.ts +5 -0
  30. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -0
  31. package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -4
  32. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +4 -8
  33. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +7 -16
  34. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -3
  35. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +4 -9
  36. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +2 -7
  37. package/src/libs/feature/router/src/lib/default/router.service.ts +1 -1
  38. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +1 -1
  39. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +9 -4
  40. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +46 -19
  41. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +17 -8
  42. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
  43. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +3 -1
  44. package/src/libs/feature/search/src/lib/utils/service/fields.ts +27 -2
  45. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -7
  46. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +31 -19
  47. package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +2 -2
  48. package/src/libs/ui/inputs/src/index.ts +2 -0
  49. package/src/libs/ui/inputs/src/lib/date-adapter.providers.ts +30 -0
  50. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +3 -24
  51. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +37 -3
  52. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +135 -16
  53. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +166 -29
  54. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +3 -7
  55. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +1 -0
  56. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +20 -7
  57. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +46 -5
  58. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  59. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.css +0 -0
  60. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.html +117 -0
  61. package/src/libs/ui/inputs/src/lib/spatial-extent-dropdown/spatial-extent-dropdown.component.ts +191 -0
  62. package/src/libs/util/app-config/src/lib/app-config.ts +3 -0
  63. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  64. package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +19 -22
  65. package/src/libs/util/data-fetcher/src/lib/engine/duckdb.ts +185 -0
  66. package/src/libs/util/data-fetcher/src/lib/engine/results.ts +63 -0
  67. package/src/libs/util/data-fetcher/src/lib/{sql-utils.ts → engine/sql-utils.ts} +28 -13
  68. package/src/libs/util/data-fetcher/src/lib/model.ts +2 -1
  69. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +53 -38
  70. package/src/libs/util/data-fetcher/src/lib/readers/base.ts +11 -0
  71. package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +9 -47
  72. package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +27 -27
  73. package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +5 -24
  74. package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +5 -49
  75. package/src/libs/util/data-fetcher/src/lib/readers/json.ts +5 -23
  76. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +184 -128
  77. package/src/libs/util/data-fetcher/src/lib/utils.ts +0 -143
  78. package/src/libs/util/shared/src/index.ts +1 -0
  79. package/src/libs/util/shared/src/lib/autofocus.directive.ts +26 -0
  80. package/src/libs/util/shared/src/lib/gn-ui-version.ts +1 -1
  81. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  82. package/src/libs/util/shared/src/lib/utils/file.ts +15 -0
  83. package/src/libs/util/shared/src/lib/utils/geojson.ts +8 -0
  84. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  85. package/tailwind.base.css +5 -0
  86. package/translations/de.json +26 -3
  87. package/translations/en.json +25 -2
  88. package/translations/es.json +23 -0
  89. package/translations/fr.json +26 -3
  90. package/translations/it.json +24 -1
  91. package/translations/nl.json +23 -0
  92. package/translations/pt.json +23 -0
  93. package/translations/sk.json +24 -1
  94. 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';
@@ -18,13 +18,15 @@ 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';
@@ -233,12 +233,24 @@ interface SourceRecord {
233
233
  title?: string;
234
234
  href?: string;
235
235
  }
236
+ declare const associationTypeValues: readonly ["crossReference", "largerWorkCitation", "partOfSeamlessDatabase", "stereoMate", "isComposedOf", "collectiveTitle", "series", "dependency", "revisionOf"];
237
+ type AssociationType = (typeof associationTypeValues)[number];
236
238
  /**
237
239
  * Represents another record associated with this one (e.g. a parent/sibling dataset).
238
240
  */
239
241
  interface AssociatedRecord {
240
- uuid: string;
241
- associationType: string;
242
+ uniqueIdentifier: string;
243
+ associationType: AssociationType;
244
+ }
245
+ /**
246
+ * Nature of the link between a record and another one; the association type is
247
+ * only known for 'sibling' relations, as it is held by the declaring record.
248
+ */
249
+ type RecordRelation = 'source' | 'sourceOf' | 'sibling' | 'associated';
250
+ interface LinkedRecord {
251
+ record: CatalogRecord;
252
+ relation: RecordRelation;
253
+ associationType?: AssociationType;
242
254
  }
243
255
  interface DatasetRecord extends BaseRecord {
244
256
  kind: 'dataset';
@@ -357,7 +369,19 @@ type SortOrder = 'asc' | 'desc';
357
369
  interface SortParam {
358
370
  [key: string]: SortOrder;
359
371
  }
360
- type SortParams = string | SortParam | (string | SortParam)[];
372
+ type EsFieldSort = {
373
+ order: SortOrder;
374
+ mode?: 'max' | 'min';
375
+ missing?: '_last';
376
+ nested?: {
377
+ path: string;
378
+ };
379
+ };
380
+ type SortParams = string | SortParam | {
381
+ [property: string]: EsFieldSort;
382
+ } | (string | SortParam | {
383
+ [property: string]: EsFieldSort;
384
+ })[];
361
385
  interface EsRequestAggTerm {
362
386
  field?: string;
363
387
  size?: number;
@@ -740,7 +764,8 @@ type FieldFilterByRange = {
740
764
  start?: Date;
741
765
  end?: Date;
742
766
  };
743
- type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange;
767
+ type FieldFilterByBoundingBox = [number, number, number, number];
768
+ type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange | FieldFilterByBoundingBox;
744
769
  type FieldFilters = Record<FieldName$1, FieldFilter$1>;
745
770
  type QueryString = {
746
771
  query_string: string;
@@ -752,7 +777,18 @@ type QueryRange = {
752
777
  lte: string;
753
778
  }>;
754
779
  };
755
- 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 FilterQuery = Array<QueryString | QueryRange | QueryGeoShape>;
756
792
 
757
793
  interface TermsAggregationParams {
758
794
  type: 'terms';
@@ -1037,8 +1073,7 @@ declare abstract class RecordsRepositoryInterface {
1037
1073
  abstract getFeatureCatalog(record: CatalogRecord): Observable<DatasetFeatureCatalog | null>;
1038
1074
  abstract aggregate(params: AggregationsParams): Observable<Aggregations>;
1039
1075
  abstract getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
1040
- abstract getSources(record: CatalogRecord): Observable<CatalogRecord[]>;
1041
- abstract getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
1076
+ abstract getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
1042
1077
  abstract fuzzySearch(query: string): Observable<SearchResults>;
1043
1078
  abstract canDuplicate(record: CatalogRecord): boolean;
1044
1079
  abstract canDelete(record: CatalogRecord): Observable<boolean>;
@@ -1124,8 +1159,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1124
1159
  private mapEmbeddedFeatureCatalog;
1125
1160
  getFeatureCatalog(record: CatalogRecord, visited?: Set<string>): Observable<DatasetFeatureCatalog | null>;
1126
1161
  getSimilarRecords(similarTo: CatalogRecord): Observable<CatalogRecord[]>;
1127
- getSources(record: CatalogRecord): Observable<CatalogRecord[]>;
1128
- getSourceOf(record: CatalogRecord): Observable<CatalogRecord[]>;
1162
+ getLinkedRecords(record: CatalogRecord): Observable<LinkedRecord[]>;
1129
1163
  aggregate(params: AggregationsParams): Observable<Aggregations>;
1130
1164
  fuzzySearch(query: string): Observable<SearchResults>;
1131
1165
  getRecordPublicationStatus(uniqueIdentifier: string): Observable<boolean>;
@@ -1701,6 +1735,7 @@ declare class ElasticsearchService {
1701
1735
  private injectLangInQueryStringFields;
1702
1736
  private getQueryLang;
1703
1737
  private isCurrentSearchLang;
1738
+ private findSpatialFilterExtent;
1704
1739
  private filtersToQuery;
1705
1740
  private mustNotFilters;
1706
1741
  private buildPayloadQuery;
@@ -2124,7 +2159,7 @@ declare class DateService {
2124
2159
  dateLocales: Promise<Record<geonetwork_ui.LanguageCode2, Locale>>;
2125
2160
  private getDateObject;
2126
2161
  private getLocaleAndDate;
2127
- private getDateLocale;
2162
+ getDateFnsLocale(): Promise<Locale>;
2128
2163
  formatDate(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2129
2164
  formatDateTime(date: Date | string, options?: Intl.DateTimeFormatOptions): string;
2130
2165
  formatRelativeDateTime(date: Date | string): Promise<string>;
@@ -2142,6 +2177,9 @@ declare function bytesToMegabytes(bytes: number): number;
2142
2177
  */
2143
2178
  declare function propagateToDocumentOnly(event: Event): void;
2144
2179
 
2180
+ declare function isFileExtensionValid(fileName: string, acceptedExtensions: string[]): boolean;
2181
+ declare function readFileAsText(file: File): Promise<string>;
2182
+
2145
2183
  declare function formatUserInfo(userInfo: string | unknown, displayCount?: boolean): string;
2146
2184
 
2147
2185
  type FuzzyFilter = (input: string) => boolean;
@@ -2157,6 +2195,7 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2157
2195
  */
2158
2196
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2159
2197
  type BoundingBox = [number, number, number, number];
2198
+ declare function isBoundingBox(value: unknown): value is BoundingBox;
2160
2199
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2161
2200
  /**
2162
2201
  * Builds the closed GeoJSON Polygon matching the given bounding box.
@@ -2389,6 +2428,15 @@ declare class LinkClassifierService {
2389
2428
  static ɵprov: i0.ɵɵInjectableDeclaration<LinkClassifierService>;
2390
2429
  }
2391
2430
 
2431
+ declare class AutofocusDirective {
2432
+ private el;
2433
+ private injector;
2434
+ set autofocus(active: boolean);
2435
+ static ɵfac: i0.ɵɵFactoryDeclaration<AutofocusDirective, never>;
2436
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AutofocusDirective, "[gnUiAutofocus]", never, { "autofocus": { "alias": "gnUiAutofocus"; "required": false; }; }, {}, never, never, true, never>;
2437
+ static ngAcceptInputType_autofocus: unknown;
2438
+ }
2439
+
2392
2440
  declare class ImageFallbackDirective {
2393
2441
  private el;
2394
2442
  fallbackUrl: string;
@@ -2816,30 +2864,47 @@ declare class CopyTextButtonComponent {
2816
2864
  static ɵcmp: i0.ɵɵComponentDeclaration<CopyTextButtonComponent, "gn-ui-copy-text-button", never, { "text": { "alias": "text"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "displayText": { "alias": "displayText"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, true, never>;
2817
2865
  }
2818
2866
 
2867
+ declare function provideLocalizedDateAdapter(): Provider[];
2868
+
2819
2869
  declare class DatePickerComponent {
2820
- private dateAdapter;
2821
- private translate;
2822
2870
  date: Date;
2823
2871
  dateChange: EventEmitter<Date>;
2824
- constructor();
2825
2872
  static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
2826
2873
  static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
2827
2874
  }
2828
2875
 
2829
- declare class DateRangeDropdownComponent implements AfterViewChecked {
2830
- private overlayContainer;
2876
+ type DateRangeBound = 'start' | 'end';
2877
+ declare class DateRangeDropdownComponent {
2878
+ private scrollStrategies;
2879
+ private dateAdapter;
2880
+ private dateFormats;
2831
2881
  private cdr;
2832
2882
  title: string;
2833
- startDate: Date;
2834
- endDate: Date;
2835
- startDateChange: EventEmitter<Date>;
2836
- endDateChange: EventEmitter<Date>;
2837
- picker: ElementRef;
2838
- isPickerDisplayed: boolean;
2839
- ngAfterViewChecked(): void;
2840
- checkPickerOverlay(): void;
2883
+ dateRange: FieldFilterByRange;
2884
+ dateRangeChange: EventEmitter<FieldFilterByRange>;
2885
+ overlayOrigin: CdkOverlayOrigin;
2886
+ overlayPositions: ConnectedPosition[];
2887
+ scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2888
+ overlayOpen: boolean;
2889
+ expandedBound: DateRangeBound | null;
2890
+ invalidBounds: Record<DateRangeBound, boolean>;
2891
+ constructor();
2892
+ get startDate(): Date;
2893
+ get endDate(): Date;
2894
+ get selectedDatesCount(): number;
2895
+ openOverlay(): void;
2896
+ closeOverlay(): void;
2897
+ toggleBound(bound: DateRangeBound): void;
2898
+ formatDate(date: Date): string;
2899
+ onDateInput(bound: DateRangeBound, event: Event): void;
2900
+ normalizeDateInput(bound: DateRangeBound, event: Event): void;
2901
+ private isAcceptable;
2902
+ setStartDate(date: Date): void;
2903
+ setEndDate(date: Date): void;
2904
+ clearDates(event: Event): void;
2905
+ private applyDateRange;
2841
2906
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
2842
- 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>;
2907
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "dateRange": { "alias": "dateRange"; "required": false; }; }, { "dateRangeChange": "dateRangeChange"; }, never, never, true, never>;
2843
2908
  }
2844
2909
 
2845
2910
  declare class DateRangePickerComponent {
@@ -2852,15 +2917,27 @@ declare class DateRangePickerComponent {
2852
2917
  }
2853
2918
 
2854
2919
  declare const placeholder = "dropFile";
2920
+ type DragAndDropFileInputError = 'invalid-extension' | 'file-too-large';
2855
2921
  declare class DragAndDropFileInputComponent {
2856
2922
  placeholder: string;
2857
2923
  accept: string;
2858
- fileChange: EventEmitter<any>;
2924
+ maxFileSizeMb: number | null;
2925
+ icon: string | null;
2926
+ dropzoneBackgroundColor: string | null;
2927
+ textClass: string;
2928
+ extraClass: string;
2929
+ showFileName: boolean;
2930
+ fileChange: EventEmitter<File>;
2931
+ errorChange: EventEmitter<DragAndDropFileInputError>;
2859
2932
  selectedFile: File;
2933
+ private dropzone;
2860
2934
  get fileName(): string | null;
2935
+ get maxFileSizeBytes(): number | null;
2861
2936
  selectFile(event: any): void;
2937
+ openFileSelector(): void;
2938
+ clear(): void;
2862
2939
  static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropFileInputComponent, never>;
2863
- static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropFileInputComponent, "gn-ui-drag-and-drop-file-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; }, { "fileChange": "fileChange"; }, never, never, true, never>;
2940
+ static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropFileInputComponent, "gn-ui-drag-and-drop-file-input", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "dropzoneBackgroundColor": { "alias": "dropzoneBackgroundColor"; "required": false; }; "textClass": { "alias": "textClass"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "showFileName": { "alias": "showFileName"; "required": false; }; }, { "fileChange": "fileChange"; "errorChange": "errorChange"; }, never, never, true, never>;
2864
2941
  }
2865
2942
 
2866
2943
  interface Choice$1 {
@@ -3145,6 +3222,39 @@ declare class DateRangeInputsComponent {
3145
3222
  static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeInputsComponent, "gn-ui-date-range-inputs", never, { "temporalExtent": { "alias": "temporalExtent"; "required": false; }; }, { "temporalExtentChange": "temporalExtentChange"; }, never, never, true, never>;
3146
3223
  }
3147
3224
 
3225
+ interface SpatialExtentDropdownError {
3226
+ key: string;
3227
+ params?: Record<string, string | number>;
3228
+ }
3229
+ declare class SpatialExtentDropdownComponent {
3230
+ private cd;
3231
+ private scrollStrategies;
3232
+ title: string;
3233
+ maxFileSizeMb: number | null;
3234
+ bboxChange: EventEmitter<BoundingBox>;
3235
+ errorChange: EventEmitter<SpatialExtentDropdownError>;
3236
+ bbox: BoundingBox | null;
3237
+ fileName: string;
3238
+ overlayOrigin: CdkOverlayOrigin;
3239
+ overlay: CdkConnectedOverlay;
3240
+ fileInput: DragAndDropFileInputComponent;
3241
+ overlayPositions: ConnectedPosition[];
3242
+ scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
3243
+ overlayOpen: boolean;
3244
+ overlayMinWidth: string;
3245
+ errorKey: string | null;
3246
+ get hasSelection(): boolean;
3247
+ openOverlay(): void;
3248
+ closeOverlay(): void;
3249
+ toggleOverlay(): void;
3250
+ handleFileSelected(file: File): Promise<void>;
3251
+ handleFileError(error: DragAndDropFileInputError): void;
3252
+ private setError;
3253
+ removeSelection(event: Event): void;
3254
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentDropdownComponent, never>;
3255
+ 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>;
3256
+ }
3257
+
3148
3258
  declare class ResultsHitsSearchKindComponent implements OnChanges {
3149
3259
  selected: string[];
3150
3260
  choices: Choice$1[];
@@ -3293,7 +3403,7 @@ type NotificationWithIdentity = NotificationContent & {
3293
3403
  };
3294
3404
  declare class NotificationsService {
3295
3405
  notifications$: BehaviorSubject<NotificationWithIdentity[]>;
3296
- showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): void;
3406
+ showNotification(content: NotificationContent, timeoutMs?: number, error?: Error): number;
3297
3407
  removeNotificationById(id: number): void;
3298
3408
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
3299
3409
  static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
@@ -3619,7 +3729,7 @@ declare class SearchService implements SearchServiceI {
3619
3729
  static ɵprov: i0.ɵɵInjectableDeclaration<SearchService>;
3620
3730
  }
3621
3731
 
3622
- type FieldType = 'values' | 'dateRange';
3732
+ type FieldType = 'values' | 'dateRange' | 'spatialExtent';
3623
3733
  type FieldValue = string | number;
3624
3734
  interface FieldAvailableValue {
3625
3735
  value: FieldValue;
@@ -3717,6 +3827,12 @@ declare class DateRangeSearchField extends SimpleSearchField {
3717
3827
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3718
3828
  getType(): FieldType;
3719
3829
  }
3830
+ declare class BoundingBoxSearchField extends SimpleSearchField {
3831
+ getAvailableValues(): Observable<FieldAvailableValue[]>;
3832
+ getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
3833
+ getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
3834
+ getType(): FieldType;
3835
+ }
3720
3836
  declare class AvailableServicesField extends SimpleSearchField {
3721
3837
  private translateService;
3722
3838
  constructor(injector: Injector);
@@ -4622,17 +4738,22 @@ declare class FilterDropdownComponent implements OnInit {
4622
4738
  private searchFacade;
4623
4739
  private searchService;
4624
4740
  private fieldsService;
4741
+ private notificationsService;
4742
+ private translateService;
4625
4743
  fieldName: string;
4626
4744
  title: string;
4745
+ spatialExtentMaxFileSize: number;
4627
4746
  fieldType: FieldType;
4628
- dateRange: DateRange;
4629
4747
  choices$: Observable<Choice$1[]>;
4630
4748
  selected$: Observable<FieldValue[]>;
4631
4749
  selectedDateRange$: Observable<DateRange>;
4632
4750
  onSelectedValues(values: unknown[]): void;
4751
+ private spatialExtentErrorNotificationId;
4752
+ onBboxChange(bbox: BoundingBox | null): void;
4753
+ onSpatialExtentError(error: SpatialExtentDropdownError): void;
4754
+ private clearSpatialExtentErrorNotification;
4633
4755
  ngOnInit(): void;
4634
- onStartDateChange(start: Date): void;
4635
- onEndDateChange(end: Date): void;
4756
+ onDateRangeChange(dateRange: DateRange): void;
4636
4757
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterDropdownComponent, never>;
4637
4758
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterDropdownComponent, "gn-ui-filter-dropdown", never, { "fieldName": { "alias": "fieldName"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, never, true, never>;
4638
4759
  }
@@ -4829,7 +4950,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4829
4950
  private searchFacade;
4830
4951
  private searchService;
4831
4952
  private fieldsService;
4832
- private datePipe;
4953
+ private dateService;
4833
4954
  private translate;
4834
4955
  fieldName: string;
4835
4956
  fieldType: FieldType;
@@ -4838,6 +4959,7 @@ declare class SearchFiltersSummaryItemComponent implements OnInit {
4838
4959
  ngOnInit(): void;
4839
4960
  translateLabel(): void;
4840
4961
  getReadableValues(fieldValues: FieldValue[] | DateRange[]): DisplayedValue[];
4962
+ private formatBound;
4841
4963
  removeFilterValue(fieldValue: FieldValue | DateRange): Promise<void>;
4842
4964
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFiltersSummaryItemComponent, never>;
4843
4965
  static ɵcmp: i0.ɵɵComponentDeclaration<SearchFiltersSummaryItemComponent, "gn-ui-search-filters-summary-item", never, { "fieldName": { "alias": "fieldName"; "required": false; }; }, {}, never, never, true, never>;
@@ -4876,10 +4998,11 @@ interface DatasetHeaders {
4876
4998
  interface PropertyInfo {
4877
4999
  name: string;
4878
5000
  label: string;
4879
- type: 'number' | 'date' | 'url' | 'string';
5001
+ type: 'number' | 'date' | 'boolean' | 'string' | 'other';
4880
5002
  }
4881
5003
  interface DatasetInfo {
4882
5004
  itemsCount: number;
5005
+ hasGeometry: boolean;
4883
5006
  }
4884
5007
  type FieldName = string;
4885
5008
  type SumOperation = ['sum', FieldName];
@@ -4911,8 +5034,12 @@ declare class BaseReader {
4911
5034
  protected sort: FieldSort[];
4912
5035
  protected startIndex: number;
4913
5036
  protected count: number;
5037
+ protected loadPromise_: Promise<void>;
5038
+ protected cacheEnabled: boolean;
4914
5039
  constructor(url: string);
5040
+ enableCache(enabled: boolean): void;
4915
5041
  load(): void;
5042
+ get isLoaded(): Promise<void>;
4916
5043
  get properties(): Promise<PropertyInfo[]>;
4917
5044
  get info(): Promise<DatasetInfo>;
4918
5045
  read(): Promise<DataItem[]>;
@@ -4925,21 +5052,22 @@ declare class BaseReader {
4925
5052
  limit(startIndex: number, count: number): this;
4926
5053
  }
4927
5054
 
4928
- declare function openDataset(url: string, typeHint?: SupportedType, options?: {
4929
- namespace?: string;
4930
- wfsVersion?: WfsVersion;
5055
+ interface OpenDatasetOptions {
5056
+ typeHint?: SupportedType;
4931
5057
  wfsFeatureType?: string;
4932
- }, cacheActive?: boolean): Promise<BaseReader>;
5058
+ enableCache?: boolean;
5059
+ }
5060
+ declare function openDataset(url: string, options?: OpenDatasetOptions): Promise<BaseReader>;
4933
5061
  /**
4934
5062
  * This fetches the full dataset at the given URL and parses it according to its mime type.
4935
5063
  * All items in the dataset are converted to GeoJSON features, even if they do not bear any spatial geometry.
4936
5064
  * File type can be either inferred (from the HTTP headers or the URL), or hinted using the 2nd argument
4937
- * File type is determined liked so:
5065
+ * File type is determined like so:
4938
5066
  * 1. if a type hint is given, use it
4939
5067
  * 2. otherwise, look for a Content-Type header in the response with a supported mime type
4940
5068
  * 3. if no valid mime type was found, look for an explicit file extension in the url (.csv, .geojson etc.)
4941
5069
  */
4942
- declare function readDataset(url: string, typeHint?: SupportedType, options?: any, cacheActive?: boolean): Promise<DataItem[]>;
5070
+ declare function readDataset(url: string, options?: OpenDatasetOptions): Promise<DataItem[]>;
4943
5071
  /**
4944
5072
  * This fetches only the header of the dataset at the given URL, giving info on size, mime-type and last update if available.
4945
5073
  */
@@ -4952,31 +5080,51 @@ declare function readDatasetHeaders(url: string): Promise<DatasetHeaders>;
4952
5080
  */
4953
5081
  declare function getJsonDataItemsProxy(items: DataItem[]): Record<string, unknown>[];
4954
5082
 
4955
- declare abstract class BaseCacheReader extends BaseReader {
4956
- protected url: string;
4957
- protected cacheActive: boolean;
4958
- constructor(url: string, cacheActive?: boolean);
4959
- setCacheActive(value: boolean): void;
5083
+ declare class Engine {
5084
+ private db;
5085
+ private init_;
5086
+ private makeInit;
5087
+ isReady(): Promise<Engine>;
5088
+ /**
5089
+ * Returns information about a dataset once it's loaded:
5090
+ * - a list of properties description
5091
+ * - the name of the dataset geometry column (null if no geometry present)
5092
+ * @param datasetId name of the table under which the dataset will be stored
5093
+ * @param loadQuery duckdb-specific query for creating a table out of the data
5094
+ * @param forceReload if true, any existing data will be dropped and redownloaded
5095
+ */
5096
+ loadFile(datasetId: string, loadQuery: string, forceReload?: boolean): Promise<{
5097
+ properties: PropertyInfo[];
5098
+ geometryColumn: string | null;
5099
+ rowsCount: number;
5100
+ }>;
5101
+ registerData(name: string, buffer: Uint8Array): Promise<void>;
5102
+ /**
5103
+ * @param query duckdb-specific query for fetching items
5104
+ */
5105
+ queryItems(query: string): Promise<DataItem[]>;
5106
+ close(): void;
4960
5107
  }
4961
5108
 
4962
- type ParseResult = {
4963
- items: DataItem[];
4964
- properties: PropertyInfo[];
4965
- };
4966
- declare class BaseFileReader extends BaseCacheReader {
4967
- private parseResult_;
4968
- protected getData(): Promise<ParseResult>;
4969
- load(): void;
5109
+ /**
5110
+ * This reader handles file formats supported natively by DuckDB
5111
+ */
5112
+ declare class BaseFileReader extends BaseReader {
5113
+ protected engine: Engine;
5114
+ protected datasetId: string;
5115
+ protected properties_: PropertyInfo[];
5116
+ protected geometryColumn: string;
5117
+ protected rowsCount: number;
5118
+ protected generateDatasetId(): string;
5119
+ protected getLoadQuery(): Promise<string>;
5120
+ load(): Promise<void>;
4970
5121
  get properties(): Promise<PropertyInfo[]>;
4971
5122
  get info(): Promise<DatasetInfo>;
4972
5123
  read(): Promise<DataItem[]>;
4973
5124
  }
4974
5125
 
4975
5126
  declare class GeojsonReader extends BaseFileReader {
4976
- getData(): Promise<{
4977
- items: DataItem[];
4978
- properties: PropertyInfo[];
4979
- }>;
5127
+ getLoadQuery(): Promise<string>;
4980
5128
  }
4981
5129
 
4982
5130
  interface WfsDownloadUrls {
@@ -5020,7 +5168,7 @@ declare class ChartViewComponent {
5020
5168
  set link(value: DatasetOnlineResource);
5021
5169
  private currentLink$;
5022
5170
  set aggregation(value: FieldAggregation[0]);
5023
- aggregation$: BehaviorSubject<"count" | "sum" | "min" | "max" | "average">;
5171
+ aggregation$: BehaviorSubject<"max" | "min" | "count" | "sum" | "average">;
5024
5172
  set xProperty(value: string);
5025
5173
  xProperty$: BehaviorSubject<string>;
5026
5174
  set yProperty(value: string);
@@ -5029,7 +5177,7 @@ declare class ChartViewComponent {
5029
5177
  chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
5030
5178
  set userChartConfig(config: DatavizChartConfigModel);
5031
5179
  chartConfig$: Observable<{
5032
- aggregation: "count" | "sum" | "min" | "max" | "average";
5180
+ aggregation: "max" | "min" | "count" | "sum" | "average";
5033
5181
  xProperty: string;
5034
5182
  yProperty: string;
5035
5183
  chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
@@ -5100,31 +5248,37 @@ interface TableItemModel {
5100
5248
  id: TableItemId;
5101
5249
  [key: string]: TableItemType;
5102
5250
  }
5251
+ interface TableColumn {
5252
+ name: string;
5253
+ label: string;
5254
+ }
5103
5255
  declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5104
5256
  private eltRef;
5105
5257
  private cdr;
5106
5258
  private translateService;
5107
- _featureAttributes: any[];
5259
+ columnsFromFeatureCatalog: TableColumn[];
5108
5260
  set featureAttributes(value: {
5109
5261
  value: string;
5110
5262
  label: string;
5111
5263
  }[]);
5264
+ columnsFromDataset: TableColumn[];
5112
5265
  set dataset(value: BaseReader);
5113
5266
  activeId: TableItemId;
5114
5267
  selected: EventEmitter<any>;
5115
5268
  sort: MatSort;
5116
5269
  paginator: MatPaginator;
5117
5270
  dataset_: BaseReader;
5118
- properties$: BehaviorSubject<string[]>;
5119
5271
  dataSource: DataTableDataSource;
5120
5272
  headerHeight: number;
5121
5273
  count: number;
5122
5274
  loading$: BehaviorSubject<boolean>;
5123
5275
  error: any;
5276
+ get columns(): TableColumn[];
5277
+ get columnNames(): string[];
5124
5278
  ngOnInit(): void;
5125
5279
  ngAfterViewInit(): void;
5126
5280
  ngOnChanges(): void;
5127
- setSort(sort: MatSort): void;
5281
+ setSort(sort: Sort): void;
5128
5282
  setPagination(): void;
5129
5283
  readData(): Promise<void>;
5130
5284
  scrollToItem(itemId: TableItemId): void;
@@ -5322,8 +5476,7 @@ declare class MdViewFacade {
5322
5476
  otherError?: string;
5323
5477
  }>;
5324
5478
  related$: rxjs.Observable<CatalogRecord[]>;
5325
- sources$: rxjs.Observable<CatalogRecord[]>;
5326
- sourceOf$: rxjs.Observable<CatalogRecord[]>;
5479
+ linkedRecords$: rxjs.Observable<LinkedRecord[]>;
5327
5480
  chartConfig$: rxjs.Observable<DatavizChartConfigModel>;
5328
5481
  allLinks$: rxjs.Observable<DatasetOnlineResource[] | ServiceOnlineResource[]>;
5329
5482
  resourceDoi$: rxjs.Observable<{
@@ -5409,16 +5562,11 @@ declare const setRelated: _ngrx_store.ActionCreator<"[Metadata view] Set related
5409
5562
  }) => {
5410
5563
  related: CatalogRecord[];
5411
5564
  } & _ngrx_store.Action<"[Metadata view] Set related records">>;
5412
- declare const setSources: _ngrx_store.ActionCreator<"[Metadata view] Set sources", (props: {
5413
- sources: CatalogRecord[];
5414
- }) => {
5415
- sources: CatalogRecord[];
5416
- } & _ngrx_store.Action<"[Metadata view] Set sources">>;
5417
- declare const setSourceOf: _ngrx_store.ActionCreator<"[Metadata view] Set has sources", (props: {
5418
- sourceOf: CatalogRecord[];
5565
+ declare const setLinkedRecords: _ngrx_store.ActionCreator<"[Metadata view] Set associated records", (props: {
5566
+ linkedRecords: LinkedRecord[];
5419
5567
  }) => {
5420
- sourceOf: CatalogRecord[];
5421
- } & _ngrx_store.Action<"[Metadata view] Set has sources">>;
5568
+ linkedRecords: LinkedRecord[];
5569
+ } & _ngrx_store.Action<"[Metadata view] Set associated records">>;
5422
5570
  declare const setChartConfig: _ngrx_store.ActionCreator<"[Metadata view] Set chart config", (props: {
5423
5571
  chartConfig: DatavizChartConfigModel;
5424
5572
  }) => {
@@ -5474,9 +5622,8 @@ declare const mdview_actions_d_loadUserFeedbacksFailure: typeof loadUserFeedback
5474
5622
  declare const mdview_actions_d_loadUserFeedbacksSuccess: typeof loadUserFeedbacksSuccess;
5475
5623
  declare const mdview_actions_d_setChartConfig: typeof setChartConfig;
5476
5624
  declare const mdview_actions_d_setIncompleteMetadata: typeof setIncompleteMetadata;
5625
+ declare const mdview_actions_d_setLinkedRecords: typeof setLinkedRecords;
5477
5626
  declare const mdview_actions_d_setRelated: typeof setRelated;
5478
- declare const mdview_actions_d_setSourceOf: typeof setSourceOf;
5479
- declare const mdview_actions_d_setSources: typeof setSources;
5480
5627
  declare namespace mdview_actions_d {
5481
5628
  export {
5482
5629
  mdview_actions_d_addUserFeedback as addUserFeedback,
@@ -5494,9 +5641,8 @@ declare namespace mdview_actions_d {
5494
5641
  mdview_actions_d_loadUserFeedbacksSuccess as loadUserFeedbacksSuccess,
5495
5642
  mdview_actions_d_setChartConfig as setChartConfig,
5496
5643
  mdview_actions_d_setIncompleteMetadata as setIncompleteMetadata,
5644
+ mdview_actions_d_setLinkedRecords as setLinkedRecords,
5497
5645
  mdview_actions_d_setRelated as setRelated,
5498
- mdview_actions_d_setSourceOf as setSourceOf,
5499
- mdview_actions_d_setSources as setSources,
5500
5646
  };
5501
5647
  }
5502
5648
 
@@ -6317,6 +6463,7 @@ declare class FormFieldComponent {
6317
6463
  get valueAsDate(): Date;
6318
6464
  get valueAsOverviews(): Array<GraphicOverview>;
6319
6465
  get valueAsUpdateFrequency(): UpdateFrequency;
6466
+ get valueAsAssociatedRecords(): Array<AssociatedRecord>;
6320
6467
  get valueAsTemporalExtents(): Array<DatasetTemporalExtent>;
6321
6468
  get valueAsKeywords(): Array<Keyword>;
6322
6469
  get valueAsTopics(): Array<string>;
@@ -6898,6 +7045,7 @@ interface SearchConfig {
6898
7045
  SEARCH_PRESET?: SearchPreset[];
6899
7046
  ADVANCED_FILTERS?: [];
6900
7047
  LIMIT?: number;
7048
+ SPATIAL_EXTENT_MAX_FILE_SIZE?: number;
6901
7049
  }
6902
7050
  interface SearchConfig {
6903
7051
  FILTER_GEOMETRY?: Geometry;
@@ -6926,6 +7074,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6926
7074
 
6927
7075
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6928
7076
 
6929
- export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactDetailsFormComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_BASEMAP_LAYER, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, REUSE_LIGHT_CONFIGURATION, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, bboxToPolygon, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, createSpatialExtentLayer, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getKeywordHierarchyPath, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, sortByFromString, sortByToString, sortByToStrings, spatialExtentToGeometry, spatialExtentsToFeatureCollection, stripHtml, stripNamespace, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6930
- export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AssociatedRecord, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
7077
+ export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AutofocusDirective, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, BoundingBoxSearchField, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactDetailsFormComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_BASEMAP_LAYER, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, REUSE_LIGHT_CONFIGURATION, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, 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 };
7078
+ export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AssociatedRecord, AssociationType, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DateRangeBound, DragAndDropFileInputError, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByBoundingBox, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, LinkedRecord, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryGeoShape, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordRelation, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentDropdownError, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6931
7079
  //# sourceMappingURL=index.d.ts.map