geonetwork-ui 2.10.0-dev.e97ea6950 → 2.10.0-dev.f1c00d5fe

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 (174) hide show
  1. package/fesm2022/geonetwork-ui.mjs +2558 -6985
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +299 -189
  4. package/index.d.ts.map +1 -1
  5. package/package.json +25 -35
  6. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +20 -0
  7. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +4 -0
  8. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +23 -0
  9. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +8 -0
  10. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +2 -0
  11. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +2 -0
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +2 -0
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +2 -0
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4 -0
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +23 -0
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +2 -0
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +4 -0
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +2 -0
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +9 -0
  20. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  21. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +2 -0
  22. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -5
  23. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  24. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  25. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +11 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +21 -0
  27. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +52 -0
  28. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +24 -1
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +73 -0
  30. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +79 -0
  31. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
  32. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  33. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +79 -41
  34. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
  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 +37 -2
  38. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +23 -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/domain/src/lib/repository/records-repository.interface.ts +2 -1
  44. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +62 -0
  45. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  46. package/src/libs/feature/editor/src/index.ts +1 -0
  47. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +10 -1
  48. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -20
  49. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +15 -2
  50. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  51. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
  52. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +68 -0
  53. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +41 -0
  54. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
  55. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
  56. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
  57. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
  58. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  59. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  60. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +41 -0
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +33 -34
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
  64. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
  65. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
  66. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  67. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
  68. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
  69. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
  70. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  71. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  72. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  73. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  74. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  75. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  76. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +3 -0
  77. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +28 -16
  78. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +16 -0
  79. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
  80. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
  81. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
  82. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +118 -5
  83. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  84. package/src/libs/feature/editor/src/lib/fields.config.ts +354 -337
  85. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +10 -3
  86. package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
  87. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  88. package/src/libs/feature/notify-reuse/src/index.ts +2 -0
  89. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
  90. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
  91. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
  92. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
  93. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -0
  94. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +234 -0
  95. package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
  96. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  97. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  98. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  99. package/src/libs/ui/dataviz/src/index.ts +0 -1
  100. package/src/libs/ui/elements/src/index.ts +3 -0
  101. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +88 -0
  102. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
  103. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +41 -0
  104. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
  105. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
  106. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
  107. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  108. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  109. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  110. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
  111. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
  112. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
  113. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
  114. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  115. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
  116. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +3 -2
  117. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +26 -68
  118. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
  119. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  120. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  121. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
  122. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
  123. package/src/libs/ui/inputs/src/lib/button/button.component.ts +8 -0
  124. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  125. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  126. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  127. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
  128. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
  129. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
  130. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
  131. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
  132. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  133. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  134. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  135. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  136. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  137. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  138. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
  139. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +15 -64
  140. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  141. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  142. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
  143. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  144. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  145. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  146. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  147. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
  148. package/src/libs/util/app-config/src/lib/app-config.ts +70 -9
  149. package/src/libs/util/app-config/src/lib/model.ts +7 -0
  150. package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
  151. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  152. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  153. package/src/libs/util/i18n/src/index.ts +0 -1
  154. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  155. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  156. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  157. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  158. package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
  159. package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
  160. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  161. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  162. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  163. package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
  164. package/style.css +0 -1
  165. package/tailwind.base.css +26 -2
  166. package/translations/de.json +112 -50
  167. package/translations/en.json +117 -55
  168. package/translations/es.json +86 -24
  169. package/translations/fr.json +114 -52
  170. package/translations/it.json +113 -51
  171. package/translations/nl.json +85 -23
  172. package/translations/pt.json +86 -24
  173. package/translations/sk.json +86 -24
  174. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
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';
@@ -32,7 +32,7 @@ import * as i2 from '@ngrx/router-store';
32
32
  import * as _angular_router from '@angular/router';
33
33
  import { Router, QueryParamsHandling, Routes } from '@angular/router';
34
34
  import Collection from 'ol/Collection.js';
35
- import { Interaction, DragPan, MouseWheelZoom } from 'ol/interaction.js';
35
+ import { DragPan, MouseWheelZoom, Interaction } from 'ol/interaction.js';
36
36
  import MapBrowserEvent from 'ol/MapBrowserEvent.js';
37
37
  import * as chart_js from 'chart.js';
38
38
  import { Chart, ChartType, ChartData, ChartOptions } from 'chart.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,27 @@ 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
+ }
236
+ /**
237
+ * Represents another record associated with this one (e.g. a parent/sibling dataset).
238
+ */
239
+ interface AssociatedRecord {
240
+ uuid: string;
241
+ associationType: string;
242
+ }
232
243
  interface DatasetRecord extends BaseRecord {
233
244
  kind: 'dataset';
234
245
  status: RecordStatus;
235
246
  lineage: string;
247
+ sourceRecords: Array<SourceRecord>;
248
+ associatedRecords: Array<AssociatedRecord>;
236
249
  onlineResources: Array<DatasetOnlineResource>;
237
250
  spatialExtents: Array<DatasetSpatialExtent>;
238
251
  temporalExtents: Array<DatasetTemporalExtent>;
@@ -256,6 +269,8 @@ interface ServiceRecord extends BaseRecord {
256
269
  interface ReuseRecord extends BaseRecord {
257
270
  kind: 'reuse';
258
271
  lineage: string;
272
+ sourceRecords: Array<SourceRecord>;
273
+ associatedRecords: Array<AssociatedRecord>;
259
274
  onlineResources: Array<DatasetOnlineResource>;
260
275
  reuseType: ReuseType;
261
276
  spatialExtents: Array<DatasetSpatialExtent>;
@@ -427,6 +442,7 @@ type ThesaurusName = string;
427
442
  interface Thesaurus {
428
443
  id?: string;
429
444
  title?: string;
445
+ multilingualTitle?: MultilingualField;
430
446
  theme?: string;
431
447
  link?: string;
432
448
  keywords: MultilingualField[];
@@ -687,7 +703,17 @@ declare const getAsUrl: (field: any, location?: string) => URL;
687
703
  declare const mapLogo: (source: SourceWithUnknownProps) => URL;
688
704
  declare const mapOrganization: (sourceContact: SourceWithUnknownProps, lang3: string) => Organization;
689
705
  declare const mapContact: (sourceContact: SourceWithUnknownProps, lang3: string) => Individual;
690
- declare const mapKeywords: (thesauri: Thesaurus[], language: string) => any[];
706
+ interface KeywordTree {
707
+ default?: string[];
708
+ }
709
+ /**
710
+ * Resolves a keyword's ancestor path within its thesaurus tree, or null for a
711
+ * root-level keyword (no ancestors to show). Tree entries are `^`-joined label
712
+ * paths (default language); they aren't index-aligned with the keywords, so we
713
+ * match on the last segment (not by position/URI), shortest path on poly-hierarchy.
714
+ */
715
+ declare const getKeywordHierarchyPath: (keywordDefaultLabel: string, tree?: KeywordTree | null) => string[] | null;
716
+ declare const mapKeywords: (thesauri: Record<string, Thesaurus>, language: string, source?: SourceWithUnknownProps) => any[];
691
717
 
692
718
  type ESResponseSource = SourceWithUnknownProps;
693
719
  type EsFieldMapperFn = (output: Partial<CatalogRecord>, source: ESResponseSource) => Partial<CatalogRecord>;
@@ -1026,7 +1052,7 @@ declare abstract class RecordsRepositoryInterface {
1026
1052
  * @param uniqueIdentifier
1027
1053
  * @returns Observable<[CatalogRecord, string, boolean] | null>
1028
1054
  */
1029
- abstract openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1055
+ abstract openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1030
1056
  /**
1031
1057
  * This emits once:
1032
1058
  * - record object with a new unique identifier and suffixed title
@@ -1076,6 +1102,8 @@ declare abstract class RecordsRepositoryInterface {
1076
1102
  }
1077
1103
 
1078
1104
  type RecordAsXml = string;
1105
+ declare const DISABLE_DRAFT: InjectionToken<boolean>;
1106
+ declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
1079
1107
  declare class Gn4Repository implements RecordsRepositoryInterface {
1080
1108
  private httpClient;
1081
1109
  private gn4SearchApi;
@@ -1085,6 +1113,8 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1085
1113
  private platformService;
1086
1114
  private gn4LanguagesApi;
1087
1115
  private settingsService;
1116
+ private disableDraft;
1117
+ private defaultConverter;
1088
1118
  _draftsChanged: Subject<void>;
1089
1119
  draftsChanged$: Observable<void>;
1090
1120
  search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
@@ -1104,7 +1134,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1104
1134
  private canEdit;
1105
1135
  canEditRecord(uniqueIdentifier: string): Observable<boolean>;
1106
1136
  canEditIndexedRecord(record: CatalogRecord): Observable<boolean>;
1107
- openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1137
+ openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1108
1138
  openRecordForDuplication(uniqueIdentifier: string): Observable<[CatalogRecord, string, true] | null>;
1109
1139
  saveRecord(record: CatalogRecord, referenceRecordSource?: string, publishToAll?: boolean): Observable<string>;
1110
1140
  duplicateExternalRecord(recordDownloadUrl: string): Observable<string>;
@@ -1744,6 +1774,15 @@ interface UserModel {
1744
1774
  profileIcon?: string;
1745
1775
  }
1746
1776
 
1777
+ interface GroupModel {
1778
+ groupId: number;
1779
+ groupName: string;
1780
+ isMember: boolean;
1781
+ canEdit: boolean;
1782
+ canApprove: boolean;
1783
+ canAdministrate: boolean;
1784
+ }
1785
+
1747
1786
  interface RecordAttachment {
1748
1787
  url: URL;
1749
1788
  fileName: string;
@@ -1763,6 +1802,7 @@ declare abstract class PlatformServiceInterface {
1763
1802
  abstract getMe(): Observable<UserModel>;
1764
1803
  abstract isAnonymous(): Observable<boolean>;
1765
1804
  abstract getUsers(): Observable<UserModel[]>;
1805
+ abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
1766
1806
  abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1767
1807
  abstract getOrganizations(): Observable<Organization[]>;
1768
1808
  abstract translateKey(key: string): Observable<string>;
@@ -1913,6 +1953,7 @@ declare class SelectionService {
1913
1953
 
1914
1954
  interface Gn4ProvideOptions {
1915
1955
  disableAuth?: boolean;
1956
+ disableDraft?: boolean;
1916
1957
  }
1917
1958
  declare function provideGn4(provideOptions?: Gn4ProvideOptions): Provider[];
1918
1959
 
@@ -1920,6 +1961,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
1920
1961
  declare class Gn4PlatformService implements PlatformServiceInterface {
1921
1962
  private meApi;
1922
1963
  private usersApi;
1964
+ private groupsApi;
1923
1965
  private mapper;
1924
1966
  private toolsApiService;
1925
1967
  private registriesApiService;
@@ -1951,6 +1993,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
1951
1993
  getOrganizations(): Observable<Organization[]>;
1952
1994
  getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1953
1995
  getUsers(): Observable<UserModel[]>;
1996
+ getUserPermissionsByGroup(): Observable<GroupModel[]>;
1954
1997
  translateKey(key: string): Observable<string>;
1955
1998
  private allThesaurus$;
1956
1999
  searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
@@ -2115,6 +2158,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2115
2158
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2116
2159
  type BoundingBox = [number, number, number, number];
2117
2160
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2161
+ /**
2162
+ * Builds the closed GeoJSON Polygon matching the given bounding box.
2163
+ */
2164
+ declare function bboxToPolygon(bbox: BoundingBox): Polygon;
2165
+ /**
2166
+ * Returns the geometry carried by a spatial extent, falling back to the polygon
2167
+ * derived from its bounding box. Returns null when the extent has neither.
2168
+ */
2169
+ declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
2170
+ /**
2171
+ * Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
2172
+ * e.g. to be used as the data source of a map layer.
2173
+ */
2174
+ declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
2118
2175
 
2119
2176
  declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
2120
2177
  declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
@@ -2162,6 +2219,10 @@ declare function getTemporalRangeUnion(ranges: {
2162
2219
  */
2163
2220
  declare function removeSearchParams(url: string, searchParams: string[]): string;
2164
2221
 
2222
+ declare function getIndividualDisplayName(individual: Individual): string;
2223
+ declare function getAddressLines(address: string | undefined): string[];
2224
+ declare function toIndividual(user: UserModel): Individual;
2225
+
2165
2226
  declare const FORMATS: {
2166
2227
  readonly csv: {
2167
2228
  readonly extensions: readonly ["csv"];
@@ -2339,8 +2400,12 @@ declare class ImageFallbackDirective {
2339
2400
  declare const GEONETWORK_UI_VERSION: string;
2340
2401
  declare const GEONETWORK_UI_TAG_NAME: string;
2341
2402
 
2403
+ type TValidatorEntry = {
2404
+ validator: (metadata: Partial<CatalogRecord>) => boolean;
2405
+ alias?: string;
2406
+ };
2342
2407
  type TValidatorMapper = {
2343
- [key: string]: (metadata: Partial<CatalogRecord>) => boolean;
2408
+ [key: string]: TValidatorEntry;
2344
2409
  };
2345
2410
  declare const ValidatorMapper: TValidatorMapper;
2346
2411
  type ValidatorMapperKeys = keyof typeof ValidatorMapper & string;
@@ -2348,6 +2413,7 @@ declare function getAllKeysValidator(): string[];
2348
2413
  declare function getQualityValidators(record: Partial<CatalogRecord>, propsToValidate: ValidatorMapperKeys[]): {
2349
2414
  name: string;
2350
2415
  validator: () => boolean;
2416
+ alias: string;
2351
2417
  }[];
2352
2418
 
2353
2419
  declare function updateLanguages<T extends CatalogRecord>(record: T, defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): T;
@@ -2365,6 +2431,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
2365
2431
 
2366
2432
  declare class MapUtilsService {
2367
2433
  getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
2434
+ /**
2435
+ * Builds a non-interactive overlay layer drawing the spatial extent(s)
2436
+ * declared in the record's metadata (bounding boxes and/or geometries).
2437
+ * Returns null when the record has no usable spatial extent.
2438
+ *
2439
+ * This is purely for display and is independent from the map's initial view,
2440
+ * which is derived separately (see {@link getRecordExtent}).
2441
+ */
2442
+ getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
2368
2443
  static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
2369
2444
  static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
2370
2445
  }
@@ -2690,14 +2765,16 @@ declare class BadgeComponent {
2690
2765
  clickable?: boolean;
2691
2766
  removable?: boolean;
2692
2767
  badgeRemoveClicked: EventEmitter<void>;
2768
+ badgeClicked: EventEmitter<void>;
2693
2769
  removeBadge(): void;
2770
+ handleClick(event: MouseEvent): void;
2694
2771
  static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
2695
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; }, never, ["*"], true, never>;
2772
+ static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; "badgeClicked": "badgeClicked"; }, never, ["*"], true, never>;
2696
2773
  }
2697
2774
 
2698
2775
  declare class ButtonComponent {
2699
2776
  private btnClass;
2700
- set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black');
2777
+ set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
2701
2778
  disabled: boolean;
2702
2779
  extraClass: string;
2703
2780
  buttonClick: EventEmitter<Event>;
@@ -2808,7 +2885,7 @@ declare class DropdownMultiselectComponent {
2808
2885
  overlayPositions: ConnectedPosition[];
2809
2886
  scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2810
2887
  overlayOpen: boolean;
2811
- overlayWidth: string;
2888
+ overlayMinWidth: string;
2812
2889
  overlayMaxHeight: string;
2813
2890
  id: string;
2814
2891
  get hasSelectedChoices(): boolean;
@@ -2991,20 +3068,21 @@ declare class TextAreaComponent implements AfterViewInit {
2991
3068
  static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "gn-ui-text-area", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
2992
3069
  }
2993
3070
 
2994
- declare class TextInputComponent implements AfterViewInit {
2995
- value: string;
2996
- extraClass: string;
2997
- placeholder: string;
2998
- required: boolean;
2999
- disabled: boolean;
3000
- rawChange: Subject<string>;
3001
- valueChange: rxjs.Observable<string>;
3002
- input: any;
3003
- ngAfterViewInit(): void;
3004
- checkRequired(value: any): void;
3005
- handleChange($event: any): void;
3071
+ declare class TextInputComponent {
3072
+ value: i0.InputSignalWithTransform<string, string>;
3073
+ extraClass: i0.InputSignal<string>;
3074
+ placeholder: i0.InputSignal<string>;
3075
+ required: i0.InputSignal<boolean>;
3076
+ disabled: i0.InputSignal<boolean>;
3077
+ type: i0.InputSignalWithTransform<string, string>;
3078
+ valueChange: i0.OutputEmitterRef<string>;
3079
+ inputModel: i0.WritableSignal<string>;
3080
+ inputRef: i0.Signal<ElementRef<HTMLInputElement>>;
3081
+ isValid: i0.Signal<boolean>;
3082
+ private lastEmittedValue;
3083
+ handleChange($event: Event): void;
3006
3084
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
3007
- static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
3085
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "extraClass": { "alias": "extraClass"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
3008
3086
  }
3009
3087
 
3010
3088
  declare class UrlInputComponent implements OnChanges {
@@ -3023,7 +3101,7 @@ declare class UrlInputComponent implements OnChanges {
3023
3101
  inputValue: string;
3024
3102
  ngOnChanges(changes: SimpleChanges): void;
3025
3103
  handleInput(event: Event): void;
3026
- handleUpload(element: HTMLInputElement): void;
3104
+ handleUpload(element: HTMLInputElement, event: Event): void;
3027
3105
  isValidUrl(url: string): boolean;
3028
3106
  static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
3029
3107
  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>;
@@ -3132,6 +3210,22 @@ declare class ResultsTableComponent {
3132
3210
  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>;
3133
3211
  }
3134
3212
 
3213
+ type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
3214
+ declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
3215
+ type InputChartType = (typeof CHART_TYPE_VALUES)[number];
3216
+ interface DatavizChartConfigModel {
3217
+ xProperty: string;
3218
+ yProperty: string;
3219
+ aggregation: AggregationTypes;
3220
+ chartType: InputChartType;
3221
+ }
3222
+ interface DatavizConfigModel {
3223
+ view: string;
3224
+ source: DatasetOnlineResource;
3225
+ chartConfig?: DatavizChartConfigModel;
3226
+ styleTMSIndex?: number;
3227
+ }
3228
+
3135
3229
  type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu';
3136
3230
  declare class ActionMenuComponent {
3137
3231
  dialog: MatDialog;
@@ -3140,6 +3234,7 @@ declare class ActionMenuComponent {
3140
3234
  isDuplicating: boolean;
3141
3235
  canDelete: boolean;
3142
3236
  page: 'draft' | 'main' | 'record';
3237
+ recordKind: RecordKind;
3143
3238
  duplicate: EventEmitter<void>;
3144
3239
  delete: EventEmitter<void>;
3145
3240
  closeActionMenu: EventEmitter<void>;
@@ -3150,7 +3245,7 @@ declare class ActionMenuComponent {
3150
3245
  displayMainMenu(): void;
3151
3246
  displayDeleteMenu(): void;
3152
3247
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
3153
- 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>;
3248
+ 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>;
3154
3249
  }
3155
3250
 
3156
3251
  declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
@@ -3893,7 +3988,7 @@ declare class InteractiveTableComponent {
3893
3988
  get gridStyle(): {
3894
3989
  'grid-template-columns': string;
3895
3990
  };
3896
- getItemTitle(item: CatalogRecord): "" | "editor.record.lock.resourceType" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3991
+ getItemTitle(item: CatalogRecord): "" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3897
3992
  handleRowClick(item: unknown): void;
3898
3993
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
3899
3994
  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>;
@@ -4136,11 +4231,16 @@ declare class ImageInputComponent {
4136
4231
  }
4137
4232
 
4138
4233
  declare class ImageOverlayPreviewComponent {
4139
- imageUrl: string;
4140
- isPlaceholderShown: EventEmitter<boolean>;
4141
- openLightbox(src: string): void;
4234
+ imageUrl: i0.InputSignal<string>;
4235
+ isPlaceholderShown: i0.OutputEmitterRef<boolean>;
4236
+ private imageTemplate;
4237
+ private overlay;
4238
+ private viewContainerRef;
4239
+ private overlayRef;
4240
+ openLightbox(): void;
4241
+ closeLightbox(): void;
4142
4242
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
4143
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4243
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4144
4244
  }
4145
4245
 
4146
4246
  declare class KindBadgeComponent {
@@ -4182,6 +4282,20 @@ declare class MarkdownEditorComponent {
4182
4282
  static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "gn-ui-markdown-editor", never, { "preview": { "alias": "preview"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "textContent": { "alias": "textContent"; "required": false; }; "textAreaExtraClass": { "alias": "textAreaExtraClass"; "required": false; }; }, { "textContentChanged": "textContentChanged"; }, never, never, true, never>;
4183
4283
  }
4184
4284
 
4285
+ declare class KeywordBadgeComponent implements AfterViewInit {
4286
+ private translateService;
4287
+ keyword: Keyword;
4288
+ editable: boolean;
4289
+ keywordClick: EventEmitter<Keyword>;
4290
+ keywordRemove: EventEmitter<Keyword>;
4291
+ badgeComponent: ElementRef;
4292
+ get segments(): string[];
4293
+ get isPlaceWithoutExtent(): boolean;
4294
+ ngAfterViewInit(): void;
4295
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeywordBadgeComponent, never>;
4296
+ static ɵcmp: i0.ɵɵComponentDeclaration<KeywordBadgeComponent, "gn-ui-keyword-badge", never, { "keyword": { "alias": "keyword"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; }, { "keywordClick": "keywordClick"; "keywordRemove": "keywordRemove"; }, never, never, true, never>;
4297
+ }
4298
+
4185
4299
  declare class MarkdownParserComponent {
4186
4300
  textContent: string;
4187
4301
  whitoutStyles?: boolean;
@@ -4233,9 +4347,12 @@ declare class MetadataInfoComponent {
4233
4347
  start: string;
4234
4348
  end: string;
4235
4349
  };
4236
- get shownOrganization(): Organization;
4237
- get resourceContact(): Individual;
4238
4350
  fieldReady(propName: string): boolean;
4351
+ get contactGroups(): {
4352
+ role: Role;
4353
+ roleLabel: string;
4354
+ contacts: Individual[];
4355
+ }[];
4239
4356
  onKeywordClick(keyword: Keyword): void;
4240
4357
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
4241
4358
  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>;
@@ -4270,6 +4387,29 @@ declare class MetadataQualityComponent implements OnChanges {
4270
4387
  static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityComponent, "gn-ui-metadata-quality", never, { "metadata": { "alias": "metadata"; "required": false; }; "smaller": { "alias": "smaller"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "popoverDisplay": { "alias": "popoverDisplay"; "required": false; }; "propsToValidate": { "alias": "propsToValidate"; "required": false; }; "forceComputeScore": { "alias": "forceComputeScore"; "required": false; }; }, {}, never, never, true, never>;
4271
4388
  }
4272
4389
 
4390
+ declare class ContactPillComponent {
4391
+ contact: Individual;
4392
+ private host;
4393
+ overlayOpen: boolean;
4394
+ overlayWidth: number;
4395
+ overlayOffsetX: number;
4396
+ overlayPositions: ConnectedPosition[];
4397
+ get displayName(): string;
4398
+ toggleOverlay(): void;
4399
+ closeOverlay(): void;
4400
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactPillComponent, never>;
4401
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactPillComponent, "gn-ui-contact-pill", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
4402
+ }
4403
+
4404
+ declare class ContactDetailsComponent {
4405
+ contact: Individual;
4406
+ get organization(): Organization;
4407
+ get displayName(): string;
4408
+ get addressLines(): string[];
4409
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
4410
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "gn-ui-contact-details", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
4411
+ }
4412
+
4273
4413
  declare class NotificationComponent {
4274
4414
  type: 'info' | 'warning' | 'error' | 'success';
4275
4415
  title: string;
@@ -4379,7 +4519,6 @@ type CardSize = 'L' | 'M' | 'S' | 'XS';
4379
4519
  declare class InternalLinkCardComponent implements OnInit {
4380
4520
  protected elementRef: ElementRef<any>;
4381
4521
  record: CatalogRecord;
4382
- linkTarget: string;
4383
4522
  linkHref: string;
4384
4523
  metadataQualityDisplay: boolean;
4385
4524
  favoriteTemplate: TemplateRef<{
@@ -4396,7 +4535,7 @@ declare class InternalLinkCardComponent implements OnInit {
4396
4535
  get shouldShowThumbnail(): boolean;
4397
4536
  get displayContactIconOnly(): boolean;
4398
4537
  static ɵfac: i0.ɵɵFactoryDeclaration<InternalLinkCardComponent, never>;
4399
- static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "linkTarget": { "alias": "linkTarget"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "favoriteTemplate": { "alias": "favoriteTemplate"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdSelect": "mdSelect"; }, never, never, true, never>;
4538
+ static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "favoriteTemplate": { "alias": "favoriteTemplate"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdSelect": "mdSelect"; }, never, never, true, never>;
4400
4539
  }
4401
4540
 
4402
4541
  declare class ServiceCapabilitiesComponent implements OnInit {
@@ -4710,22 +4849,6 @@ declare class FeatureRecordModule {
4710
4849
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
4711
4850
  }
4712
4851
 
4713
- type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
4714
- declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
4715
- type InputChartType = (typeof CHART_TYPE_VALUES)[number];
4716
- interface DatavizChartConfigModel {
4717
- xProperty: string;
4718
- yProperty: string;
4719
- aggregation: AggregationTypes;
4720
- chartType: InputChartType;
4721
- }
4722
- interface DatavizConfigModel {
4723
- view: string;
4724
- source: DatasetOnlineResource;
4725
- chartConfig?: DatavizChartConfigModel;
4726
- styleTMSIndex?: number;
4727
- }
4728
-
4729
4852
  type DataItem = Feature;
4730
4853
  declare class FetchError {
4731
4854
  type: 'http' | 'forbidden' | 'network' | 'parse' | 'unsupportedType' | 'unknown';
@@ -4897,7 +5020,7 @@ declare class ChartViewComponent {
4897
5020
  set link(value: DatasetOnlineResource);
4898
5021
  private currentLink$;
4899
5022
  set aggregation(value: FieldAggregation[0]);
4900
- aggregation$: BehaviorSubject<"average" | "count" | "max" | "min" | "sum">;
5023
+ aggregation$: BehaviorSubject<"count" | "sum" | "min" | "max" | "average">;
4901
5024
  set xProperty(value: string);
4902
5025
  xProperty$: BehaviorSubject<string>;
4903
5026
  set yProperty(value: string);
@@ -4906,7 +5029,7 @@ declare class ChartViewComponent {
4906
5029
  chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
4907
5030
  set userChartConfig(config: DatavizChartConfigModel);
4908
5031
  chartConfig$: Observable<{
4909
- aggregation: "average" | "count" | "max" | "min" | "sum";
5032
+ aggregation: "count" | "sum" | "min" | "max" | "average";
4910
5033
  xProperty: string;
4911
5034
  yProperty: string;
4912
5035
  chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
@@ -5011,15 +5134,6 @@ declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5011
5134
  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>;
5012
5135
  }
5013
5136
 
5014
- declare const tableItemsFixture: {
5015
- items: DataItem[];
5016
- properties: PropertyInfo[];
5017
- };
5018
- declare const someHabTableItemFixture: {
5019
- items: DataItem[];
5020
- properties: PropertyInfo[];
5021
- };
5022
-
5023
5137
  declare class FigureComponent {
5024
5138
  icon: string;
5025
5139
  title: string;
@@ -5118,16 +5232,34 @@ declare class MapLegendComponent implements OnChanges {
5118
5232
  static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
5119
5233
  }
5120
5234
 
5235
+ type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
5236
+ /**
5237
+ * Default style for a spatial-extent layer: a solid black outline over a
5238
+ * translucent grey fill.
5239
+ */
5240
+ declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
5241
+ /**
5242
+ * Builds a GeoJSON map layer drawing the given spatial extents: each extent is
5243
+ * rendered from its own geometry or, when only a bounding box is available,
5244
+ * from a polygon derived from that box.
5245
+ *
5246
+ * @returns the layer, or `null` when none of the extents can be represented.
5247
+ */
5248
+ declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
5249
+ label?: string;
5250
+ clickable?: boolean;
5251
+ style?: SpatialExtentLayerStyle;
5252
+ }): MapContextLayer | null;
5121
5253
  declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5122
5254
  declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
5123
5255
  declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
5124
5256
 
5125
5257
  declare class SpatialExtentComponent {
5258
+ private _cdr;
5126
5259
  set spatialExtents(value: DatasetSpatialExtent[]);
5127
5260
  spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
5128
5261
  mapContext$: Observable<MapContext>;
5129
5262
  error: string;
5130
- bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
5131
5263
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
5132
5264
  static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
5133
5265
  }
@@ -5738,7 +5870,9 @@ interface FormFieldConfig {
5738
5870
  }
5739
5871
  type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
5740
5872
  type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
5741
- type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier;
5873
+ type OnlineSingleLinkResourceSpecifier = `onlineResourceType:singleLink`;
5874
+ type EditableContactDetailsSpecifier = `contact:editableDetails`;
5875
+ type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | OnlineSingleLinkResourceSpecifier | EditableContactDetailsSpecifier;
5742
5876
  type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
5743
5877
  interface EditorFieldIdentification {
5744
5878
  model?: CatalogRecordKeys;
@@ -5748,20 +5882,20 @@ interface EditorFieldIdentification {
5748
5882
  interface EditorField extends EditorFieldIdentification {
5749
5883
  formFieldConfig: FormFieldConfig;
5750
5884
  gridColumnSpan?: number;
5751
- hidden?: boolean;
5885
+ hidden?: boolean | EditorFieldExpression;
5752
5886
  onSaveProcess?: EditorFieldExpression;
5753
5887
  }
5754
5888
  interface EditorSection {
5755
5889
  labelKey?: string;
5756
5890
  descriptionKey?: string;
5757
- hidden: boolean;
5891
+ hidden?: boolean | EditorFieldExpression;
5758
5892
  fields: EditorField[];
5759
5893
  }
5760
5894
  interface EditorFieldPage {
5761
5895
  labelKey?: string;
5762
5896
  sections: EditorSection[];
5763
5897
  }
5764
- interface EditorConfig {
5898
+ interface EditorConfig$1 {
5765
5899
  pages: EditorFieldPage[];
5766
5900
  }
5767
5901
 
@@ -5796,7 +5930,11 @@ declare const updateRecordLanguages: _ngrx_store.ActionCreator<"[Editor] Update
5796
5930
  otherLanguages: LanguageCode[];
5797
5931
  } & _ngrx_store.Action<"[Editor] Update record languages">>;
5798
5932
  declare const markRecordAsChanged: _ngrx_store.ActionCreator<"[Editor] Mark record as changed", () => _ngrx_store.Action<"[Editor] Mark record as changed">>;
5799
- declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", () => _ngrx_store.Action<"[Editor] Save record">>;
5933
+ declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (props: {
5934
+ publish: boolean;
5935
+ }) => {
5936
+ publish: boolean;
5937
+ } & _ngrx_store.Action<"[Editor] Save record">>;
5800
5938
  declare const saveRecordSuccess: _ngrx_store.ActionCreator<"[Editor] Save record success", () => _ngrx_store.Action<"[Editor] Save record success">>;
5801
5939
  declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record failure", (props: {
5802
5940
  error: SaveRecordError;
@@ -5806,9 +5944,9 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
5806
5944
  declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
5807
5945
  declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
5808
5946
  declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
5809
- configuration: EditorConfig;
5947
+ configuration: EditorConfig$1;
5810
5948
  }) => {
5811
- configuration: EditorConfig;
5949
+ configuration: EditorConfig$1;
5812
5950
  } & _ngrx_store.Action<"[Editor] Set editor configuration">>;
5813
5951
  declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
5814
5952
  page: number;
@@ -5848,6 +5986,11 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
5848
5986
  }) => {
5849
5987
  canEditRecord: boolean;
5850
5988
  } & _ngrx_store.Action<"[Editor] User can edit record">>;
5989
+ declare const setFocusedField: _ngrx_store.ActionCreator<"[Editor] Set focused field", (props: {
5990
+ model: CatalogRecordKeys;
5991
+ }) => {
5992
+ model: CatalogRecordKeys;
5993
+ } & _ngrx_store.Action<"[Editor] Set focused field">>;
5851
5994
 
5852
5995
  declare class EditorFacade {
5853
5996
  private readonly store;
@@ -5861,20 +6004,23 @@ declare class EditorFacade {
5861
6004
  currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
5862
6005
  draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
5863
6006
  currentPage$: rxjs.Observable<number>;
5864
- editorConfig$: rxjs.Observable<EditorConfig>;
6007
+ editorConfig$: rxjs.Observable<EditorConfig$1>;
5865
6008
  hasRecordChanged$: rxjs.Observable<{
5866
6009
  user: string;
5867
6010
  date: Date;
5868
6011
  }>;
5869
6012
  isPublished$: rxjs.Observable<boolean>;
5870
6013
  canEditRecord$: rxjs.Observable<boolean>;
6014
+ focusedField$: rxjs.Observable<CatalogRecordKeys>;
5871
6015
  openRecord(record: CatalogRecord, recordSource: string): void;
5872
6016
  saveRecord(): void;
6017
+ saveAndPublishRecord(): void;
5873
6018
  undoRecordDraft(): void;
5874
6019
  updateRecordField(field: string, value: unknown): void;
5875
6020
  updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
5876
- setConfiguration(configuration: EditorConfig): void;
6021
+ setConfiguration(configuration: EditorConfig$1): void;
5877
6022
  setCurrentPage(page: number): void;
6023
+ setFocusedField(model: CatalogRecordKeys): void;
5878
6024
  setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
5879
6025
  checkHasRecordChanged(record: CatalogRecord): void;
5880
6026
  isPublished(isPublished: boolean): void;
@@ -5898,7 +6044,7 @@ interface EditorState {
5898
6044
  saving: boolean;
5899
6045
  saveError: SaveRecordError | null;
5900
6046
  changedSinceSave: boolean;
5901
- editorConfig: EditorConfig;
6047
+ editorConfig: EditorConfig$1;
5902
6048
  currentPage: number;
5903
6049
  hasRecordChanged: {
5904
6050
  user: string;
@@ -5919,7 +6065,7 @@ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (
5919
6065
  declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5920
6066
  declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
5921
6067
  declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5922
- declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
6068
+ declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig$1, (s1: EditorState) => EditorConfig$1>;
5923
6069
  declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
5924
6070
  declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
5925
6071
  declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
@@ -5932,6 +6078,15 @@ declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
5932
6078
  declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5933
6079
  declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5934
6080
 
6081
+ declare class ContactDetailsFormComponent {
6082
+ contact: Individual;
6083
+ contactChange: EventEmitter<Individual>;
6084
+ handleChange(change: Partial<Individual>): void;
6085
+ handleOrganizationChange(change: Partial<Organization>): void;
6086
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsFormComponent, never>;
6087
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsFormComponent, "gn-ui-contact-details-form", never, { "contact": { "alias": "contact"; "required": false; }; }, { "contactChange": "contactChange"; }, never, never, true, never>;
6088
+ }
6089
+
5935
6090
  interface ImportMenuItems {
5936
6091
  label: string;
5937
6092
  icon: string;
@@ -5957,18 +6112,20 @@ declare class ImportRecordComponent {
5957
6112
  static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
5958
6113
  }
5959
6114
 
5960
- declare class MetadataQualityPanelComponent implements OnChanges {
6115
+ declare class MetadataQualityPanelComponent {
6116
+ facade: EditorFacade;
5961
6117
  propsToValidate: ValidatorMapperKeys[];
5962
- propertiesByPage: {
6118
+ propertiesByPage$: rxjs.Observable<{
5963
6119
  label: string;
5964
6120
  value: boolean;
5965
- }[][];
5966
- editorConfig: EditorConfig;
5967
- record: CatalogRecord;
5968
- ngOnChanges(): void;
5969
- getExtraClass(checked: boolean): string;
6121
+ model: CatalogRecordKeys;
6122
+ }[][]>;
6123
+ onCriterionClick(property: {
6124
+ value: boolean;
6125
+ model: CatalogRecordKeys;
6126
+ }): void;
5970
6127
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
5971
- static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, { "editorConfig": { "alias": "editorConfig"; "required": false; }; "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
6128
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {}, {}, never, never, true, never>;
5972
6129
  }
5973
6130
 
5974
6131
  declare class MultilingualPanelComponent implements OnDestroy {
@@ -6013,6 +6170,14 @@ declare class MultilingualPanelComponent implements OnDestroy {
6013
6170
  static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
6014
6171
  }
6015
6172
 
6173
+ declare class FieldFocusDirective {
6174
+ gnUiFieldFocusGlowClass: string;
6175
+ private el;
6176
+ focusField(focusInnerTarget?: boolean): void;
6177
+ static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
6178
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
6179
+ }
6180
+
6016
6181
  declare class FormFieldKeywordsComponent {
6017
6182
  private editorFacade;
6018
6183
  value: Keyword[];
@@ -6134,6 +6299,7 @@ declare class FormFieldSpatialExtentComponent {
6134
6299
 
6135
6300
  declare class FormFieldComponent {
6136
6301
  uniqueIdentifier: string;
6302
+ recordKind: RecordKind;
6137
6303
  model: CatalogRecordKeys;
6138
6304
  modelSpecifier: FieldModelSpecifier;
6139
6305
  componentName: FormFieldComponentName;
@@ -6142,6 +6308,7 @@ declare class FormFieldComponent {
6142
6308
  valueChange: EventEmitter<unknown>;
6143
6309
  titleInput: ElementRef;
6144
6310
  isOpenData: boolean;
6311
+ fieldFocus: FieldFocusDirective;
6145
6312
  toggleIsOpenData(event: boolean): void;
6146
6313
  focusTitleInput(): void;
6147
6314
  get withoutWrapper(): boolean;
@@ -6158,7 +6325,7 @@ declare class FormFieldComponent {
6158
6325
  get valueAsResourceIdentifierCode(): string;
6159
6326
  handleResourceIdentifierChange(code: string): void;
6160
6327
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
6161
- 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>;
6328
+ 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: {}; }]>;
6162
6329
  }
6163
6330
 
6164
6331
  declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
@@ -6182,12 +6349,28 @@ declare class FormFieldTopicsComponent {
6182
6349
  static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
6183
6350
  }
6184
6351
 
6185
- declare class RecordFormComponent {
6352
+ declare class RecordFormComponent implements OnInit, OnDestroy {
6186
6353
  facade: EditorFacade;
6354
+ notifications: NotificationsService;
6355
+ subscription: Subscription;
6187
6356
  recordUniqueIdentifier$: rxjs.Observable<string>;
6357
+ recordKind$: rxjs.Observable<"dataset" | "service" | "reuse">;
6358
+ focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
6359
+ formFields: Signal<readonly FormFieldComponent[]>;
6360
+ sectionFocusDirectives: Signal<readonly FieldFocusDirective[]>;
6361
+ focusField(model: CatalogRecordKeys, sectionIndex: number): void;
6362
+ ngOnInit(): void;
6363
+ ngOnDestroy(): void;
6188
6364
  handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6189
6365
  fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6190
6366
  sectionTracker(index: number, section: EditorSectionWithValues): string;
6367
+ getFieldLocation(model: CatalogRecordKeys): Promise<{
6368
+ page: number;
6369
+ section: number;
6370
+ } | null>;
6371
+ private recordSignal;
6372
+ private expressionCache;
6373
+ evaluateExpression(expressionOrValue: string | EditorFieldValue): Signal<EditorFieldValue>;
6191
6374
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6192
6375
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6193
6376
  }
@@ -6267,79 +6450,24 @@ declare class FeatureEditorModule {
6267
6450
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6268
6451
  }
6269
6452
 
6453
+ interface ISOTopic {
6454
+ value: string;
6455
+ label: string;
6456
+ }
6457
+ declare const DEFAULT_CONFIGURATION: EditorConfig$1;
6458
+ declare const REUSE_LIGHT_CONFIGURATION: EditorConfig$1;
6270
6459
  /**
6271
- * This file contains the configuration of the fields that will be displayed in the editor.
6272
- * To add a new field, you need to create a new EditorField object in the fields part of this file.
6273
- * Then add it to the corresponding section in the sections part of this file.
6274
- * Finally, add the section to the corresponding page in the pages part of this file.
6275
- */
6276
- /************************************************************
6277
- *************** FIELDS *****************
6278
- ************************************************************
6279
- */
6280
- declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6281
- declare const CONSTRAINTS_SHORTCUTS: EditorField;
6282
- declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6283
- declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6284
- declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6285
- declare const RECORD_LICENSE_FIELD: EditorField;
6286
- declare const RECORD_KEYWORDS_FIELD: EditorField;
6287
- declare const RECORD_TOPICS_FIELD: EditorField;
6288
- declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6289
- declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6290
- declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6291
- declare const RECORD_UPDATED_FIELD: EditorField;
6292
- declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6293
- declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6294
- declare const RECORD_TITLE_FIELD: EditorField;
6295
- declare const RECORD_ABSTRACT_FIELD: EditorField;
6296
- declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6297
- declare const CONTACTS: EditorField;
6298
- declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6299
- declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6300
- declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6301
- declare const RECORD_ONLINE_RESOURCES: EditorField;
6302
- declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6303
- /************************************************************
6304
- *************** SECTIONS *****************
6305
- ************************************************************
6306
- */
6307
- declare const TITLE_SECTION: EditorSection;
6308
- declare const ABOUT_SECTION: EditorSection;
6309
- declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6310
- declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6311
- declare const ANNEXES_SECTION: EditorSection;
6312
- declare const CLASSIFICATION_SECTION: EditorSection;
6313
- declare const TOPICS_SECTION: EditorSection;
6314
- declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6315
- declare const DATA_MANAGERS_SECTION: EditorSection;
6316
- declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6317
- /************************************************************
6318
- *************** PAGES *****************
6319
- ************************************************************
6320
- */
6321
- declare const DEFAULT_CONFIGURATION: EditorConfig;
6322
- /************************************************************
6323
- *************** LICENSES **************
6324
- ************************************************************
6460
+ * OTHER SETTINGS
6325
6461
  */
6326
6462
  declare const AVAILABLE_LICENSES: string[];
6327
6463
  declare const OPEN_DATA_LICENSE = "etalab";
6328
6464
  declare const MAX_UPLOAD_SIZE_MB = 10;
6329
- /************************************************************
6330
- *************** SPATIAL SCOPE ************
6331
- ************************************************************
6332
- */
6333
6465
  declare const SPATIAL_SCOPES: Keyword[];
6334
- /************************************************************
6335
- *************** INSPIRE TOPICS **************
6336
- ************************************************************
6337
- */
6338
- declare const INSPIRE_TOPICS: INSPIRE_topic[];
6466
+ declare const ISO_TOPICS: ISOTopic[];
6339
6467
 
6340
6468
  declare class EditorService {
6341
6469
  private recordsRepository;
6342
- saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
6470
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1, publish: boolean): Observable<[CatalogRecord, string]>;
6343
6471
  saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6344
6472
  undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6345
6473
  hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
@@ -6534,7 +6662,7 @@ declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
6534
6662
  private renderer;
6535
6663
  popoverContent: ElementRef;
6536
6664
  content: string | TemplateRef<any>;
6537
- theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
6665
+ theme: 'light' | 'light-border' | 'translucent' | 'material' | 'dark' | '';
6538
6666
  private tippyInstance;
6539
6667
  private view;
6540
6668
  private getContent;
@@ -6579,17 +6707,8 @@ declare class SpinningLoaderComponent {
6579
6707
 
6580
6708
  declare function provideI18n(config?: TranslateModuleConfig, useLocalStorage?: boolean): EnvironmentProviders;
6581
6709
 
6582
- /**
6583
- * This loader will rely on JSON files in the app assets
6584
- * Implements a fallback on default lang if translated labels are empty
6585
- */
6586
- declare class FileTranslateLoader extends TranslateHttpLoader {
6587
- getTranslation(lang: string): rxjs.Observable<{}>;
6588
- }
6589
-
6590
6710
  declare const DEFAULT_LANG = "en";
6591
6711
  declare const LANGUAGE_STORAGE_KEY = "geonetwork-ui-language";
6592
- declare function HttpLoaderFactory(http: HttpClient): FileTranslateLoader;
6593
6712
  declare const TRANSLATE_DEFAULT_CONFIG: TranslateModuleConfig;
6594
6713
  /**
6595
6714
  * This config will print translation keys in the UI directly; used to identify which keys are used
@@ -6603,8 +6722,12 @@ declare class I18nInterceptor implements HttpInterceptor {
6603
6722
  static ɵprov: i0.ɵɵInjectableDeclaration<I18nInterceptor>;
6604
6723
  }
6605
6724
 
6606
- declare class EmbeddedTranslateLoader implements TranslateLoader {
6607
- getTranslation(lang: string): Observable<Record<string, string>>;
6725
+ /**
6726
+ * This loader will rely on JSON files in the app assets
6727
+ * Implements a fallback on default lang if translated labels are empty
6728
+ */
6729
+ declare class FileTranslateLoader extends TranslateHttpLoader {
6730
+ getTranslation(lang: string): rxjs.Observable<{}>;
6608
6731
  }
6609
6732
 
6610
6733
  declare function dropEmptyTranslations(translations: any): {};
@@ -6755,6 +6878,11 @@ interface SearchPreset {
6755
6878
  interface MetadataQualityConfig {
6756
6879
  ENABLED: boolean;
6757
6880
  }
6881
+ type NewRecordStandard = 'iso19139' | 'iso19115-3';
6882
+ interface EditorConfig {
6883
+ NEW_RECORD_DEFAULT_LANGUAGE?: string;
6884
+ NEW_RECORD_STANDARD?: NewRecordStandard;
6885
+ }
6758
6886
  type CustomTranslations = {
6759
6887
  [translationKey: string]: string;
6760
6888
  };
@@ -6774,35 +6902,17 @@ interface SearchConfig {
6774
6902
  FILTER_GEOMETRY?: Geometry;
6775
6903
  }
6776
6904
 
6777
- /**
6778
- * This loader extends the default one based on JSON files but also loads custom translations
6779
- * defined in the app configuration
6780
- * Implements a fallback on default lang if translated labels are empty
6781
- */
6782
- declare class FileWithOverridesTranslateLoader extends FileTranslateLoader {
6783
- getTranslation(lang: string): rxjs.Observable<{}>;
6784
- }
6785
-
6786
6905
  declare function getGlobalConfig(): GlobalConfig;
6787
6906
  declare function getThemeConfig(): ThemeConfig;
6788
6907
  declare function getOptionalMapConfig(): MapConfig | null;
6789
6908
  declare function getOptionalSearchConfig(): SearchConfig | null;
6909
+ declare function getOptionalEditorConfig(): EditorConfig | null;
6790
6910
  declare function getMetadataQualityConfig(): MetadataQualityConfig;
6791
6911
  declare function getCustomTranslations(langCode: string): CustomTranslations;
6792
6912
  declare function loadAppConfig(configUrl?: string): Promise<void>;
6793
6913
  declare function isConfigLoaded(): boolean;
6794
6914
  declare function _reset(): void;
6795
- declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
6796
- compiler: {
6797
- provide: typeof TranslateCompiler;
6798
- useClass: typeof TranslateMessageFormatCompiler;
6799
- };
6800
- loader: {
6801
- provide: typeof TranslateLoader;
6802
- useFactory: (http: HttpClient) => FileWithOverridesTranslateLoader;
6803
- deps: (typeof HttpClient)[];
6804
- };
6805
- };
6915
+ declare const TRANSLATE_WITH_OVERRIDES_CONFIG: TranslateModuleConfig;
6806
6916
 
6807
6917
  declare const okAppConfigFixture: () => string;
6808
6918
  declare const appConfigWithTranslationFixture: () => string;
@@ -6815,6 +6925,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6815
6925
 
6816
6926
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6817
6927
 
6818
- 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, 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, 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, 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, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6819
- 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 };
6928
+ export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactDetailsFormComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, REUSE_LIGHT_CONFIGURATION, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, 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 };
6929
+ 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 };
6820
6930
  //# sourceMappingURL=index.d.ts.map