geonetwork-ui 2.10.0-dev.4d4299840 → 2.10.0-dev.4edf16e9b

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 (126) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1295 -6231
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +178 -171
  4. package/index.d.ts.map +1 -1
  5. package/package.json +25 -35
  6. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  7. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -5
  8. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  9. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  10. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +5 -1
  11. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +3 -0
  12. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +4 -1
  13. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -4
  14. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  15. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +12 -8
  16. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  17. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  18. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +11 -22
  19. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -5
  20. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  21. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
  22. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +51 -0
  23. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  24. package/src/libs/feature/editor/src/index.ts +1 -0
  25. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  26. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  27. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  28. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  29. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +7 -6
  30. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +10 -8
  31. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
  32. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
  33. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  34. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  35. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +4 -1
  36. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +7 -7
  37. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  38. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  39. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  40. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  41. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  42. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  43. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  44. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
  45. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +27 -16
  46. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +11 -0
  47. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
  48. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
  49. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +76 -19
  50. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  51. package/src/libs/feature/editor/src/lib/fields.config.ts +354 -337
  52. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
  53. package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -12
  54. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  55. package/src/libs/feature/notify-reuse/src/index.ts +1 -0
  56. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
  57. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
  58. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
  59. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
  60. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +210 -8
  61. package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
  62. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  63. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  64. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  65. package/src/libs/ui/dataviz/src/index.ts +0 -1
  66. package/src/libs/ui/elements/src/index.ts +1 -0
  67. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
  68. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +7 -3
  69. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
  70. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
  71. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  72. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  73. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  74. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
  75. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
  76. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  77. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
  78. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +5 -8
  79. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
  80. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  81. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  82. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
  83. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
  84. package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
  85. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  86. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  87. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  88. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
  89. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
  90. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
  91. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  92. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  93. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  94. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  95. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  96. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  97. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  98. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  99. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  100. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  101. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  102. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  103. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  104. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
  105. package/src/libs/util/app-config/src/lib/app-config.ts +21 -9
  106. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  107. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  108. package/src/libs/util/i18n/src/index.ts +0 -1
  109. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  110. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  111. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  112. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  113. package/src/libs/util/shared/src/lib/links/link-utils.ts +22 -0
  114. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  115. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  116. package/style.css +0 -1
  117. package/tailwind.base.css +15 -0
  118. package/translations/de.json +102 -49
  119. package/translations/en.json +112 -59
  120. package/translations/es.json +76 -23
  121. package/translations/fr.json +109 -56
  122. package/translations/it.json +103 -50
  123. package/translations/nl.json +75 -22
  124. package/translations/pt.json +76 -23
  125. package/translations/sk.json +76 -23
  126. 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;
@@ -437,6 +433,7 @@ type ThesaurusName = string;
437
433
  interface Thesaurus {
438
434
  id?: string;
439
435
  title?: string;
436
+ multilingualTitle?: MultilingualField;
440
437
  theme?: string;
441
438
  link?: string;
442
439
  keywords: MultilingualField[];
@@ -697,7 +694,17 @@ declare const getAsUrl: (field: any, location?: string) => URL;
697
694
  declare const mapLogo: (source: SourceWithUnknownProps) => URL;
698
695
  declare const mapOrganization: (sourceContact: SourceWithUnknownProps, lang3: string) => Organization;
699
696
  declare const mapContact: (sourceContact: SourceWithUnknownProps, lang3: string) => Individual;
700
- declare const mapKeywords: (thesauri: Thesaurus[], language: string) => any[];
697
+ interface KeywordTree {
698
+ default?: string[];
699
+ }
700
+ /**
701
+ * Resolves a keyword's ancestor path within its thesaurus tree, or null for a
702
+ * root-level keyword (no ancestors to show). Tree entries are `^`-joined label
703
+ * paths (default language); they aren't index-aligned with the keywords, so we
704
+ * match on the last segment (not by position/URI), shortest path on poly-hierarchy.
705
+ */
706
+ declare const getKeywordHierarchyPath: (keywordDefaultLabel: string, tree?: KeywordTree | null) => string[] | null;
707
+ declare const mapKeywords: (thesauri: Record<string, Thesaurus>, language: string, source?: SourceWithUnknownProps) => any[];
701
708
 
702
709
  type ESResponseSource = SourceWithUnknownProps;
703
710
  type EsFieldMapperFn = (output: Partial<CatalogRecord>, source: ESResponseSource) => Partial<CatalogRecord>;
@@ -1036,7 +1043,7 @@ declare abstract class RecordsRepositoryInterface {
1036
1043
  * @param uniqueIdentifier
1037
1044
  * @returns Observable<[CatalogRecord, string, boolean] | null>
1038
1045
  */
1039
- abstract openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1046
+ abstract openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1040
1047
  /**
1041
1048
  * This emits once:
1042
1049
  * - record object with a new unique identifier and suffixed title
@@ -1118,7 +1125,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
1118
1125
  private canEdit;
1119
1126
  canEditRecord(uniqueIdentifier: string): Observable<boolean>;
1120
1127
  canEditIndexedRecord(record: CatalogRecord): Observable<boolean>;
1121
- openRecordForEdition(uniqueIdentifier: string): Observable<[CatalogRecord, string, boolean] | null>;
1128
+ openRecordForEdition(uniqueIdentifier: string, disableDraft?: boolean): Observable<[CatalogRecord, string, boolean] | null>;
1122
1129
  openRecordForDuplication(uniqueIdentifier: string): Observable<[CatalogRecord, string, true] | null>;
1123
1130
  saveRecord(record: CatalogRecord, referenceRecordSource?: string, publishToAll?: boolean): Observable<string>;
1124
1131
  duplicateExternalRecord(recordDownloadUrl: string): Observable<string>;
@@ -2142,6 +2149,20 @@ declare function createFuzzyFilter(pattern: string): FuzzyFilter;
2142
2149
  declare function getGeometryFromGeoJSON(data: FeatureCollection | Feature | Geometry): Geometry | null;
2143
2150
  type BoundingBox = [number, number, number, number];
2144
2151
  declare function getGeometryBoundingBox(geometry: Geometry): BoundingBox;
2152
+ /**
2153
+ * Builds the closed GeoJSON Polygon matching the given bounding box.
2154
+ */
2155
+ declare function bboxToPolygon(bbox: BoundingBox): Polygon;
2156
+ /**
2157
+ * Returns the geometry carried by a spatial extent, falling back to the polygon
2158
+ * derived from its bounding box. Returns null when the extent has neither.
2159
+ */
2160
+ declare function spatialExtentToGeometry(extent: DatasetSpatialExtent): Geometry | null;
2161
+ /**
2162
+ * Converts a list of dataset spatial extents into a GeoJSON FeatureCollection,
2163
+ * e.g. to be used as the data source of a map layer.
2164
+ */
2165
+ declare function spatialExtentsToFeatureCollection(extents: DatasetSpatialExtent[]): FeatureCollection;
2145
2166
 
2146
2167
  declare function downsizeImage(blob: Blob, maxWidth: number, maxHeight: number): Promise<Blob>;
2147
2168
  declare function downgradeImage(blob: Blob, maxSizeBytes: number): Promise<Blob>;
@@ -2401,6 +2422,15 @@ declare class GnUiHumanizeDateDirective implements OnInit {
2401
2422
 
2402
2423
  declare class MapUtilsService {
2403
2424
  getRecordExtent(record: Partial<CatalogRecord>): BoundingBox;
2425
+ /**
2426
+ * Builds a non-interactive overlay layer drawing the spatial extent(s)
2427
+ * declared in the record's metadata (bounding boxes and/or geometries).
2428
+ * Returns null when the record has no usable spatial extent.
2429
+ *
2430
+ * This is purely for display and is independent from the map's initial view,
2431
+ * which is derived separately (see {@link getRecordExtent}).
2432
+ */
2433
+ getRecordExtentLayer(record: Partial<CatalogRecord>): MapContextLayer | null;
2404
2434
  static ɵfac: i0.ɵɵFactoryDeclaration<MapUtilsService, never>;
2405
2435
  static ɵprov: i0.ɵɵInjectableDeclaration<MapUtilsService>;
2406
2436
  }
@@ -2726,14 +2756,16 @@ declare class BadgeComponent {
2726
2756
  clickable?: boolean;
2727
2757
  removable?: boolean;
2728
2758
  badgeRemoveClicked: EventEmitter<void>;
2759
+ badgeClicked: EventEmitter<void>;
2729
2760
  removeBadge(): void;
2761
+ handleClick(event: MouseEvent): void;
2730
2762
  static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
2731
- static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "gn-ui-badge", never, { "clickable": { "alias": "clickable"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "badgeRemoveClicked": "badgeRemoveClicked"; }, never, ["*"], true, never>;
2763
+ 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>;
2732
2764
  }
2733
2765
 
2734
2766
  declare class ButtonComponent {
2735
2767
  private btnClass;
2736
- set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black' | 'primary-light');
2768
+ set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'gray-light' | 'black' | 'primary-light');
2737
2769
  disabled: boolean;
2738
2770
  extraClass: string;
2739
2771
  buttonClick: EventEmitter<Event>;
@@ -2844,7 +2876,7 @@ declare class DropdownMultiselectComponent {
2844
2876
  overlayPositions: ConnectedPosition[];
2845
2877
  scrollStrategy: _angular_cdk_overlay.RepositionScrollStrategy;
2846
2878
  overlayOpen: boolean;
2847
- overlayWidth: string;
2879
+ overlayMinWidth: string;
2848
2880
  overlayMaxHeight: string;
2849
2881
  id: string;
2850
2882
  get hasSelectedChoices(): boolean;
@@ -3027,20 +3059,21 @@ declare class TextAreaComponent implements AfterViewInit {
3027
3059
  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>;
3028
3060
  }
3029
3061
 
3030
- declare class TextInputComponent implements AfterViewInit {
3031
- value: string;
3032
- extraClass: string;
3033
- placeholder: string;
3034
- required: boolean;
3035
- disabled: boolean;
3036
- rawChange: Subject<string>;
3037
- valueChange: rxjs.Observable<string>;
3038
- input: any;
3039
- ngAfterViewInit(): void;
3040
- checkRequired(value: any): void;
3041
- handleChange($event: any): void;
3062
+ declare class TextInputComponent {
3063
+ value: i0.InputSignalWithTransform<string, string>;
3064
+ extraClass: i0.InputSignal<string>;
3065
+ placeholder: i0.InputSignal<string>;
3066
+ required: i0.InputSignal<boolean>;
3067
+ disabled: i0.InputSignal<boolean>;
3068
+ type: i0.InputSignalWithTransform<string, string>;
3069
+ valueChange: i0.OutputEmitterRef<string>;
3070
+ inputModel: i0.WritableSignal<string>;
3071
+ inputRef: i0.Signal<ElementRef<HTMLInputElement>>;
3072
+ isValid: i0.Signal<boolean>;
3073
+ private lastEmittedValue;
3074
+ handleChange($event: Event): void;
3042
3075
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
3043
- 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>;
3076
+ 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>;
3044
3077
  }
3045
3078
 
3046
3079
  declare class UrlInputComponent implements OnChanges {
@@ -3168,6 +3201,22 @@ declare class ResultsTableComponent {
3168
3201
  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>;
3169
3202
  }
3170
3203
 
3204
+ type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
3205
+ declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
3206
+ type InputChartType = (typeof CHART_TYPE_VALUES)[number];
3207
+ interface DatavizChartConfigModel {
3208
+ xProperty: string;
3209
+ yProperty: string;
3210
+ aggregation: AggregationTypes;
3211
+ chartType: InputChartType;
3212
+ }
3213
+ interface DatavizConfigModel {
3214
+ view: string;
3215
+ source: DatasetOnlineResource;
3216
+ chartConfig?: DatavizChartConfigModel;
3217
+ styleTMSIndex?: number;
3218
+ }
3219
+
3171
3220
  type ActionMenuPage = 'mainMenu' | 'deleteMenu' | 'rollbackMenu';
3172
3221
  declare class ActionMenuComponent {
3173
3222
  dialog: MatDialog;
@@ -3176,6 +3225,7 @@ declare class ActionMenuComponent {
3176
3225
  isDuplicating: boolean;
3177
3226
  canDelete: boolean;
3178
3227
  page: 'draft' | 'main' | 'record';
3228
+ recordKind: RecordKind;
3179
3229
  duplicate: EventEmitter<void>;
3180
3230
  delete: EventEmitter<void>;
3181
3231
  closeActionMenu: EventEmitter<void>;
@@ -3186,7 +3236,7 @@ declare class ActionMenuComponent {
3186
3236
  displayMainMenu(): void;
3187
3237
  displayDeleteMenu(): void;
3188
3238
  static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
3189
- 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>;
3239
+ 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>;
3190
3240
  }
3191
3241
 
3192
3242
  declare class AddLayerRecordPreviewComponent extends RecordPreviewComponent {
@@ -3929,7 +3979,7 @@ declare class InteractiveTableComponent {
3929
3979
  get gridStyle(): {
3930
3980
  'grid-template-columns': string;
3931
3981
  };
3932
- getItemTitle(item: CatalogRecord): "" | "editor.record.lock.resourceType" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3982
+ getItemTitle(item: CatalogRecord): "" | "editor.record.lock.harvested" | "editor.record.lock.owner";
3933
3983
  handleRowClick(item: unknown): void;
3934
3984
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
3935
3985
  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>;
@@ -4172,11 +4222,16 @@ declare class ImageInputComponent {
4172
4222
  }
4173
4223
 
4174
4224
  declare class ImageOverlayPreviewComponent {
4175
- imageUrl: string;
4176
- isPlaceholderShown: EventEmitter<boolean>;
4177
- openLightbox(src: string): void;
4225
+ imageUrl: i0.InputSignal<string>;
4226
+ isPlaceholderShown: i0.OutputEmitterRef<boolean>;
4227
+ private imageTemplate;
4228
+ private overlay;
4229
+ private viewContainerRef;
4230
+ private overlayRef;
4231
+ openLightbox(): void;
4232
+ closeLightbox(): void;
4178
4233
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
4179
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4234
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; "isSignal": true; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, true, never>;
4180
4235
  }
4181
4236
 
4182
4237
  declare class KindBadgeComponent {
@@ -4218,6 +4273,20 @@ declare class MarkdownEditorComponent {
4218
4273
  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>;
4219
4274
  }
4220
4275
 
4276
+ declare class KeywordBadgeComponent implements AfterViewInit {
4277
+ private translateService;
4278
+ keyword: Keyword;
4279
+ editable: boolean;
4280
+ keywordClick: EventEmitter<Keyword>;
4281
+ keywordRemove: EventEmitter<Keyword>;
4282
+ badgeComponent: ElementRef;
4283
+ get segments(): string[];
4284
+ get isPlaceWithoutExtent(): boolean;
4285
+ ngAfterViewInit(): void;
4286
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeywordBadgeComponent, never>;
4287
+ 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>;
4288
+ }
4289
+
4221
4290
  declare class MarkdownParserComponent {
4222
4291
  textContent: string;
4223
4292
  whitoutStyles?: boolean;
@@ -4771,22 +4840,6 @@ declare class FeatureRecordModule {
4771
4840
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureRecordModule>;
4772
4841
  }
4773
4842
 
4774
- type AggregationTypes = 'count' | 'sum' | 'min' | 'max' | 'average';
4775
- declare const CHART_TYPE_VALUES: readonly ["bar", "bar-horizontal", "line", "line-interpolated", "scatter", "pie"];
4776
- type InputChartType = (typeof CHART_TYPE_VALUES)[number];
4777
- interface DatavizChartConfigModel {
4778
- xProperty: string;
4779
- yProperty: string;
4780
- aggregation: AggregationTypes;
4781
- chartType: InputChartType;
4782
- }
4783
- interface DatavizConfigModel {
4784
- view: string;
4785
- source: DatasetOnlineResource;
4786
- chartConfig?: DatavizChartConfigModel;
4787
- styleTMSIndex?: number;
4788
- }
4789
-
4790
4843
  type DataItem = Feature;
4791
4844
  declare class FetchError {
4792
4845
  type: 'http' | 'forbidden' | 'network' | 'parse' | 'unsupportedType' | 'unknown';
@@ -4958,7 +5011,7 @@ declare class ChartViewComponent {
4958
5011
  set link(value: DatasetOnlineResource);
4959
5012
  private currentLink$;
4960
5013
  set aggregation(value: FieldAggregation[0]);
4961
- aggregation$: BehaviorSubject<"average" | "count" | "max" | "min" | "sum">;
5014
+ aggregation$: BehaviorSubject<"count" | "sum" | "min" | "max" | "average">;
4962
5015
  set xProperty(value: string);
4963
5016
  xProperty$: BehaviorSubject<string>;
4964
5017
  set yProperty(value: string);
@@ -4967,7 +5020,7 @@ declare class ChartViewComponent {
4967
5020
  chartType$: BehaviorSubject<"line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie">;
4968
5021
  set userChartConfig(config: DatavizChartConfigModel);
4969
5022
  chartConfig$: Observable<{
4970
- aggregation: "average" | "count" | "max" | "min" | "sum";
5023
+ aggregation: "count" | "sum" | "min" | "max" | "average";
4971
5024
  xProperty: string;
4972
5025
  yProperty: string;
4973
5026
  chartType: "line" | "bar" | "bar-horizontal" | "line-interpolated" | "scatter" | "pie";
@@ -5072,15 +5125,6 @@ declare class DataTableComponent implements OnInit, AfterViewInit, OnChanges {
5072
5125
  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>;
5073
5126
  }
5074
5127
 
5075
- declare const tableItemsFixture: {
5076
- items: DataItem[];
5077
- properties: PropertyInfo[];
5078
- };
5079
- declare const someHabTableItemFixture: {
5080
- items: DataItem[];
5081
- properties: PropertyInfo[];
5082
- };
5083
-
5084
5128
  declare class FigureComponent {
5085
5129
  icon: string;
5086
5130
  title: string;
@@ -5179,6 +5223,24 @@ declare class MapLegendComponent implements OnChanges {
5179
5223
  static ɵcmp: i0.ɵɵComponentDeclaration<MapLegendComponent, "gn-ui-map-legend", never, { "context": { "alias": "context"; "required": false; }; }, { "legendStatusChange": "legendStatusChange"; }, never, never, true, never>;
5180
5224
  }
5181
5225
 
5226
+ type SpatialExtentLayerStyle = NonNullable<MapContextLayerGeojson['style']>;
5227
+ /**
5228
+ * Default style for a spatial-extent layer: a solid black outline over a
5229
+ * translucent grey fill.
5230
+ */
5231
+ declare const DEFAULT_SPATIAL_EXTENT_STYLE: SpatialExtentLayerStyle;
5232
+ /**
5233
+ * Builds a GeoJSON map layer drawing the given spatial extents: each extent is
5234
+ * rendered from its own geometry or, when only a bounding box is available,
5235
+ * from a polygon derived from that box.
5236
+ *
5237
+ * @returns the layer, or `null` when none of the extents can be represented.
5238
+ */
5239
+ declare function createSpatialExtentLayer(extents: DatasetSpatialExtent[], overrides?: {
5240
+ label?: string;
5241
+ clickable?: boolean;
5242
+ style?: SpatialExtentLayerStyle;
5243
+ }): MapContextLayer | null;
5182
5244
  declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5183
5245
  declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
5184
5246
  declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
@@ -5189,7 +5251,6 @@ declare class SpatialExtentComponent {
5189
5251
  spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
5190
5252
  mapContext$: Observable<MapContext>;
5191
5253
  error: string;
5192
- bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
5193
5254
  static ɵfac: i0.ɵɵFactoryDeclaration<SpatialExtentComponent, never>;
5194
5255
  static ɵcmp: i0.ɵɵComponentDeclaration<SpatialExtentComponent, "gn-ui-spatial-extent", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
5195
5256
  }
@@ -5800,8 +5861,9 @@ interface FormFieldConfig {
5800
5861
  }
5801
5862
  type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
5802
5863
  type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
5864
+ type OnlineSingleLinkResourceSpecifier = `onlineResourceType:singleLink`;
5803
5865
  type EditableContactDetailsSpecifier = `contact:editableDetails`;
5804
- type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | EditableContactDetailsSpecifier;
5866
+ type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | OnlineSingleLinkResourceSpecifier | EditableContactDetailsSpecifier;
5805
5867
  type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
5806
5868
  interface EditorFieldIdentification {
5807
5869
  model?: CatalogRecordKeys;
@@ -5811,13 +5873,13 @@ interface EditorFieldIdentification {
5811
5873
  interface EditorField extends EditorFieldIdentification {
5812
5874
  formFieldConfig: FormFieldConfig;
5813
5875
  gridColumnSpan?: number;
5814
- hidden?: boolean;
5876
+ hidden?: boolean | EditorFieldExpression;
5815
5877
  onSaveProcess?: EditorFieldExpression;
5816
5878
  }
5817
5879
  interface EditorSection {
5818
5880
  labelKey?: string;
5819
5881
  descriptionKey?: string;
5820
- hidden: boolean;
5882
+ hidden?: boolean | EditorFieldExpression;
5821
5883
  fields: EditorField[];
5822
5884
  }
5823
5885
  interface EditorFieldPage {
@@ -5859,7 +5921,11 @@ declare const updateRecordLanguages: _ngrx_store.ActionCreator<"[Editor] Update
5859
5921
  otherLanguages: LanguageCode[];
5860
5922
  } & _ngrx_store.Action<"[Editor] Update record languages">>;
5861
5923
  declare const markRecordAsChanged: _ngrx_store.ActionCreator<"[Editor] Mark record as changed", () => _ngrx_store.Action<"[Editor] Mark record as changed">>;
5862
- declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", () => _ngrx_store.Action<"[Editor] Save record">>;
5924
+ declare const saveRecord: _ngrx_store.ActionCreator<"[Editor] Save record", (props: {
5925
+ publish: boolean;
5926
+ }) => {
5927
+ publish: boolean;
5928
+ } & _ngrx_store.Action<"[Editor] Save record">>;
5863
5929
  declare const saveRecordSuccess: _ngrx_store.ActionCreator<"[Editor] Save record success", () => _ngrx_store.Action<"[Editor] Save record success">>;
5864
5930
  declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record failure", (props: {
5865
5931
  error: SaveRecordError;
@@ -5939,6 +6005,7 @@ declare class EditorFacade {
5939
6005
  focusedField$: rxjs.Observable<CatalogRecordKeys>;
5940
6006
  openRecord(record: CatalogRecord, recordSource: string): void;
5941
6007
  saveRecord(): void;
6008
+ saveAndPublishRecord(): void;
5942
6009
  undoRecordDraft(): void;
5943
6010
  updateRecordField(field: string, value: unknown): void;
5944
6011
  updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
@@ -6002,6 +6069,15 @@ declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
6002
6069
  declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
6003
6070
  declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
6004
6071
 
6072
+ declare class ContactDetailsFormComponent {
6073
+ contact: Individual;
6074
+ contactChange: EventEmitter<Individual>;
6075
+ handleChange(change: Partial<Individual>): void;
6076
+ handleOrganizationChange(change: Partial<Organization>): void;
6077
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsFormComponent, never>;
6078
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsFormComponent, "gn-ui-contact-details-form", never, { "contact": { "alias": "contact"; "required": false; }; }, { "contactChange": "contactChange"; }, never, never, true, never>;
6079
+ }
6080
+
6005
6081
  interface ImportMenuItems {
6006
6082
  label: string;
6007
6083
  icon: string;
@@ -6088,7 +6164,7 @@ declare class MultilingualPanelComponent implements OnDestroy {
6088
6164
  declare class FieldFocusDirective {
6089
6165
  gnUiFieldFocusGlowClass: string;
6090
6166
  private el;
6091
- focusField(): void;
6167
+ focusField(focusInnerTarget?: boolean): void;
6092
6168
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
6093
6169
  static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
6094
6170
  }
@@ -6214,6 +6290,7 @@ declare class FormFieldSpatialExtentComponent {
6214
6290
 
6215
6291
  declare class FormFieldComponent {
6216
6292
  uniqueIdentifier: string;
6293
+ recordKind: RecordKind;
6217
6294
  model: CatalogRecordKeys;
6218
6295
  modelSpecifier: FieldModelSpecifier;
6219
6296
  componentName: FormFieldComponentName;
@@ -6239,7 +6316,7 @@ declare class FormFieldComponent {
6239
6316
  get valueAsResourceIdentifierCode(): string;
6240
6317
  handleResourceIdentifierChange(code: string): void;
6241
6318
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
6242
- 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: {}; }]>;
6319
+ 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: {}; }]>;
6243
6320
  }
6244
6321
 
6245
6322
  declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
@@ -6265,17 +6342,26 @@ declare class FormFieldTopicsComponent {
6265
6342
 
6266
6343
  declare class RecordFormComponent implements OnInit, OnDestroy {
6267
6344
  facade: EditorFacade;
6345
+ notifications: NotificationsService;
6268
6346
  subscription: Subscription;
6269
6347
  recordUniqueIdentifier$: rxjs.Observable<string>;
6270
- focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number]>;
6271
- formFields: i0.Signal<readonly FormFieldComponent[]>;
6272
- focusField(model: CatalogRecordKeys): void;
6348
+ recordKind$: rxjs.Observable<"dataset" | "service" | "reuse">;
6349
+ focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number, number]>;
6350
+ formFields: Signal<readonly FormFieldComponent[]>;
6351
+ sectionFocusDirectives: Signal<readonly FieldFocusDirective[]>;
6352
+ focusField(model: CatalogRecordKeys, sectionIndex: number): void;
6273
6353
  ngOnInit(): void;
6274
6354
  ngOnDestroy(): void;
6275
6355
  handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6276
6356
  fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6277
6357
  sectionTracker(index: number, section: EditorSectionWithValues): string;
6278
- getPageIndexForField(model: CatalogRecordKeys): Promise<number | null>;
6358
+ getFieldLocation(model: CatalogRecordKeys): Promise<{
6359
+ page: number;
6360
+ section: number;
6361
+ } | null>;
6362
+ private recordSignal;
6363
+ private expressionCache;
6364
+ evaluateExpression(expressionOrValue: string | EditorFieldValue): Signal<EditorFieldValue>;
6279
6365
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6280
6366
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6281
6367
  }
@@ -6355,79 +6441,24 @@ declare class FeatureEditorModule {
6355
6441
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6356
6442
  }
6357
6443
 
6358
- /**
6359
- * This file contains the configuration of the fields that will be displayed in the editor.
6360
- * To add a new field, you need to create a new EditorField object in the fields part of this file.
6361
- * Then add it to the corresponding section in the sections part of this file.
6362
- * Finally, add the section to the corresponding page in the pages part of this file.
6363
- */
6364
- /************************************************************
6365
- *************** FIELDS *****************
6366
- ************************************************************
6367
- */
6368
- declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6369
- declare const CONSTRAINTS_SHORTCUTS: EditorField;
6370
- declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6371
- declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6372
- declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6373
- declare const RECORD_LICENSE_FIELD: EditorField;
6374
- declare const RECORD_KEYWORDS_FIELD: EditorField;
6375
- declare const RECORD_TOPICS_FIELD: EditorField;
6376
- declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6377
- declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6378
- declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6379
- declare const RECORD_UPDATED_FIELD: EditorField;
6380
- declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6381
- declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6382
- declare const RECORD_TITLE_FIELD: EditorField;
6383
- declare const RECORD_ABSTRACT_FIELD: EditorField;
6384
- declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6385
- declare const CONTACTS: EditorField;
6386
- declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6387
- declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6388
- declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6389
- declare const RECORD_ONLINE_RESOURCES: EditorField;
6390
- declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6391
- /************************************************************
6392
- *************** SECTIONS *****************
6393
- ************************************************************
6394
- */
6395
- declare const TITLE_SECTION: EditorSection;
6396
- declare const ABOUT_SECTION: EditorSection;
6397
- declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6398
- declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6399
- declare const ANNEXES_SECTION: EditorSection;
6400
- declare const CLASSIFICATION_SECTION: EditorSection;
6401
- declare const TOPICS_SECTION: EditorSection;
6402
- declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6403
- declare const DATA_MANAGERS_SECTION: EditorSection;
6404
- declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6405
- /************************************************************
6406
- *************** PAGES *****************
6407
- ************************************************************
6408
- */
6444
+ interface ISOTopic {
6445
+ value: string;
6446
+ label: string;
6447
+ }
6409
6448
  declare const DEFAULT_CONFIGURATION: EditorConfig$1;
6410
- /************************************************************
6411
- *************** LICENSES **************
6412
- ************************************************************
6449
+ declare const REUSE_LIGHT_CONFIGURATION: EditorConfig$1;
6450
+ /**
6451
+ * OTHER SETTINGS
6413
6452
  */
6414
6453
  declare const AVAILABLE_LICENSES: string[];
6415
6454
  declare const OPEN_DATA_LICENSE = "etalab";
6416
6455
  declare const MAX_UPLOAD_SIZE_MB = 10;
6417
- /************************************************************
6418
- *************** SPATIAL SCOPE ************
6419
- ************************************************************
6420
- */
6421
6456
  declare const SPATIAL_SCOPES: Keyword[];
6422
- /************************************************************
6423
- *************** INSPIRE TOPICS **************
6424
- ************************************************************
6425
- */
6426
- declare const INSPIRE_TOPICS: INSPIRE_topic[];
6457
+ declare const ISO_TOPICS: ISOTopic[];
6427
6458
 
6428
6459
  declare class EditorService {
6429
6460
  private recordsRepository;
6430
- saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1): Observable<[CatalogRecord, string]>;
6461
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1, publish: boolean): Observable<[CatalogRecord, string]>;
6431
6462
  saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6432
6463
  undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6433
6464
  hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
@@ -6622,7 +6653,7 @@ declare class PopoverComponent implements AfterViewInit, OnChanges, OnDestroy {
6622
6653
  private renderer;
6623
6654
  popoverContent: ElementRef;
6624
6655
  content: string | TemplateRef<any>;
6625
- theme: 'light' | 'light-border' | 'translucent' | 'material' | '';
6656
+ theme: 'light' | 'light-border' | 'translucent' | 'material' | 'dark' | '';
6626
6657
  private tippyInstance;
6627
6658
  private view;
6628
6659
  private getContent;
@@ -6667,17 +6698,8 @@ declare class SpinningLoaderComponent {
6667
6698
 
6668
6699
  declare function provideI18n(config?: TranslateModuleConfig, useLocalStorage?: boolean): EnvironmentProviders;
6669
6700
 
6670
- /**
6671
- * This loader will rely on JSON files in the app assets
6672
- * Implements a fallback on default lang if translated labels are empty
6673
- */
6674
- declare class FileTranslateLoader extends TranslateHttpLoader {
6675
- getTranslation(lang: string): rxjs.Observable<{}>;
6676
- }
6677
-
6678
6701
  declare const DEFAULT_LANG = "en";
6679
6702
  declare const LANGUAGE_STORAGE_KEY = "geonetwork-ui-language";
6680
- declare function HttpLoaderFactory(http: HttpClient): FileTranslateLoader;
6681
6703
  declare const TRANSLATE_DEFAULT_CONFIG: TranslateModuleConfig;
6682
6704
  /**
6683
6705
  * This config will print translation keys in the UI directly; used to identify which keys are used
@@ -6691,8 +6713,12 @@ declare class I18nInterceptor implements HttpInterceptor {
6691
6713
  static ɵprov: i0.ɵɵInjectableDeclaration<I18nInterceptor>;
6692
6714
  }
6693
6715
 
6694
- declare class EmbeddedTranslateLoader implements TranslateLoader {
6695
- getTranslation(lang: string): Observable<Record<string, string>>;
6716
+ /**
6717
+ * This loader will rely on JSON files in the app assets
6718
+ * Implements a fallback on default lang if translated labels are empty
6719
+ */
6720
+ declare class FileTranslateLoader extends TranslateHttpLoader {
6721
+ getTranslation(lang: string): rxjs.Observable<{}>;
6696
6722
  }
6697
6723
 
6698
6724
  declare function dropEmptyTranslations(translations: any): {};
@@ -6867,15 +6893,6 @@ interface SearchConfig {
6867
6893
  FILTER_GEOMETRY?: Geometry;
6868
6894
  }
6869
6895
 
6870
- /**
6871
- * This loader extends the default one based on JSON files but also loads custom translations
6872
- * defined in the app configuration
6873
- * Implements a fallback on default lang if translated labels are empty
6874
- */
6875
- declare class FileWithOverridesTranslateLoader extends FileTranslateLoader {
6876
- getTranslation(lang: string): rxjs.Observable<{}>;
6877
- }
6878
-
6879
6896
  declare function getGlobalConfig(): GlobalConfig;
6880
6897
  declare function getThemeConfig(): ThemeConfig;
6881
6898
  declare function getOptionalMapConfig(): MapConfig | null;
@@ -6886,17 +6903,7 @@ declare function getCustomTranslations(langCode: string): CustomTranslations;
6886
6903
  declare function loadAppConfig(configUrl?: string): Promise<void>;
6887
6904
  declare function isConfigLoaded(): boolean;
6888
6905
  declare function _reset(): void;
6889
- declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
6890
- compiler: {
6891
- provide: typeof TranslateCompiler;
6892
- useClass: typeof TranslateMessageFormatCompiler;
6893
- };
6894
- loader: {
6895
- provide: typeof TranslateLoader;
6896
- useFactory: (http: HttpClient) => FileWithOverridesTranslateLoader;
6897
- deps: (typeof HttpClient)[];
6898
- };
6899
- };
6906
+ declare const TRANSLATE_WITH_OVERRIDES_CONFIG: TranslateModuleConfig;
6900
6907
 
6901
6908
  declare const okAppConfigFixture: () => string;
6902
6909
  declare const appConfigWithTranslationFixture: () => string;
@@ -6909,6 +6916,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6909
6916
 
6910
6917
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6911
6918
 
6912
- 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_RECORD_CONVERTER, 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 };
6913
- 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, 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, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6919
+ export { ADD_RESULTS, ADD_SEARCH, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactDetailsFormComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DEFAULT_SPATIAL_EXTENT_STYLE, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, I18nInterceptor, ISO_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KeywordBadgeComponent, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, REUSE_LIGHT_CONFIGURATION, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, bboxToPolygon, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, createSpatialExtentLayer, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getKeywordHierarchyPath, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, sortByFromString, sortByToString, sortByToStrings, spatialExtentToGeometry, spatialExtentsToFeatureCollection, stripHtml, stripNamespace, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6920
+ export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, ISOTopic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, KeywordTree, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentLayerStyle, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
6914
6921
  //# sourceMappingURL=index.d.ts.map