geonetwork-ui 2.10.0-dev.fc6515c0b → 2.11.0-dev.5c2e5295e

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 (161) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1709 -6267
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +230 -172
  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/elasticsearch.model.ts +13 -1
  25. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +11 -0
  27. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +21 -0
  28. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +52 -0
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +24 -1
  30. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +77 -0
  31. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/association-type.mapper.ts +12 -0
  32. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +79 -0
  33. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +8 -4
  34. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +24 -5
  35. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +66 -40
  36. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  37. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  38. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +37 -2
  39. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +49 -5
  40. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -5
  41. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  42. package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
  43. package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
  44. package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
  45. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
  46. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +62 -0
  47. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  48. package/src/libs/feature/editor/src/index.ts +1 -0
  49. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  50. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  51. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  52. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  53. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
  54. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +68 -0
  55. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +41 -0
  56. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
  57. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
  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 +4 -1
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.css +0 -0
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.html +33 -0
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-associated-records/form-field-associated-records.component.ts +94 -0
  64. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +7 -7
  65. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +9 -2
  66. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +12 -0
  67. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  68. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  69. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  70. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  71. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +16 -12
  72. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  73. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  74. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  75. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
  76. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +34 -16
  77. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +17 -0
  78. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
  79. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
  80. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +76 -19
  81. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  82. package/src/libs/feature/editor/src/lib/fields.config.ts +359 -337
  83. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +10 -3
  84. package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
  85. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  86. package/src/libs/feature/notify-reuse/src/index.ts +1 -0
  87. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
  88. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
  89. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
  90. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
  91. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +219 -8
  92. package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
  93. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  94. package/src/libs/feature/router/src/lib/default/router.service.ts +1 -1
  95. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  96. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +1 -1
  97. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  98. package/src/libs/ui/dataviz/src/index.ts +0 -1
  99. package/src/libs/ui/elements/src/index.ts +1 -0
  100. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
  101. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +7 -3
  102. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
  103. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
  104. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  105. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  106. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  107. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
  108. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
  109. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  110. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
  111. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +5 -8
  112. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
  113. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  114. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  115. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
  116. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
  117. package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
  118. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  119. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  120. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  121. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
  122. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
  123. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
  124. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  125. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  126. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  127. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  128. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  129. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  130. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  131. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  132. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  133. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  134. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  135. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  136. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  137. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
  138. package/src/libs/util/app-config/src/lib/app-config.ts +35 -10
  139. package/src/libs/util/app-config/src/lib/model.ts +3 -0
  140. package/src/libs/util/app-config/src/lib/parse-utils.ts +27 -0
  141. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  142. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  143. package/src/libs/util/i18n/src/index.ts +0 -1
  144. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  145. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  146. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  147. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  148. package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
  149. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  150. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  151. package/style.css +0 -1
  152. package/tailwind.base.css +15 -0
  153. package/translations/de.json +122 -50
  154. package/translations/en.json +127 -55
  155. package/translations/es.json +96 -24
  156. package/translations/fr.json +124 -52
  157. package/translations/it.json +123 -51
  158. package/translations/nl.json +95 -23
  159. package/translations/pt.json +96 -24
  160. package/translations/sk.json +96 -24
  161. 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';
@@ -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,29 @@ 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
+ declare const associationTypeValues: readonly ["crossReference", "largerWorkCitation", "partOfSeamlessDatabase", "stereoMate", "isComposedOf", "collectiveTitle", "series", "dependency", "revisionOf"];
237
+ type AssociationType = (typeof associationTypeValues)[number];
238
+ /**
239
+ * Represents another record associated with this one (e.g. a parent/sibling dataset).
240
+ */
241
+ interface AssociatedRecord {
242
+ uniqueIdentifier: string;
243
+ associationType: AssociationType;
244
+ }
232
245
  interface DatasetRecord extends BaseRecord {
233
246
  kind: 'dataset';
234
247
  status: RecordStatus;
235
248
  lineage: string;
249
+ sourceRecords: Array<SourceRecord>;
250
+ associatedRecords: Array<AssociatedRecord>;
236
251
  onlineResources: Array<DatasetOnlineResource>;
237
252
  spatialExtents: Array<DatasetSpatialExtent>;
238
253
  temporalExtents: Array<DatasetTemporalExtent>;
@@ -256,6 +271,8 @@ interface ServiceRecord extends BaseRecord {
256
271
  interface ReuseRecord extends BaseRecord {
257
272
  kind: 'reuse';
258
273
  lineage: string;
274
+ sourceRecords: Array<SourceRecord>;
275
+ associatedRecords: Array<AssociatedRecord>;
259
276
  onlineResources: Array<DatasetOnlineResource>;
260
277
  reuseType: ReuseType;
261
278
  spatialExtents: Array<DatasetSpatialExtent>;
@@ -342,7 +359,19 @@ type SortOrder = 'asc' | 'desc';
342
359
  interface SortParam {
343
360
  [key: string]: SortOrder;
344
361
  }
345
- type SortParams = string | SortParam | (string | SortParam)[];
362
+ type EsFieldSort = {
363
+ order: SortOrder;
364
+ mode?: 'max' | 'min';
365
+ missing?: '_last';
366
+ nested?: {
367
+ path: string;
368
+ };
369
+ };
370
+ type SortParams = string | SortParam | {
371
+ [property: string]: EsFieldSort;
372
+ } | (string | SortParam | {
373
+ [property: string]: EsFieldSort;
374
+ })[];
346
375
  interface EsRequestAggTerm {
347
376
  field?: string;
348
377
  size?: number;
@@ -427,6 +456,7 @@ type ThesaurusName = string;
427
456
  interface Thesaurus {
428
457
  id?: string;
429
458
  title?: string;
459
+ multilingualTitle?: MultilingualField;
430
460
  theme?: string;
431
461
  link?: string;
432
462
  keywords: MultilingualField[];
@@ -687,7 +717,17 @@ declare const getAsUrl: (field: any, location?: string) => URL;
687
717
  declare const mapLogo: (source: SourceWithUnknownProps) => URL;
688
718
  declare const mapOrganization: (sourceContact: SourceWithUnknownProps, lang3: string) => Organization;
689
719
  declare const mapContact: (sourceContact: SourceWithUnknownProps, lang3: string) => Individual;
690
- declare const mapKeywords: (thesauri: Thesaurus[], language: string) => any[];
720
+ interface KeywordTree {
721
+ default?: string[];
722
+ }
723
+ /**
724
+ * Resolves a keyword's ancestor path within its thesaurus tree, or null for a
725
+ * root-level keyword (no ancestors to show). Tree entries are `^`-joined label
726
+ * paths (default language); they aren't index-aligned with the keywords, so we
727
+ * match on the last segment (not by position/URI), shortest path on poly-hierarchy.
728
+ */
729
+ declare const getKeywordHierarchyPath: (keywordDefaultLabel: string, tree?: KeywordTree | null) => string[] | null;
730
+ declare const mapKeywords: (thesauri: Record<string, Thesaurus>, language: string, source?: SourceWithUnknownProps) => any[];
691
731
 
692
732
  type ESResponseSource = SourceWithUnknownProps;
693
733
  type EsFieldMapperFn = (output: Partial<CatalogRecord>, source: ESResponseSource) => Partial<CatalogRecord>;
@@ -1026,7 +1066,7 @@ declare abstract class RecordsRepositoryInterface {
1026
1066
  * @param uniqueIdentifier
1027
1067
  * @returns Observable<[CatalogRecord, string, boolean] | null>
1028
1068
  */
1029
- abstract openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1069
+ abstract openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1030
1070
  /**
1031
1071
  * This emits once:
1032
1072
  * - record object with a new unique identifier and suffixed title
@@ -1077,6 +1117,7 @@ declare abstract class RecordsRepositoryInterface {
1077
1117
 
1078
1118
  type RecordAsXml = string;
1079
1119
  declare const DISABLE_DRAFT: InjectionToken<boolean>;
1120
+ declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
1080
1121
  declare class Gn4Repository implements RecordsRepositoryInterface {
1081
1122
  private httpClient;
1082
1123
  private gn4SearchApi;
@@ -1087,6 +1128,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1087
1128
  private gn4LanguagesApi;
1088
1129
  private settingsService;
1089
1130
  private disableDraft;
1131
+ private defaultConverter;
1090
1132
  _draftsChanged: Subject<void>;
1091
1133
  draftsChanged$: Observable<void>;
1092
1134
  search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
@@ -1106,7 +1148,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1106
1148
  private canEdit;
1107
1149
  canEditRecord(uniqueIdentifier: string): Observable<boolean>;
1108
1150
  canEditIndexedRecord(record: CatalogRecord): Observable<boolean>;
1109
- openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1151
+ openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1110
1152
  openRecordForDuplication(uniqueIdentifier: string): Observable<[CatalogRecord, string, true] | null>;
1111
1153
  saveRecord(record: CatalogRecord, referenceRecordSource?: string, publishToAll?: boolean): Observable<string>;
1112
1154
  duplicateExternalRecord(recordDownloadUrl: string): Observable<string>;
@@ -1746,6 +1788,15 @@ interface UserModel {
1746
1788
  profileIcon?: string;
1747
1789
  }
1748
1790
 
1791
+ interface GroupModel {
1792
+ groupId: number;
1793
+ groupName: string;
1794
+ isMember: boolean;
1795
+ canEdit: boolean;
1796
+ canApprove: boolean;
1797
+ canAdministrate: boolean;
1798
+ }
1799
+
1749
1800
  interface RecordAttachment {
1750
1801
  url: URL;
1751
1802
  fileName: string;
@@ -1765,6 +1816,7 @@ declare abstract class PlatformServiceInterface {
1765
1816
  abstract getMe(): Observable<UserModel>;
1766
1817
  abstract isAnonymous(): Observable<boolean>;
1767
1818
  abstract getUsers(): Observable<UserModel[]>;
1819
+ abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
1768
1820
  abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1769
1821
  abstract getOrganizations(): Observable<Organization[]>;
1770
1822
  abstract translateKey(key: string): Observable<string>;
@@ -1923,6 +1975,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
1923
1975
  declare class Gn4PlatformService implements PlatformServiceInterface {
1924
1976
  private meApi;
1925
1977
  private usersApi;
1978
+ private groupsApi;
1926
1979
  private mapper;
1927
1980
  private toolsApiService;
1928
1981
  private registriesApiService;
@@ -1954,6 +2007,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
1954
2007
  getOrganizations(): Observable<Organization[]>;
1955
2008
  getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
1956
2009
  getUsers(): Observable<UserModel[]>;
2010
+ getUserPermissionsByGroup(): Observable<GroupModel[]>;
1957
2011
  translateKey(key: string): Observable<string>;
1958
2012
  private allThesaurus$;
1959
2013
  searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
@@ -2118,6 +2172,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2118
2172
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2119
2173
  type BoundingBox = [number, number, number, number];
2120
2174
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2175
+ /**
2176
+ * Builds the closed GeoJSON Polygon matching the given bounding box.
2177
+ */
2178
+ declare function bboxToPolygon(bbox: BoundingBox): Polygon;
2179
+ /**
2180
+ * Returns the geometry carried by a spatial extent, falling back to the polygon
2181
+ * derived from its bounding box. Returns null when the extent has neither.
2182
+ */
2183
+ declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
2184
+ /**
2185
+ * Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
2186
+ * e.g. to be used as the data source of a map layer.
2187
+ */
2188
+ declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
2121
2189
 
2122
2190
  declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
2123
2191
  declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
@@ -2377,6 +2445,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
2377
2445
 
2378
2446
  declare class MapUtilsService {
2379
2447
  getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
2448
+ /**
2449
+ * Builds a non-interactive overlay layer drawing the spatial extent(s)
2450
+ * declared in the record's metadata (bounding boxes and/or geometries).
2451
+ * Returns null when the record has no usable spatial extent.
2452
+ *
2453
+ * This is purely for display and is independent from the map's initial view,
2454
+ * which is derived separately (see {@link getRecordExtent}).
2455
+ */
2456
+ getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
2380
2457
  static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
2381
2458
  static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
2382
2459
  }
@@ -2702,14 +2779,16 @@ declare class BadgeComponent {
2702
2779
  clickable?: boolean;
2703
2780
  removable?: boolean;
2704
2781
  badgeRemoveClicked: EventEmitter<void>;
2782
+ badgeClicked: EventEmitter<void>;
2705
2783
  removeBadge(): void;
2784
+ handleClick(event: MouseEvent): void;
2706
2785
  static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
2707
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; }, never, ["*"], true, never>;
2786
+ 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>;
2708
2787
  }
2709
2788
 
2710
2789
  declare class ButtonComponent {
2711
2790
  private btnClass;
2712
- set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black' | 'primary-light');
2791
+ set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
2713
2792
  disabled: boolean;
2714
2793
  extraClass: string;
2715
2794
  buttonClick: EventEmitter<Event>;
@@ -2820,7 +2899,7 @@ declare class DropdownMultiselectComponent {
2820
2899
  overlayPositions: ConnectedPosition[];
2821
2900
  scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2822
2901
  overlayOpen: boolean;
2823
- overlayWidth: string;
2902
+ overlayMinWidth: string;
2824
2903
  overlayMaxHeight: string;
2825
2904
  id: string;
2826
2905
  get hasSelectedChoices(): boolean;
@@ -3003,20 +3082,21 @@ declare class TextAreaComponent implements AfterViewInit {
3003
3082
  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>;
3004
3083
  }
3005
3084
 
3006
- declare class TextInputComponent implements AfterViewInit {
3007
- value: string;
3008
- extraClass: string;
3009
- placeholder: string;
3010
- required: boolean;
3011
- disabled: boolean;
3012
- rawChange: Subject<string>;
3013
- valueChange: rxjs.Observable<string>;
3014
- input: any;
3015
- ngAfterViewInit(): void;
3016
- checkRequired(value: any): void;
3017
- handleChange($event: any): void;
3085
+ declare class TextInputComponent {
3086
+ value: i0.InputSignalWithTransform<string, string>;
3087
+ extraClass: i0.InputSignal<string>;
3088
+ placeholder: i0.InputSignal<string>;
3089
+ required: i0.InputSignal<boolean>;
3090
+ disabled: i0.InputSignal<boolean>;
3091
+ type: i0.InputSignalWithTransform<string, string>;
3092
+ valueChange: i0.OutputEmitterRef<string>;
3093
+ inputModel: i0.WritableSignal<string>;
3094
+ inputRef: i0.Signal<ElementRef<HTMLInputElement>>;
3095
+ isValid: i0.Signal<boolean>;
3096
+ private lastEmittedValue;
3097
+ handleChange($event: Event): void;
3018
3098
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
3019
- 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>;
3099
+ 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>;
3020
3100
  }
3021
3101
 
3022
3102
  declare class UrlInputComponent implements OnChanges {
@@ -3144,6 +3224,22 @@ declare class ResultsTableComponent {
3144
3224
  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>;
3145
3225
  }
3146
3226
 
3227
+ type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
3228
+ declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
3229
+ type InputChartType = (typeof CHART_TYPE_VALUES)[number];
3230
+ interface DatavizChartConfigModel {
3231
+ xProperty: string;
3232
+ yProperty: string;
3233
+ aggregation: AggregationTypes;
3234
+ chartType: InputChartType;
3235
+ }
3236
+ interface DatavizConfigModel {
3237
+ view: string;
3238
+ source: DatasetOnlineResource;
3239
+ chartConfig?: DatavizChartConfigModel;
3240
+ styleTMSIndex?: number;
3241
+ }
3242
+
3147
3243
  type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu';
3148
3244
  declare class ActionMenuComponent {
3149
3245
  dialog: MatDialog;
@@ -3152,6 +3248,7 @@ declare class ActionMenuComponent {
3152
3248
  isDuplicating: boolean;
3153
3249
  canDelete: boolean;
3154
3250
  page: 'draft' | 'main' | 'record';
3251
+ recordKind: RecordKind;
3155
3252
  duplicate: EventEmitter<void>;
3156
3253
  delete: EventEmitter<void>;
3157
3254
  closeActionMenu: EventEmitter<void>;
@@ -3162,7 +3259,7 @@ declare class ActionMenuComponent {
3162
3259
  displayMainMenu(): void;
3163
3260
  displayDeleteMenu(): void;
3164
3261
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
3165
- 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>;
3262
+ 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>;
3166
3263
  }
3167
3264
 
3168
3265
  declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
@@ -3905,7 +4002,7 @@ declare class InteractiveTableComponent {
3905
4002
  get gridStyle(): {
3906
4003
  'grid-template-columns': string;
3907
4004
  };
3908
- getItemTitle(item: CatalogRecord): "" | "editor.record.lock.resourceType" | "editor.record.lock.harvested" | "editor.record.lock.owner";
4005
+ getItemTitle(item: CatalogRecord): "" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3909
4006
  handleRowClick(item: unknown): void;
3910
4007
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
3911
4008
  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>;
@@ -4148,11 +4245,16 @@ declare class ImageInputComponent {
4148
4245
  }
4149
4246
 
4150
4247
  declare class ImageOverlayPreviewComponent {
4151
- imageUrl: string;
4152
- isPlaceholderShown: EventEmitter<boolean>;
4153
- openLightbox(src: string): void;
4248
+ imageUrl: i0.InputSignal<string>;
4249
+ isPlaceholderShown: i0.OutputEmitterRef<boolean>;
4250
+ private imageTemplate;
4251
+ private overlay;
4252
+ private viewContainerRef;
4253
+ private overlayRef;
4254
+ openLightbox(): void;
4255
+ closeLightbox(): void;
4154
4256
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
4155
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4257
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4156
4258
  }
4157
4259
 
4158
4260
  declare class KindBadgeComponent {
@@ -4194,6 +4296,20 @@ declare class MarkdownEditorComponent {
4194
4296
  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>;
4195
4297
  }
4196
4298
 
4299
+ declare class KeywordBadgeComponent implements AfterViewInit {
4300
+ private translateService;
4301
+ keyword: Keyword;
4302
+ editable: boolean;
4303
+ keywordClick: EventEmitter<Keyword>;
4304
+ keywordRemove: EventEmitter<Keyword>;
4305
+ badgeComponent: ElementRef;
4306
+ get segments(): string[];
4307
+ get isPlaceWithoutExtent(): boolean;
4308
+ ngAfterViewInit(): void;
4309
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeywordBadgeComponent, never>;
4310
+ 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>;
4311
+ }
4312
+
4197
4313
  declare class MarkdownParserComponent {
4198
4314
  textContent: string;
4199
4315
  whitoutStyles?: boolean;
@@ -4747,22 +4863,6 @@ declare class FeatureRecordModule {
4747
4863
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
4748
4864
  }
4749
4865
 
4750
- type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
4751
- declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
4752
- type InputChartType = (typeof CHART_TYPE_VALUES)[number];
4753
- interface DatavizChartConfigModel {
4754
- xProperty: string;
4755
- yProperty: string;
4756
- aggregation: AggregationTypes;
4757
- chartType: InputChartType;
4758
- }
4759
- interface DatavizConfigModel {
4760
- view: string;
4761
- source: DatasetOnlineResource;
4762
- chartConfig?: DatavizChartConfigModel;
4763
- styleTMSIndex?: number;
4764
- }
4765
-
4766
4866
  type DataItem = Feature;
4767
4867
  declare class FetchError {
4768
4868
  type: 'http' | 'forbidden' | 'network' | 'parse' | 'unsupportedType' | 'unknown';
@@ -4934,7 +5034,7 @@ declare class ChartViewComponent {
4934
5034
  set link(value: DatasetOnlineResource);
4935
5035
  private currentLink$;
4936
5036
  set aggregation(value: FieldAggregation[0]);
4937
- aggregation$: BehaviorSubject<"average" | "count" | "max" | "min" | "sum">;
5037
+ aggregation$: BehaviorSubject<"max" | "min" | "count" | "sum" | "average">;
4938
5038
  set xProperty(value: string);
4939
5039
  xProperty$: BehaviorSubject<string>;
4940
5040
  set yProperty(value: string);
@@ -4943,7 +5043,7 @@ declare class ChartViewComponent {
4943
5043
  chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
4944
5044
  set userChartConfig(config: DatavizChartConfigModel);
4945
5045
  chartConfig$: Observable<{
4946
- aggregation: "average" | "count" | "max" | "min" | "sum";
5046
+ aggregation: "max" | "min" | "count" | "sum" | "average";
4947
5047
  xProperty: string;
4948
5048
  yProperty: string;
4949
5049
  chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
@@ -5048,15 +5148,6 @@ declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5048
5148
  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>;
5049
5149
  }
5050
5150
 
5051
- declare const tableItemsFixture: {
5052
- items: DataItem[];
5053
- properties: PropertyInfo[];
5054
- };
5055
- declare const someHabTableItemFixture: {
5056
- items: DataItem[];
5057
- properties: PropertyInfo[];
5058
- };
5059
-
5060
5151
  declare class FigureComponent {
5061
5152
  icon: string;
5062
5153
  title: string;
@@ -5155,6 +5246,24 @@ declare class MapLegendComponent implements OnChanges {
5155
5246
  static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
5156
5247
  }
5157
5248
 
5249
+ type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
5250
+ /**
5251
+ * Default style for a spatial-extent layer: a solid black outline over a
5252
+ * translucent grey fill.
5253
+ */
5254
+ declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
5255
+ /**
5256
+ * Builds a GeoJSON map layer drawing the given spatial extents: each extent is
5257
+ * rendered from its own geometry or, when only a bounding box is available,
5258
+ * from a polygon derived from that box.
5259
+ *
5260
+ * @returns the layer, or `null` when none of the extents can be represented.
5261
+ */
5262
+ declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
5263
+ label?: string;
5264
+ clickable?: boolean;
5265
+ style?: SpatialExtentLayerStyle;
5266
+ }): MapContextLayer | null;
5158
5267
  declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5159
5268
  declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
5160
5269
  declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
@@ -5165,7 +5274,6 @@ declare class SpatialExtentComponent {
5165
5274
  spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
5166
5275
  mapContext$: Observable<MapContext>;
5167
5276
  error: string;
5168
- bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
5169
5277
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
5170
5278
  static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
5171
5279
  }
@@ -5776,7 +5884,9 @@ interface FormFieldConfig {
5776
5884
  }
5777
5885
  type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
5778
5886
  type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
5779
- type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier;
5887
+ type OnlineSingleLinkResourceSpecifier = `onlineResourceType:singleLink`;
5888
+ type EditableContactDetailsSpecifier = `contact:editableDetails`;
5889
+ type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | OnlineSingleLinkResourceSpecifier | EditableContactDetailsSpecifier;
5780
5890
  type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
5781
5891
  interface EditorFieldIdentification {
5782
5892
  model?: CatalogRecordKeys;
@@ -5786,13 +5896,13 @@ interface EditorFieldIdentification {
5786
5896
  interface EditorField extends EditorFieldIdentification {
5787
5897
  formFieldConfig: FormFieldConfig;
5788
5898
  gridColumnSpan?: number;
5789
- hidden?: boolean;
5899
+ hidden?: boolean | EditorFieldExpression;
5790
5900
  onSaveProcess?: EditorFieldExpression;
5791
5901
  }
5792
5902
  interface EditorSection {
5793
5903
  labelKey?: string;
5794
5904
  descriptionKey?: string;
5795
- hidden: boolean;
5905
+ hidden?: boolean | EditorFieldExpression;
5796
5906
  fields: EditorField[];
5797
5907
  }
5798
5908
  interface EditorFieldPage {
@@ -5834,7 +5944,11 @@ declare const updateRecordLanguages: _ngrx_store.ActionCreator<"[Editor] Update
5834
5944
  otherLanguages: LanguageCode[];
5835
5945
  } & _ngrx_store.Action<"[Editor] Update record languages">>;
5836
5946
  declare const markRecordAsChanged: _ngrx_store.ActionCreator<"[Editor] Mark record as changed", () => _ngrx_store.Action<"[Editor] Mark record as changed">>;
5837
- declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", () => _ngrx_store.Action<"[Editor] Save record">>;
5947
+ declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (props: {
5948
+ publish: boolean;
5949
+ }) => {
5950
+ publish: boolean;
5951
+ } & _ngrx_store.Action<"[Editor] Save record">>;
5838
5952
  declare const saveRecordSuccess: _ngrx_store.ActionCreator<"[Editor] Save record success", () => _ngrx_store.Action<"[Editor] Save record success">>;
5839
5953
  declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record failure", (props: {
5840
5954
  error: SaveRecordError;
@@ -5914,6 +6028,7 @@ declare class EditorFacade {
5914
6028
  focusedField$: rxjs.Observable<CatalogRecordKeys>;
5915
6029
  openRecord(record: CatalogRecord, recordSource: string): void;
5916
6030
  saveRecord(): void;
6031
+ saveAndPublishRecord(): void;
5917
6032
  undoRecordDraft(): void;
5918
6033
  updateRecordField(field: string, value: unknown): void;
5919
6034
  updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
@@ -5977,6 +6092,15 @@ declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
5977
6092
  declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5978
6093
  declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5979
6094
 
6095
+ declare class ContactDetailsFormComponent {
6096
+ contact: Individual;
6097
+ contactChange: EventEmitter<Individual>;
6098
+ handleChange(change: Partial<Individual>): void;
6099
+ handleOrganizationChange(change: Partial<Organization>): void;
6100
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsFormComponent, never>;
6101
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsFormComponent, "gn-ui-contact-details-form", never, { "contact": { "alias": "contact"; "required": false; }; }, { "contactChange": "contactChange"; }, never, never, true, never>;
6102
+ }
6103
+
5980
6104
  interface ImportMenuItems {
5981
6105
  label: string;
5982
6106
  icon: string;
@@ -6063,7 +6187,7 @@ declare class MultilingualPanelComponent implements OnDestroy {
6063
6187
  declare class FieldFocusDirective {
6064
6188
  gnUiFieldFocusGlowClass: string;
6065
6189
  private el;
6066
- focusField(): void;
6190
+ focusField(focusInnerTarget?: boolean): void;
6067
6191
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
6068
6192
  static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
6069
6193
  }
@@ -6189,6 +6313,7 @@ declare class FormFieldSpatialExtentComponent {
6189
6313
 
6190
6314
  declare class FormFieldComponent {
6191
6315
  uniqueIdentifier: string;
6316
+ recordKind: RecordKind;
6192
6317
  model: CatalogRecordKeys;
6193
6318
  modelSpecifier: FieldModelSpecifier;
6194
6319
  componentName: FormFieldComponentName;
@@ -6205,6 +6330,7 @@ declare class FormFieldComponent {
6205
6330
  get valueAsDate(): Date;
6206
6331
  get valueAsOverviews(): Array<GraphicOverview>;
6207
6332
  get valueAsUpdateFrequency(): UpdateFrequency;
6333
+ get valueAsAssociatedRecords(): Array<AssociatedRecord>;
6208
6334
  get valueAsTemporalExtents(): Array<DatasetTemporalExtent>;
6209
6335
  get valueAsKeywords(): Array<Keyword>;
6210
6336
  get valueAsTopics(): Array<string>;
@@ -6214,7 +6340,7 @@ declare class FormFieldComponent {
6214
6340
  get valueAsResourceIdentifierCode(): string;
6215
6341
  handleResourceIdentifierChange(code: string): void;
6216
6342
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
6217
- 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, [{ directive: typeof FieldFocusDirective; inputs: {}; outputs: {}; }]>;
6343
+ 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: {}; }]>;
6218
6344
  }
6219
6345
 
6220
6346
  declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
@@ -6240,17 +6366,26 @@ declare class FormFieldTopicsComponent {
6240
6366
 
6241
6367
  declare class RecordFormComponent implements OnInit, OnDestroy {
6242
6368
  facade: EditorFacade;
6369
+ notifications: NotificationsService;
6243
6370
  subscription: Subscription;
6244
6371
  recordUniqueIdentifier$: rxjs.Observable<string>;
6245
- focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number]>;
6246
- formFields: i0.Signal<readonly FormFieldComponent[]>;
6247
- focusField(model: CatalogRecordKeys): void;
6372
+ recordKind$: rxjs.Observable<"dataset" | "service" | "reuse">;
6373
+ focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
6374
+ formFields: Signal<readonly FormFieldComponent[]>;
6375
+ sectionFocusDirectives: Signal<readonly FieldFocusDirective[]>;
6376
+ focusField(model: CatalogRecordKeys, sectionIndex: number): void;
6248
6377
  ngOnInit(): void;
6249
6378
  ngOnDestroy(): void;
6250
6379
  handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6251
6380
  fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6252
6381
  sectionTracker(index: number, section: EditorSectionWithValues): string;
6253
- getPageIndexForField(model: CatalogRecordKeys): Promise<number | null>;
6382
+ getFieldLocation(model: CatalogRecordKeys): Promise<{
6383
+ page: number;
6384
+ section: number;
6385
+ } | null>;
6386
+ private recordSignal;
6387
+ private expressionCache;
6388
+ evaluateExpression(expressionOrValue: string | EditorFieldValue): Signal<EditorFieldValue>;
6254
6389
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6255
6390
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6256
6391
  }
@@ -6330,79 +6465,24 @@ declare class FeatureEditorModule {
6330
6465
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6331
6466
  }
6332
6467
 
6333
- /**
6334
- * This file contains the configuration of the fields that will be displayed in the editor.
6335
- * To add a new field, you need to create a new EditorField object in the fields part of this file.
6336
- * Then add it to the corresponding section in the sections part of this file.
6337
- * Finally, add the section to the corresponding page in the pages part of this file.
6338
- */
6339
- /************************************************************
6340
- *************** FIELDS *****************
6341
- ************************************************************
6342
- */
6343
- declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6344
- declare const CONSTRAINTS_SHORTCUTS: EditorField;
6345
- declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6346
- declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6347
- declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6348
- declare const RECORD_LICENSE_FIELD: EditorField;
6349
- declare const RECORD_KEYWORDS_FIELD: EditorField;
6350
- declare const RECORD_TOPICS_FIELD: EditorField;
6351
- declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6352
- declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6353
- declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6354
- declare const RECORD_UPDATED_FIELD: EditorField;
6355
- declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6356
- declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6357
- declare const RECORD_TITLE_FIELD: EditorField;
6358
- declare const RECORD_ABSTRACT_FIELD: EditorField;
6359
- declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6360
- declare const CONTACTS: EditorField;
6361
- declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6362
- declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6363
- declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6364
- declare const RECORD_ONLINE_RESOURCES: EditorField;
6365
- declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6366
- /************************************************************
6367
- *************** SECTIONS *****************
6368
- ************************************************************
6369
- */
6370
- declare const TITLE_SECTION: EditorSection;
6371
- declare const ABOUT_SECTION: EditorSection;
6372
- declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6373
- declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6374
- declare const ANNEXES_SECTION: EditorSection;
6375
- declare const CLASSIFICATION_SECTION: EditorSection;
6376
- declare const TOPICS_SECTION: EditorSection;
6377
- declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6378
- declare const DATA_MANAGERS_SECTION: EditorSection;
6379
- declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6380
- /************************************************************
6381
- *************** PAGES *****************
6382
- ************************************************************
6383
- */
6468
+ interface ISOTopic {
6469
+ value: string;
6470
+ label: string;
6471
+ }
6384
6472
  declare const DEFAULT_CONFIGURATION: EditorConfig$1;
6385
- /************************************************************
6386
- *************** LICENSES **************
6387
- ************************************************************
6473
+ declare const REUSE_LIGHT_CONFIGURATION: EditorConfig$1;
6474
+ /**
6475
+ * OTHER SETTINGS
6388
6476
  */
6389
6477
  declare const AVAILABLE_LICENSES: string[];
6390
6478
  declare const OPEN_DATA_LICENSE = "etalab";
6391
6479
  declare const MAX_UPLOAD_SIZE_MB = 10;
6392
- /************************************************************
6393
- *************** SPATIAL SCOPE ************
6394
- ************************************************************
6395
- */
6396
6480
  declare const SPATIAL_SCOPES: Keyword[];
6397
- /************************************************************
6398
- *************** INSPIRE TOPICS **************
6399
- ************************************************************
6400
- */
6401
- declare const INSPIRE_TOPICS: INSPIRE_topic[];
6481
+ declare const ISO_TOPICS: ISOTopic[];
6402
6482
 
6403
6483
  declare class EditorService {
6404
6484
  private recordsRepository;
6405
- saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1): Observable<[CatalogRecord, string]>;
6485
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1, publish: boolean): Observable<[CatalogRecord, string]>;
6406
6486
  saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6407
6487
  undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6408
6488
  hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
@@ -6597,7 +6677,7 @@ declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
6597
6677
  private renderer;
6598
6678
  popoverContent: ElementRef;
6599
6679
  content: string | TemplateRef<any>;
6600
- theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
6680
+ theme: 'light' | 'light-border' | 'translucent' | 'material' | 'dark' | '';
6601
6681
  private tippyInstance;
6602
6682
  private view;
6603
6683
  private getContent;
@@ -6642,17 +6722,8 @@ declare class SpinningLoaderComponent {
6642
6722
 
6643
6723
  declare function provideI18n(config?: TranslateModuleConfig, useLocalStorage?: boolean): EnvironmentProviders;
6644
6724
 
6645
- /**
6646
- * This loader will rely on JSON files in the app assets
6647
- * Implements a fallback on default lang if translated labels are empty
6648
- */
6649
- declare class FileTranslateLoader extends TranslateHttpLoader {
6650
- getTranslation(lang: string): rxjs.Observable<{}>;
6651
- }
6652
-
6653
6725
  declare const DEFAULT_LANG = "en";
6654
6726
  declare const LANGUAGE_STORAGE_KEY = "geonetwork-ui-language";
6655
- declare function HttpLoaderFactory(http: HttpClient): FileTranslateLoader;
6656
6727
  declare const TRANSLATE_DEFAULT_CONFIG: TranslateModuleConfig;
6657
6728
  /**
6658
6729
  * This config will print translation keys in the UI directly; used to identify which keys are used
@@ -6666,8 +6737,12 @@ declare class I18nInterceptor implements HttpInterceptor {
6666
6737
  static ɵprov: i0.ɵɵInjectableDeclaration<I18nInterceptor>;
6667
6738
  }
6668
6739
 
6669
- declare class EmbeddedTranslateLoader implements TranslateLoader {
6670
- getTranslation(lang: string): Observable<Record<string, string>>;
6740
+ /**
6741
+ * This loader will rely on JSON files in the app assets
6742
+ * Implements a fallback on default lang if translated labels are empty
6743
+ */
6744
+ declare class FileTranslateLoader extends TranslateHttpLoader {
6745
+ getTranslation(lang: string): rxjs.Observable<{}>;
6671
6746
  }
6672
6747
 
6673
6748
  declare function dropEmptyTranslations(translations: any): {};
@@ -6818,8 +6893,10 @@ interface SearchPreset {
6818
6893
  interface MetadataQualityConfig {
6819
6894
  ENABLED: boolean;
6820
6895
  }
6896
+ type NewRecordStandard = 'iso19139' | 'iso19115-3';
6821
6897
  interface EditorConfig {
6822
6898
  NEW_RECORD_DEFAULT_LANGUAGE?: string;
6899
+ NEW_RECORD_STANDARD?: NewRecordStandard;
6823
6900
  }
6824
6901
  type CustomTranslations = {
6825
6902
  [translationKey: string]: string;
@@ -6840,15 +6917,6 @@ interface SearchConfig {
6840
6917
  FILTER_GEOMETRY?: Geometry;
6841
6918
  }
6842
6919
 
6843
- /**
6844
- * This loader extends the default one based on JSON files but also loads custom translations
6845
- * defined in the app configuration
6846
- * Implements a fallback on default lang if translated labels are empty
6847
- */
6848
- declare class FileWithOverridesTranslateLoader extends FileTranslateLoader {
6849
- getTranslation(lang: string): rxjs.Observable<{}>;
6850
- }
6851
-
6852
6920
  declare function getGlobalConfig(): GlobalConfig;
6853
6921
  declare function getThemeConfig(): ThemeConfig;
6854
6922
  declare function getOptionalMapConfig(): MapConfig | null;
@@ -6859,17 +6927,7 @@ declare function getCustomTranslations(langCode: string): CustomTranslations;
6859
6927
  declare function loadAppConfig(configUrl?: string): Promise<void>;
6860
6928
  declare function isConfigLoaded(): boolean;
6861
6929
  declare function _reset(): void;
6862
- declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
6863
- compiler: {
6864
- provide: typeof TranslateCompiler;
6865
- useClass: typeof TranslateMessageFormatCompiler;
6866
- };
6867
- loader: {
6868
- provide: typeof TranslateLoader;
6869
- useFactory: (http: HttpClient) => FileWithOverridesTranslateLoader;
6870
- deps: (typeof HttpClient)[];
6871
- };
6872
- };
6930
+ declare const TRANSLATE_WITH_OVERRIDES_CONFIG: TranslateModuleConfig;
6873
6931
 
6874
6932
  declare const okAppConfigFixture: () => string;
6875
6933
  declare const appConfigWithTranslationFixture: () => string;
@@ -6882,6 +6940,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6882
6940
 
6883
6941
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6884
6942
 
6885
- 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, ContactDetailsComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, 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, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, 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, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6886
- export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, 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 };
6943
+ export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactDetailsFormComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, REUSE_LIGHT_CONFIGURATION, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, associationTypeValues, bboxToPolygon, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, createSpatialExtentLayer, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getKeywordHierarchyPath, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, sortByFromString, sortByToString, sortByToStrings, spatialExtentToGeometry, spatialExtentsToFeatureCollection, stripHtml, stripNamespace, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6944
+ export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AssociatedRecord, AssociationType, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6887
6945
  //# sourceMappingURL=index.d.ts.map