geonetwork-ui 2.10.0-dev.d0cd0940b → 2.10.0-dev.d26e9afe1

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 (137) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1294 -6077
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +200 -161
  4. package/index.d.ts.map +1 -1
  5. package/material-styles.css +483 -0
  6. package/package.json +25 -35
  7. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
  8. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
  9. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
  10. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
  11. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
  20. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
  21. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  22. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
  23. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
  24. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  25. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
  27. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
  28. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
  30. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
  31. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
  32. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
  33. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  34. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +59 -37
  35. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  36. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  37. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +48 -2
  38. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
  39. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  40. package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
  41. package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
  42. package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
  43. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +56 -0
  44. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  45. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  46. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  47. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  48. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  49. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
  50. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
  51. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
  52. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  53. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  54. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
  55. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +6 -8
  56. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +9 -2
  57. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +12 -0
  58. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  59. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  60. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  64. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  65. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
  66. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +21 -16
  67. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +14 -0
  68. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
  69. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +34 -2
  70. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -6
  71. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +92 -33
  72. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  73. package/src/libs/feature/editor/src/lib/fields.config.ts +310 -336
  74. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
  75. package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
  76. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  77. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  78. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  79. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  80. package/src/libs/ui/dataviz/src/index.ts +0 -1
  81. package/src/libs/ui/elements/src/index.ts +1 -0
  82. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
  83. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
  84. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +29 -4
  85. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +51 -7
  86. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  87. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  88. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  89. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  90. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
  91. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +20 -10
  92. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +29 -1
  93. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  94. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  95. package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
  96. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  97. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  98. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  99. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
  100. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
  101. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  102. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  103. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  104. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  105. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  106. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  107. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  108. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  109. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  110. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  111. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  112. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  113. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  114. package/src/libs/util/app-config/src/lib/app-config.ts +70 -9
  115. package/src/libs/util/app-config/src/lib/model.ts +7 -0
  116. package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
  117. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  118. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  119. package/src/libs/util/i18n/src/index.ts +0 -1
  120. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  121. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  122. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  123. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  124. package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
  125. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  126. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  127. package/src/libs/util/shared/src/lib/utils/user-display.ts +9 -0
  128. package/style.css +0 -1
  129. package/tailwind.base.css +8 -0
  130. package/translations/de.json +58 -48
  131. package/translations/en.json +63 -53
  132. package/translations/es.json +32 -22
  133. package/translations/fr.json +58 -48
  134. package/translations/it.json +58 -48
  135. package/translations/nl.json +31 -21
  136. package/translations/pt.json +32 -22
  137. package/translations/sk.json +32 -22
package/index.d.ts CHANGED
@@ -1,17 +1,17 @@
1
1
  import * as geojson from 'geojson';
2
- import { Geometry, Feature, FeatureCollection } from 'geojson';
2
+ 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, ModuleWithProviders, EnvironmentProviders } 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';
7
7
  import * as rxjs from 'rxjs';
8
8
  import { Observable, Subject, BehaviorSubject, Subscription, ReplaySubject } from 'rxjs';
9
9
  import { Store, NamedNode } from 'rdflib';
10
10
  import { ContentType } from 'rdflib/lib/types';
11
11
  import { HttpParameterCodec, HttpClient, HttpHeaders, HttpResponse, HttpEvent, HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
12
- import { TranslateService, TranslateModuleConfig, TranslateLoader, TranslateCompiler } from '@ngx-translate/core';
12
+ import { TranslateService, TranslateModuleConfig } from '@ngx-translate/core';
13
13
  import * as _geospatial_sdk_core from '@geospatial-sdk/core';
14
- import { MapContext, MapContextLayer, Extent, SourceLoadErrorEvent } from '@geospatial-sdk/core';
14
+ import { MapContext, MapContextLayer, Extent, SourceLoadErrorEvent, MapContextLayerGeojson } from '@geospatial-sdk/core';
15
15
  import * as _ngrx_store from '@ngrx/store';
16
16
  import { Action } from '@ngrx/store';
17
17
  import { Style } from 'ol/style.js';
@@ -46,7 +46,6 @@ import { CdkDragDrop } from '@angular/cdk/drag-drop';
46
46
  import { Locale } from 'date-fns/locale';
47
47
  import { ViewportScroller } from '@angular/common';
48
48
  import { TranslateHttpLoader } from '@ngx-translate/http-loader';
49
- import { TranslateMessageFormatCompiler } from 'ngx-translate-messageformat-compiler';
50
49
 
51
50
  type LanguageCode = string;
52
51
  type FieldTranslation = Record<LanguageCode, string>;
@@ -100,7 +99,7 @@ interface Individual {
100
99
 
101
100
  type KeywordType = 'place' | 'temporal' | 'theme' | 'other';
102
101
  interface ThesaurusModel {
103
- id: string;
102
+ id?: string;
104
103
  name?: string;
105
104
  url?: URL;
106
105
  thesaurusKey?: string;
@@ -136,12 +135,9 @@ interface Keyword {
136
135
  type: KeywordType;
137
136
  thesaurus?: ThesaurusModel;
138
137
  bbox?: [number, number, number, number];
138
+ hierarchyPath?: string[];
139
139
  translations?: KeywordTranslations;
140
140
  }
141
- interface INSPIRE_topic {
142
- value: string;
143
- label: string;
144
- }
145
141
  interface ResourceIdentifier$1 {
146
142
  code: string;
147
143
  codeSpace?: string;
@@ -229,10 +225,19 @@ interface DatasetTemporalExtent {
229
225
  start: Date;
230
226
  end?: Date;
231
227
  }
228
+ /**
229
+ * Represents a source dataset referenced from a lineage entry.
230
+ */
231
+ interface SourceRecord {
232
+ uuid?: string;
233
+ title?: string;
234
+ href?: string;
235
+ }
232
236
  interface DatasetRecord extends BaseRecord {
233
237
  kind: 'dataset';
234
238
  status: RecordStatus;
235
239
  lineage: string;
240
+ sourceRecords: Array<SourceRecord>;
236
241
  onlineResources: Array<DatasetOnlineResource>;
237
242
  spatialExtents: Array<DatasetSpatialExtent>;
238
243
  temporalExtents: Array<DatasetTemporalExtent>;
@@ -256,6 +261,7 @@ interface ServiceRecord extends BaseRecord {
256
261
  interface ReuseRecord extends BaseRecord {
257
262
  kind: 'reuse';
258
263
  lineage: string;
264
+ sourceRecords: Array<SourceRecord>;
259
265
  onlineResources: Array<DatasetOnlineResource>;
260
266
  reuseType: ReuseType;
261
267
  spatialExtents: Array<DatasetSpatialExtent>;
@@ -427,6 +433,7 @@ type ThesaurusName = string;
427
433
  interface Thesaurus {
428
434
  id?: string;
429
435
  title?: string;
436
+ multilingualTitle?: MultilingualField;
430
437
  theme?: string;
431
438
  link?: string;
432
439
  keywords: MultilingualField[];
@@ -687,7 +694,17 @@ declare const getAsUrl: (field: any, location?: string) => URL;
687
694
  declare const mapLogo: (source: SourceWithUnknownProps) => URL;
688
695
  declare const mapOrganization: (sourceContact: SourceWithUnknownProps, lang3: string) => Organization;
689
696
  declare const mapContact: (sourceContact: SourceWithUnknownProps, lang3: string) => Individual;
690
- declare const mapKeywords: (thesauri: Thesaurus[], language: string) => any[];
697
+ interface KeywordTree {
698
+ default?: string[];
699
+ }
700
+ /**
701
+ * Resolves a keyword's ancestor path within its thesaurus tree, or null for a
702
+ * root-level keyword (no ancestors to show). Tree entries are `^`-joined label
703
+ * paths (default language); they aren't index-aligned with the keywords, so we
704
+ * match on the last segment (not by position/URI), shortest path on poly-hierarchy.
705
+ */
706
+ declare const getKeywordHierarchyPath: (keywordDefaultLabel: string, tree?: KeywordTree | null) => string[] | null;
707
+ declare const mapKeywords: (thesauri: Record<string, Thesaurus>, language: string, source?: SourceWithUnknownProps) => any[];
691
708
 
692
709
  type ESResponseSource = SourceWithUnknownProps;
693
710
  type EsFieldMapperFn = (output: Partial<CatalogRecord>, source: ESResponseSource) => Partial<CatalogRecord>;
@@ -1077,6 +1094,7 @@ declare abstract class RecordsRepositoryInterface {
1077
1094
 
1078
1095
  type RecordAsXml = string;
1079
1096
  declare const DISABLE_DRAFT: InjectionToken<boolean>;
1097
+ declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
1080
1098
  declare class Gn4Repository implements RecordsRepositoryInterface {
1081
1099
  private httpClient;
1082
1100
  private gn4SearchApi;
@@ -1087,6 +1105,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1087
1105
  private gn4LanguagesApi;
1088
1106
  private settingsService;
1089
1107
  private disableDraft;
1108
+ private defaultConverter;
1090
1109
  _draftsChanged: Subject<void>;
1091
1110
  draftsChanged$: Observable<void>;
1092
1111
  search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
@@ -1746,6 +1765,15 @@ interface UserModel {
1746
1765
  profileIcon?: string;
1747
1766
  }
1748
1767
 
1768
+ interface GroupModel {
1769
+ groupId: number;
1770
+ groupName: string;
1771
+ isMember: boolean;
1772
+ canEdit: boolean;
1773
+ canApprove: boolean;
1774
+ canAdministrate: boolean;
1775
+ }
1776
+
1749
1777
  interface RecordAttachment {
1750
1778
  url: URL;
1751
1779
  fileName: string;
@@ -1765,6 +1793,7 @@ declare abstract class PlatformServiceInterface {
1765
1793
  abstract getMe(): Observable<UserModel>;
1766
1794
  abstract isAnonymous(): Observable<boolean>;
1767
1795
  abstract getUsers(): Observable<UserModel[]>;
1796
+ abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
1768
1797
  abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1769
1798
  abstract getOrganizations(): Observable<Organization[]>;
1770
1799
  abstract translateKey(key: string): Observable<string>;
@@ -1923,6 +1952,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
1923
1952
  declare class Gn4PlatformService implements PlatformServiceInterface {
1924
1953
  private meApi;
1925
1954
  private usersApi;
1955
+ private groupsApi;
1926
1956
  private mapper;
1927
1957
  private toolsApiService;
1928
1958
  private registriesApiService;
@@ -1954,6 +1984,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
1954
1984
  getOrganizations(): Observable<Organization[]>;
1955
1985
  getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1956
1986
  getUsers(): Observable<UserModel[]>;
1987
+ getUserPermissionsByGroup(): Observable<GroupModel[]>;
1957
1988
  translateKey(key: string): Observable<string>;
1958
1989
  private allThesaurus$;
1959
1990
  searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
@@ -2118,6 +2149,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2118
2149
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2119
2150
  type BoundingBox = [number, number, number, number];
2120
2151
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2152
+ /**
2153
+ * Builds the closed GeoJSON Polygon matching the given bounding box.
2154
+ */
2155
+ declare function bboxToPolygon(bbox: BoundingBox): Polygon;
2156
+ /**
2157
+ * Returns the geometry carried by a spatial extent, falling back to the polygon
2158
+ * derived from its bounding box. Returns null when the extent has neither.
2159
+ */
2160
+ declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
2161
+ /**
2162
+ * Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
2163
+ * e.g. to be used as the data source of a map layer.
2164
+ */
2165
+ declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
2121
2166
 
2122
2167
  declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
2123
2168
  declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
@@ -2166,6 +2211,7 @@ declare function getTemporalRangeUnion(ranges: {
2166
2211
  declare function removeSearchParams(url: string, searchParams: string[]): string;
2167
2212
 
2168
2213
  declare function getIndividualDisplayName(individual: Individual): string;
2214
+ declare function getAddressLines(address: string | undefined): string[];
2169
2215
  declare function toIndividual(user: UserModel): Individual;
2170
2216
 
2171
2217
  declare const FORMATS: {
@@ -2376,6 +2422,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
2376
2422
 
2377
2423
  declare class MapUtilsService {
2378
2424
  getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
2425
+ /**
2426
+ * Builds a non-interactive overlay layer drawing the spatial extent(s)
2427
+ * declared in the record's metadata (bounding boxes and/or geometries).
2428
+ * Returns null when the record has no usable spatial extent.
2429
+ *
2430
+ * This is purely for display and is independent from the map's initial view,
2431
+ * which is derived separately (see {@link getRecordExtent}).
2432
+ */
2433
+ getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
2379
2434
  static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
2380
2435
  static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
2381
2436
  }
@@ -2708,7 +2763,7 @@ declare class BadgeComponent {
2708
2763
 
2709
2764
  declare class ButtonComponent {
2710
2765
  private btnClass;
2711
- set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black' | 'primary-light');
2766
+ set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
2712
2767
  disabled: boolean;
2713
2768
  extraClass: string;
2714
2769
  buttonClick: EventEmitter<Event>;
@@ -2819,7 +2874,7 @@ declare class DropdownMultiselectComponent {
2819
2874
  overlayPositions: ConnectedPosition[];
2820
2875
  scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2821
2876
  overlayOpen: boolean;
2822
- overlayWidth: string;
2877
+ overlayMinWidth: string;
2823
2878
  overlayMaxHeight: string;
2824
2879
  id: string;
2825
2880
  get hasSelectedChoices(): boolean;
@@ -3034,7 +3089,7 @@ declare class UrlInputComponent implements OnChanges {
3034
3089
  inputValue: string;
3035
3090
  ngOnChanges(changes: SimpleChanges): void;
3036
3091
  handleInput(event: Event): void;
3037
- handleUpload(element: HTMLInputElement): void;
3092
+ handleUpload(element: HTMLInputElement, event: Event): void;
3038
3093
  isValidUrl(url: string): boolean;
3039
3094
  static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
3040
3095
  static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showValidateButton": { "alias": "showValidateButton"; "required": false; }; "resetUrlOnChange": { "alias": "resetUrlOnChange"; "required": false; }; }, { "valueChange": "valueChange"; "uploadClick": "uploadClick"; }, never, ["*"], true, never>;
@@ -3143,6 +3198,22 @@ declare class ResultsTableComponent {
3143
3198
  static ɵcmp: i0.ɵɵComponentDeclaration<ResultsTableComponent, "gn-ui-results-table", never, { "records": { "alias": "records"; "required": false; }; "selectedRecordsIdentifiers": { "alias": "selectedRecordsIdentifiers"; "required": false; }; "sortOrder": { "alias": "sortOrder"; "required": false; }; "hasDraft": { "alias": "hasDraft"; "required": false; }; "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "canEdit": { "alias": "canEdit"; "required": false; }; "isDraftPage": { "alias": "isDraftPage"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; }, { "sortByChange": "sortByChange"; "recordClick": "recordClick"; "duplicateRecord": "duplicateRecord"; "deleteRecord": "deleteRecord"; "rollbackDraft": "rollbackDraft"; "recordsSelectedChange": "recordsSelectedChange"; }, never, never, true, never>;
3144
3199
  }
3145
3200
 
3201
+ type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
3202
+ declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
3203
+ type InputChartType = (typeof CHART_TYPE_VALUES)[number];
3204
+ interface DatavizChartConfigModel {
3205
+ xProperty: string;
3206
+ yProperty: string;
3207
+ aggregation: AggregationTypes;
3208
+ chartType: InputChartType;
3209
+ }
3210
+ interface DatavizConfigModel {
3211
+ view: string;
3212
+ source: DatasetOnlineResource;
3213
+ chartConfig?: DatavizChartConfigModel;
3214
+ styleTMSIndex?: number;
3215
+ }
3216
+
3146
3217
  type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu';
3147
3218
  declare class ActionMenuComponent {
3148
3219
  dialog: MatDialog;
@@ -3151,6 +3222,7 @@ declare class ActionMenuComponent {
3151
3222
  isDuplicating: boolean;
3152
3223
  canDelete: boolean;
3153
3224
  page: 'draft' | 'main' | 'record';
3225
+ recordKind: RecordKind;
3154
3226
  duplicate: EventEmitter<void>;
3155
3227
  delete: EventEmitter<void>;
3156
3228
  closeActionMenu: EventEmitter<void>;
@@ -3161,7 +3233,7 @@ declare class ActionMenuComponent {
3161
3233
  displayMainMenu(): void;
3162
3234
  displayDeleteMenu(): void;
3163
3235
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
3164
- static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "page": { "alias": "page"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; "closeActionMenu": "closeActionMenu"; "rollback": "rollback"; "switch": "switch"; }, never, never, true, never>;
3236
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "isDuplicating": { "alias": "isDuplicating"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; "page": { "alias": "page"; "required": false; }; "recordKind": { "alias": "recordKind"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; "closeActionMenu": "closeActionMenu"; "rollback": "rollback"; "switch": "switch"; }, never, never, true, never>;
3165
3237
  }
3166
3238
 
3167
3239
  declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
@@ -3904,7 +3976,7 @@ declare class InteractiveTableComponent {
3904
3976
  get gridStyle(): {
3905
3977
  'grid-template-columns': string;
3906
3978
  };
3907
- getItemTitle(item: CatalogRecord): "" | "editor.record.lock.resourceType" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3979
+ getItemTitle(item: CatalogRecord): "" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3908
3980
  handleRowClick(item: unknown): void;
3909
3981
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
3910
3982
  static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableComponent, "gn-ui-interactive-table", never, { "items": { "alias": "items"; "required": false; }; "canEditItem": { "alias": "canEditItem"; "required": false; }; "isDraftPage": { "alias": "isDraftPage"; "required": false; }; }, { "itemClick": "itemClick"; }, ["columns"], never, true, never>;
@@ -4147,11 +4219,16 @@ declare class ImageInputComponent {
4147
4219
  }
4148
4220
 
4149
4221
  declare class ImageOverlayPreviewComponent {
4150
- imageUrl: string;
4151
- isPlaceholderShown: EventEmitter<boolean>;
4152
- openLightbox(src: string): void;
4222
+ imageUrl: i0.InputSignal<string>;
4223
+ isPlaceholderShown: i0.OutputEmitterRef<boolean>;
4224
+ private imageTemplate;
4225
+ private overlay;
4226
+ private viewContainerRef;
4227
+ private overlayRef;
4228
+ openLightbox(): void;
4229
+ closeLightbox(): void;
4153
4230
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
4154
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4231
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4155
4232
  }
4156
4233
 
4157
4234
  declare class KindBadgeComponent {
@@ -4228,6 +4305,7 @@ declare class MetadataDoiComponent {
4228
4305
 
4229
4306
  declare class MetadataInfoComponent {
4230
4307
  private dateService;
4308
+ private translateService;
4231
4309
  metadata: Partial<CatalogRecord>;
4232
4310
  incomplete: boolean;
4233
4311
  keyword: EventEmitter<Keyword>;
@@ -4251,6 +4329,7 @@ declare class MetadataInfoComponent {
4251
4329
  contacts: Individual[];
4252
4330
  }[];
4253
4331
  onKeywordClick(keyword: Keyword): void;
4332
+ keywordTooltipSegments(keyword: Keyword): string[];
4254
4333
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
4255
4334
  static ɵcmp: i0.ɵɵComponentDeclaration<MetadataInfoComponent, "gn-ui-metadata-info", never, { "metadata": { "alias": "metadata"; "required": false; }; "incomplete": { "alias": "incomplete"; "required": false; }; }, { "keyword": "keyword"; }, never, never, true, never>;
4256
4335
  }
@@ -4286,11 +4365,27 @@ declare class MetadataQualityComponent implements OnChanges {
4286
4365
 
4287
4366
  declare class ContactPillComponent {
4288
4367
  contact: Individual;
4368
+ private host;
4369
+ overlayOpen: boolean;
4370
+ overlayWidth: number;
4371
+ overlayOffsetX: number;
4372
+ overlayPositions: ConnectedPosition[];
4289
4373
  get displayName(): string;
4374
+ toggleOverlay(): void;
4375
+ closeOverlay(): void;
4290
4376
  static ɵfac: i0.ɵɵFactoryDeclaration<ContactPillComponent, never>;
4291
4377
  static ɵcmp: i0.ɵɵComponentDeclaration<ContactPillComponent, "gn-ui-contact-pill", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
4292
4378
  }
4293
4379
 
4380
+ declare class ContactDetailsComponent {
4381
+ contact: Individual;
4382
+ get organization(): Organization;
4383
+ get displayName(): string;
4384
+ get addressLines(): string[];
4385
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
4386
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "gn-ui-contact-details", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
4387
+ }
4388
+
4294
4389
  declare class NotificationComponent {
4295
4390
  type: 'info' | 'warning' | 'error' | 'success';
4296
4391
  title: string;
@@ -4730,22 +4825,6 @@ declare class FeatureRecordModule {
4730
4825
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
4731
4826
  }
4732
4827
 
4733
- type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
4734
- declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
4735
- type InputChartType = (typeof CHART_TYPE_VALUES)[number];
4736
- interface DatavizChartConfigModel {
4737
- xProperty: string;
4738
- yProperty: string;
4739
- aggregation: AggregationTypes;
4740
- chartType: InputChartType;
4741
- }
4742
- interface DatavizConfigModel {
4743
- view: string;
4744
- source: DatasetOnlineResource;
4745
- chartConfig?: DatavizChartConfigModel;
4746
- styleTMSIndex?: number;
4747
- }
4748
-
4749
4828
  type DataItem = Feature;
4750
4829
  declare class FetchError {
4751
4830
  type: 'http' | 'forbidden' | 'network' | 'parse' | 'unsupportedType' | 'unknown';
@@ -4917,7 +4996,7 @@ declare class ChartViewComponent {
4917
4996
  set link(value: DatasetOnlineResource);
4918
4997
  private currentLink$;
4919
4998
  set aggregation(value: FieldAggregation[0]);
4920
- aggregation$: BehaviorSubject<"average" | "count" | "max" | "min" | "sum">;
4999
+ aggregation$: BehaviorSubject<"count" | "sum" | "min" | "max" | "average">;
4921
5000
  set xProperty(value: string);
4922
5001
  xProperty$: BehaviorSubject<string>;
4923
5002
  set yProperty(value: string);
@@ -4926,7 +5005,7 @@ declare class ChartViewComponent {
4926
5005
  chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
4927
5006
  set userChartConfig(config: DatavizChartConfigModel);
4928
5007
  chartConfig$: Observable<{
4929
- aggregation: "average" | "count" | "max" | "min" | "sum";
5008
+ aggregation: "count" | "sum" | "min" | "max" | "average";
4930
5009
  xProperty: string;
4931
5010
  yProperty: string;
4932
5011
  chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
@@ -5031,15 +5110,6 @@ declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5031
5110
  static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "gn-ui-data-table", never, { "featureAttributes": { "alias": "featureAttributes"; "required": false; }; "dataset": { "alias": "dataset"; "required": false; }; "activeId": { "alias": "activeId"; "required": false; }; }, { "selected": "selected"; }, never, never, true, never>;
5032
5111
  }
5033
5112
 
5034
- declare const tableItemsFixture: {
5035
- items: DataItem[];
5036
- properties: PropertyInfo[];
5037
- };
5038
- declare const someHabTableItemFixture: {
5039
- items: DataItem[];
5040
- properties: PropertyInfo[];
5041
- };
5042
-
5043
5113
  declare class FigureComponent {
5044
5114
  icon: string;
5045
5115
  title: string;
@@ -5138,6 +5208,24 @@ declare class MapLegendComponent implements OnChanges {
5138
5208
  static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
5139
5209
  }
5140
5210
 
5211
+ type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
5212
+ /**
5213
+ * Default style for a spatial-extent layer: a solid black outline over a
5214
+ * translucent grey fill.
5215
+ */
5216
+ declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
5217
+ /**
5218
+ * Builds a GeoJSON map layer drawing the given spatial extents: each extent is
5219
+ * rendered from its own geometry or, when only a bounding box is available,
5220
+ * from a polygon derived from that box.
5221
+ *
5222
+ * @returns the layer, or `null` when none of the extents can be represented.
5223
+ */
5224
+ declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
5225
+ label?: string;
5226
+ clickable?: boolean;
5227
+ style?: SpatialExtentLayerStyle;
5228
+ }): MapContextLayer | null;
5141
5229
  declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5142
5230
  declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
5143
5231
  declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
@@ -5148,7 +5236,6 @@ declare class SpatialExtentComponent {
5148
5236
  spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
5149
5237
  mapContext$: Observable<MapContext>;
5150
5238
  error: string;
5151
- bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
5152
5239
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
5153
5240
  static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
5154
5241
  }
@@ -5759,7 +5846,8 @@ interface FormFieldConfig {
5759
5846
  }
5760
5847
  type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
5761
5848
  type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
5762
- type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier;
5849
+ type EditableContactDetailsSpecifier = `contact:editableDetails`;
5850
+ type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | EditableContactDetailsSpecifier;
5763
5851
  type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
5764
5852
  interface EditorFieldIdentification {
5765
5853
  model?: CatalogRecordKeys;
@@ -5769,20 +5857,20 @@ interface EditorFieldIdentification {
5769
5857
  interface EditorField extends EditorFieldIdentification {
5770
5858
  formFieldConfig: FormFieldConfig;
5771
5859
  gridColumnSpan?: number;
5772
- hidden?: boolean;
5860
+ hidden?: boolean | EditorFieldExpression;
5773
5861
  onSaveProcess?: EditorFieldExpression;
5774
5862
  }
5775
5863
  interface EditorSection {
5776
5864
  labelKey?: string;
5777
5865
  descriptionKey?: string;
5778
- hidden: boolean;
5866
+ hidden?: boolean | EditorFieldExpression;
5779
5867
  fields: EditorField[];
5780
5868
  }
5781
5869
  interface EditorFieldPage {
5782
5870
  labelKey?: string;
5783
5871
  sections: EditorSection[];
5784
5872
  }
5785
- interface EditorConfig {
5873
+ interface EditorConfig$1 {
5786
5874
  pages: EditorFieldPage[];
5787
5875
  }
5788
5876
 
@@ -5817,7 +5905,11 @@ declare const updateRecordLanguages: _ngrx_store.ActionCreator<"[Editor] Update
5817
5905
  otherLanguages: LanguageCode[];
5818
5906
  } & _ngrx_store.Action<"[Editor] Update record languages">>;
5819
5907
  declare const markRecordAsChanged: _ngrx_store.ActionCreator<"[Editor] Mark record as changed", () => _ngrx_store.Action<"[Editor] Mark record as changed">>;
5820
- declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", () => _ngrx_store.Action<"[Editor] Save record">>;
5908
+ declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (props: {
5909
+ publish: boolean;
5910
+ }) => {
5911
+ publish: boolean;
5912
+ } & _ngrx_store.Action<"[Editor] Save record">>;
5821
5913
  declare const saveRecordSuccess: _ngrx_store.ActionCreator<"[Editor] Save record success", () => _ngrx_store.Action<"[Editor] Save record success">>;
5822
5914
  declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record failure", (props: {
5823
5915
  error: SaveRecordError;
@@ -5827,9 +5919,9 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
5827
5919
  declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
5828
5920
  declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
5829
5921
  declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
5830
- configuration: EditorConfig;
5922
+ configuration: EditorConfig$1;
5831
5923
  }) => {
5832
- configuration: EditorConfig;
5924
+ configuration: EditorConfig$1;
5833
5925
  } & _ngrx_store.Action<"[Editor] Set editor configuration">>;
5834
5926
  declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
5835
5927
  page: number;
@@ -5887,7 +5979,7 @@ declare class EditorFacade {
5887
5979
  currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
5888
5980
  draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
5889
5981
  currentPage$: rxjs.Observable<number>;
5890
- editorConfig$: rxjs.Observable<EditorConfig>;
5982
+ editorConfig$: rxjs.Observable<EditorConfig$1>;
5891
5983
  hasRecordChanged$: rxjs.Observable<{
5892
5984
  user: string;
5893
5985
  date: Date;
@@ -5897,10 +5989,11 @@ declare class EditorFacade {
5897
5989
  focusedField$: rxjs.Observable<CatalogRecordKeys>;
5898
5990
  openRecord(record: CatalogRecord, recordSource: string): void;
5899
5991
  saveRecord(): void;
5992
+ saveAndPublishRecord(): void;
5900
5993
  undoRecordDraft(): void;
5901
5994
  updateRecordField(field: string, value: unknown): void;
5902
5995
  updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
5903
- setConfiguration(configuration: EditorConfig): void;
5996
+ setConfiguration(configuration: EditorConfig$1): void;
5904
5997
  setCurrentPage(page: number): void;
5905
5998
  setFocusedField(model: CatalogRecordKeys): void;
5906
5999
  setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
@@ -5926,7 +6019,7 @@ interface EditorState {
5926
6019
  saving: boolean;
5927
6020
  saveError: SaveRecordError | null;
5928
6021
  changedSinceSave: boolean;
5929
- editorConfig: EditorConfig;
6022
+ editorConfig: EditorConfig$1;
5930
6023
  currentPage: number;
5931
6024
  hasRecordChanged: {
5932
6025
  user: string;
@@ -5947,7 +6040,7 @@ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (
5947
6040
  declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5948
6041
  declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
5949
6042
  declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5950
- declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
6043
+ declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig$1, (s1: EditorState) => EditorConfig$1>;
5951
6044
  declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
5952
6045
  declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
5953
6046
  declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
@@ -6043,6 +6136,14 @@ declare class MultilingualPanelComponent implements OnDestroy {
6043
6136
  static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
6044
6137
  }
6045
6138
 
6139
+ declare class FieldFocusDirective {
6140
+ gnUiFieldFocusGlowClass: string;
6141
+ private el;
6142
+ focusField(focusInnerTarget?: boolean): void;
6143
+ static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
6144
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
6145
+ }
6146
+
6046
6147
  declare class FormFieldKeywordsComponent {
6047
6148
  private editorFacade;
6048
6149
  value: Keyword[];
@@ -6164,6 +6265,7 @@ declare class FormFieldSpatialExtentComponent {
6164
6265
 
6165
6266
  declare class FormFieldComponent {
6166
6267
  uniqueIdentifier: string;
6268
+ recordKind: RecordKind;
6167
6269
  model: CatalogRecordKeys;
6168
6270
  modelSpecifier: FieldModelSpecifier;
6169
6271
  componentName: FormFieldComponentName;
@@ -6172,6 +6274,7 @@ declare class FormFieldComponent {
6172
6274
  valueChange: EventEmitter<unknown>;
6173
6275
  titleInput: ElementRef;
6174
6276
  isOpenData: boolean;
6277
+ fieldFocus: FieldFocusDirective;
6175
6278
  toggleIsOpenData(event: boolean): void;
6176
6279
  focusTitleInput(): void;
6177
6280
  get withoutWrapper(): boolean;
@@ -6188,7 +6291,7 @@ declare class FormFieldComponent {
6188
6291
  get valueAsResourceIdentifierCode(): string;
6189
6292
  handleResourceIdentifierChange(code: string): void;
6190
6293
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
6191
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
6294
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "recordKind": { "alias": "recordKind"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, [{ directive: typeof FieldFocusDirective; inputs: {}; outputs: {}; }]>;
6192
6295
  }
6193
6296
 
6194
6297
  declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
@@ -6213,17 +6316,27 @@ declare class FormFieldTopicsComponent {
6213
6316
  }
6214
6317
 
6215
6318
  declare class RecordFormComponent implements OnInit, OnDestroy {
6216
- anchorIdPrefix: string;
6217
6319
  facade: EditorFacade;
6218
- private el;
6320
+ notifications: NotificationsService;
6219
6321
  subscription: Subscription;
6220
6322
  recordUniqueIdentifier$: rxjs.Observable<string>;
6323
+ recordKind$: rxjs.Observable<"dataset" | "service" | "reuse">;
6324
+ focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
6325
+ formFields: Signal<readonly FormFieldComponent[]>;
6326
+ sectionFocusDirectives: Signal<readonly FieldFocusDirective[]>;
6327
+ focusField(model: CatalogRecordKeys, sectionIndex: number): void;
6221
6328
  ngOnInit(): void;
6222
6329
  ngOnDestroy(): void;
6223
6330
  handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6224
6331
  fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6225
6332
  sectionTracker(index: number, section: EditorSectionWithValues): string;
6226
- getPageIndexForField(model: CatalogRecordKeys): Promise<number | null>;
6333
+ getFieldLocation(model: CatalogRecordKeys): Promise<{
6334
+ page: number;
6335
+ section: number;
6336
+ } | null>;
6337
+ private recordSignal;
6338
+ private expressionCache;
6339
+ evaluateExpression(expressionOrValue: string | EditorFieldValue): Signal<EditorFieldValue>;
6227
6340
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6228
6341
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6229
6342
  }
@@ -6303,79 +6416,23 @@ declare class FeatureEditorModule {
6303
6416
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6304
6417
  }
6305
6418
 
6419
+ interface ISOTopic {
6420
+ value: string;
6421
+ label: string;
6422
+ }
6423
+ declare const DEFAULT_CONFIGURATION: EditorConfig$1;
6306
6424
  /**
6307
- * This file contains the configuration of the fields that will be displayed in the editor.
6308
- * To add a new field, you need to create a new EditorField object in the fields part of this file.
6309
- * Then add it to the corresponding section in the sections part of this file.
6310
- * Finally, add the section to the corresponding page in the pages part of this file.
6311
- */
6312
- /************************************************************
6313
- *************** FIELDS *****************
6314
- ************************************************************
6315
- */
6316
- declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6317
- declare const CONSTRAINTS_SHORTCUTS: EditorField;
6318
- declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6319
- declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6320
- declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6321
- declare const RECORD_LICENSE_FIELD: EditorField;
6322
- declare const RECORD_KEYWORDS_FIELD: EditorField;
6323
- declare const RECORD_TOPICS_FIELD: EditorField;
6324
- declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6325
- declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6326
- declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6327
- declare const RECORD_UPDATED_FIELD: EditorField;
6328
- declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6329
- declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6330
- declare const RECORD_TITLE_FIELD: EditorField;
6331
- declare const RECORD_ABSTRACT_FIELD: EditorField;
6332
- declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6333
- declare const CONTACTS: EditorField;
6334
- declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6335
- declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6336
- declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6337
- declare const RECORD_ONLINE_RESOURCES: EditorField;
6338
- declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6339
- /************************************************************
6340
- *************** SECTIONS *****************
6341
- ************************************************************
6342
- */
6343
- declare const TITLE_SECTION: EditorSection;
6344
- declare const ABOUT_SECTION: EditorSection;
6345
- declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6346
- declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6347
- declare const ANNEXES_SECTION: EditorSection;
6348
- declare const CLASSIFICATION_SECTION: EditorSection;
6349
- declare const TOPICS_SECTION: EditorSection;
6350
- declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6351
- declare const DATA_MANAGERS_SECTION: EditorSection;
6352
- declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6353
- /************************************************************
6354
- *************** PAGES *****************
6355
- ************************************************************
6356
- */
6357
- declare const DEFAULT_CONFIGURATION: EditorConfig;
6358
- /************************************************************
6359
- *************** LICENSES **************
6360
- ************************************************************
6425
+ * OTHER SETTINGS
6361
6426
  */
6362
6427
  declare const AVAILABLE_LICENSES: string[];
6363
6428
  declare const OPEN_DATA_LICENSE = "etalab";
6364
6429
  declare const MAX_UPLOAD_SIZE_MB = 10;
6365
- /************************************************************
6366
- *************** SPATIAL SCOPE ************
6367
- ************************************************************
6368
- */
6369
6430
  declare const SPATIAL_SCOPES: Keyword[];
6370
- /************************************************************
6371
- *************** INSPIRE TOPICS **************
6372
- ************************************************************
6373
- */
6374
- declare const INSPIRE_TOPICS: INSPIRE_topic[];
6431
+ declare const ISO_TOPICS: ISOTopic[];
6375
6432
 
6376
6433
  declare class EditorService {
6377
6434
  private recordsRepository;
6378
- saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
6435
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1, publish: boolean): Observable<[CatalogRecord, string]>;
6379
6436
  saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6380
6437
  undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6381
6438
  hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
@@ -6570,7 +6627,7 @@ declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
6570
6627
  private renderer;
6571
6628
  popoverContent: ElementRef;
6572
6629
  content: string | TemplateRef<any>;
6573
- theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
6630
+ theme: 'light' | 'light-border' | 'translucent' | 'material' | 'dark' | '';
6574
6631
  private tippyInstance;
6575
6632
  private view;
6576
6633
  private getContent;
@@ -6615,17 +6672,8 @@ declare class SpinningLoaderComponent {
6615
6672
 
6616
6673
  declare function provideI18n(config?: TranslateModuleConfig, useLocalStorage?: boolean): EnvironmentProviders;
6617
6674
 
6618
- /**
6619
- * This loader will rely on JSON files in the app assets
6620
- * Implements a fallback on default lang if translated labels are empty
6621
- */
6622
- declare class FileTranslateLoader extends TranslateHttpLoader {
6623
- getTranslation(lang: string): rxjs.Observable<{}>;
6624
- }
6625
-
6626
6675
  declare const DEFAULT_LANG = "en";
6627
6676
  declare const LANGUAGE_STORAGE_KEY = "geonetwork-ui-language";
6628
- declare function HttpLoaderFactory(http: HttpClient): FileTranslateLoader;
6629
6677
  declare const TRANSLATE_DEFAULT_CONFIG: TranslateModuleConfig;
6630
6678
  /**
6631
6679
  * This config will print translation keys in the UI directly; used to identify which keys are used
@@ -6639,8 +6687,12 @@ declare class I18nInterceptor implements HttpInterceptor {
6639
6687
  static ɵprov: i0.ɵɵInjectableDeclaration<I18nInterceptor>;
6640
6688
  }
6641
6689
 
6642
- declare class EmbeddedTranslateLoader implements TranslateLoader {
6643
- getTranslation(lang: string): Observable<Record<string, string>>;
6690
+ /**
6691
+ * This loader will rely on JSON files in the app assets
6692
+ * Implements a fallback on default lang if translated labels are empty
6693
+ */
6694
+ declare class FileTranslateLoader extends TranslateHttpLoader {
6695
+ getTranslation(lang: string): rxjs.Observable<{}>;
6644
6696
  }
6645
6697
 
6646
6698
  declare function dropEmptyTranslations(translations: any): {};
@@ -6791,6 +6843,11 @@ interface SearchPreset {
6791
6843
  interface MetadataQualityConfig {
6792
6844
  ENABLED: boolean;
6793
6845
  }
6846
+ type NewRecordStandard = 'iso19139' | 'iso19115-3';
6847
+ interface EditorConfig {
6848
+ NEW_RECORD_DEFAULT_LANGUAGE?: string;
6849
+ NEW_RECORD_STANDARD?: NewRecordStandard;
6850
+ }
6794
6851
  type CustomTranslations = {
6795
6852
  [translationKey: string]: string;
6796
6853
  };
@@ -6810,35 +6867,17 @@ interface SearchConfig {
6810
6867
  FILTER_GEOMETRY?: Geometry;
6811
6868
  }
6812
6869
 
6813
- /**
6814
- * This loader extends the default one based on JSON files but also loads custom translations
6815
- * defined in the app configuration
6816
- * Implements a fallback on default lang if translated labels are empty
6817
- */
6818
- declare class FileWithOverridesTranslateLoader extends FileTranslateLoader {
6819
- getTranslation(lang: string): rxjs.Observable<{}>;
6820
- }
6821
-
6822
6870
  declare function getGlobalConfig(): GlobalConfig;
6823
6871
  declare function getThemeConfig(): ThemeConfig;
6824
6872
  declare function getOptionalMapConfig(): MapConfig | null;
6825
6873
  declare function getOptionalSearchConfig(): SearchConfig | null;
6874
+ declare function getOptionalEditorConfig(): EditorConfig | null;
6826
6875
  declare function getMetadataQualityConfig(): MetadataQualityConfig;
6827
6876
  declare function getCustomTranslations(langCode: string): CustomTranslations;
6828
6877
  declare function loadAppConfig(configUrl?: string): Promise<void>;
6829
6878
  declare function isConfigLoaded(): boolean;
6830
6879
  declare function _reset(): void;
6831
- declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
6832
- compiler: {
6833
- provide: typeof TranslateCompiler;
6834
- useClass: typeof TranslateMessageFormatCompiler;
6835
- };
6836
- loader: {
6837
- provide: typeof TranslateLoader;
6838
- useFactory: (http: HttpClient) => FileWithOverridesTranslateLoader;
6839
- deps: (typeof HttpClient)[];
6840
- };
6841
- };
6880
+ declare const TRANSLATE_WITH_OVERRIDES_CONFIG: TranslateModuleConfig;
6842
6881
 
6843
6882
  declare const okAppConfigFixture: () => string;
6844
6883
  declare const appConfigWithTranslationFixture: () => string;
@@ -6851,6 +6890,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6851
6890
 
6852
6891
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6853
6892
 
6854
- export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, 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, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, 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, EmbeddedTranslateLoader, 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, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, 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, METADATA_POINT_OF_CONTACT_SECTION, 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, OTHER_CONSTRAINTS_FIELD, 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_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, 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, SECURITY_CONSTRAINTS_FIELD, 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, TITLE_SECTION, TOPICS_SECTION, 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, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, 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, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6855
- export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, 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, 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, INSPIRE_topic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, 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, SourceWithUnknownProps, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6893
+ 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, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, 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, 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 };
6894
+ export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, 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 };
6856
6895
  //# sourceMappingURL=index.d.ts.map