geonetwork-ui 2.9.0-dev.1858b96f7 → 2.9.0-dev.1e955ff0e

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 (51) hide show
  1. package/fesm2022/geonetwork-ui.mjs +676 -554
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +253 -162
  4. package/index.d.ts.map +1 -1
  5. package/package.json +7 -7
  6. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +5 -1
  7. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +8 -10
  8. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +33 -11
  9. package/src/libs/feature/editor/src/index.ts +8 -7
  10. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -1
  11. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  12. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +4 -0
  13. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +2 -2
  14. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +2 -0
  15. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +4 -4
  16. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +10 -18
  17. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +96 -9
  18. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +1 -1
  19. package/src/libs/feature/router/src/lib/default/router.module.ts +3 -3
  20. package/src/libs/feature/router/src/lib/default/router.service.ts +2 -2
  21. package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +12 -3
  22. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +34 -4
  23. package/src/libs/feature/search/src/lib/state/reducer.ts +3 -0
  24. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +9 -3
  25. package/src/libs/feature/search/src/lib/utils/service/fields.ts +5 -5
  26. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +2 -2
  27. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -3
  28. package/src/libs/ui/elements/src/lib/image-input/image-input.component.html +5 -2
  29. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +63 -56
  30. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.scss +5 -5
  31. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +11 -8
  32. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +3 -3
  33. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  34. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +1 -1
  35. package/src/libs/ui/map/src/lib/map-utils.ts +1 -1
  36. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +19 -16
  37. package/src/libs/util/app-config/src/lib/app-config.ts +8 -2
  38. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  39. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  40. package/src/libs/util/shared/src/lib/gn-ui-version.ts +5 -4
  41. package/src/libs/util/shared/src/lib/links/link-utils.ts +8 -4
  42. package/src/libs/util/shared/src/lib/services/theme.service.ts +9 -23
  43. package/tailwind.base.config.js +3 -2
  44. package/translations/de.json +5 -3
  45. package/translations/en.json +7 -5
  46. package/translations/es.json +2 -0
  47. package/translations/fr.json +7 -5
  48. package/translations/it.json +7 -5
  49. package/translations/nl.json +2 -0
  50. package/translations/pt.json +2 -0
  51. package/translations/sk.json +3 -1
package/index.d.ts CHANGED
@@ -136,6 +136,10 @@ interface Keyword {
136
136
  bbox?: [number, number, number, number];
137
137
  translations?: KeywordTranslations;
138
138
  }
139
+ interface INSPIRE_topic {
140
+ value: string;
141
+ label: string;
142
+ }
139
143
  interface ResourceIdentifier$1 {
140
144
  code: string;
141
145
  codeSpace?: string;
@@ -2019,7 +2023,6 @@ declare const LONLAT_CRS_CODES: string[];
2019
2023
 
2020
2024
  declare class ThemeService {
2021
2025
  static getColor(name: string): string;
2022
- static generateBgOpacityClasses(colorName: any, colorValue: any, opacities?: number[]): void;
2023
2026
  static applyCssVariables(primaryColor: string, secondaryColor: string, mainColor: string, backgroundColor: string, mainFont?: string, titleFont?: string, fontsStylesheetUrl?: string): void;
2024
2027
  static generateLabelColor(label: string, saturation: number, lightness: number): string;
2025
2028
  static setFavicon(faviconPath: string): void;
@@ -3507,7 +3510,7 @@ interface FieldAvailableValue {
3507
3510
  }
3508
3511
  declare abstract class AbstractSearchField {
3509
3512
  abstract getAvailableValues(): Observable<FieldAvailableValue[] | DateRange[]>;
3510
- abstract getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters>;
3513
+ abstract getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters | string>;
3511
3514
  abstract getValuesForFilter(filters: FieldFilters): Observable<FieldValue[] | FieldValue | DateRange>;
3512
3515
  abstract getType(): FieldType;
3513
3516
  }
@@ -3522,7 +3525,7 @@ declare class SimpleSearchField implements AbstractSearchField {
3522
3525
  protected getAggregations(): AggregationsParams;
3523
3526
  protected getBucketLabel(bucket: TermBucket$1): Promise<string>;
3524
3527
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3525
- getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters>;
3528
+ getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters | string>;
3526
3529
  getValuesForFilter(filters: FieldFilters): Observable<FieldValue[] | FieldValue | DateRange>;
3527
3530
  getType(): FieldType;
3528
3531
  }
@@ -3623,7 +3626,7 @@ declare class RecordKindField extends SimpleSearchField {
3623
3626
  };
3624
3627
  constructor(injector: Injector);
3625
3628
  getAvailableValues(): Observable<FieldAvailableValue[]>;
3626
- getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
3629
+ getFiltersForValues(values: FieldValue[]): Observable<FieldFilters | string>;
3627
3630
  getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
3628
3631
  }
3629
3632
 
@@ -4850,7 +4853,7 @@ declare class DataService {
4850
4853
  getDownloadLinksFromWfs(wfsLink: DatasetServiceDistribution): Observable<DatasetOnlineResource[]>;
4851
4854
  getDownloadLinksFromOgcApiFeatures(ogcApiLink: DatasetServiceDistribution): Promise<DatasetOnlineResource[]>;
4852
4855
  getDownloadUrlsFromOgcApi(url: string): Promise<OgcApiCollectionInfo>;
4853
- getItemsFromOgcApi(url: string): Promise<OgcApiRecord[]>;
4856
+ getItemsFromOgcApi(url: string, limit?: number): Promise<OgcApiRecord[]>;
4854
4857
  getItemsFromStacApi(url: string, options: GetCollectionItemsOptions): Promise<StacItemsDocument>;
4855
4858
  getGeodataLinksFromTms(tmsLink: DatasetServiceDistribution, keepOriginalLink?: boolean): Promise<DatasetServiceDistribution[]>;
4856
4859
  getDownloadLinksFromEsriRest(esriRestLink: DatasetServiceDistribution): DatasetOnlineResource[];
@@ -5094,7 +5097,7 @@ declare class MapLegendComponent implements OnChanges {
5094
5097
 
5095
5098
  declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5096
5099
  declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
5097
- declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<UIEvent>): boolean;
5100
+ declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
5098
5101
 
5099
5102
  declare class SpatialExtentComponent {
5100
5103
  set spatialExtents(value: DatasetSpatialExtent[]);
@@ -5421,12 +5424,13 @@ declare class ExternalViewerButtonComponent {
5421
5424
  private urlTemplate;
5422
5425
  private openinNewTab;
5423
5426
  link: DatasetOnlineResource;
5427
+ mimeType: string;
5424
5428
  extraClass: string;
5425
5429
  get externalViewer(): boolean;
5426
5430
  get supportedLinkLayerType(): "wms" | "wfs" | "geojson";
5427
5431
  openInExternalViewer(): void;
5428
5432
  static ɵfac: i0.ɵɵFactoryDeclaration<ExternalViewerButtonComponent, never>;
5429
- static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
5433
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExternalViewerButtonComponent, "gn-ui-external-viewer-button", never, { "link": { "alias": "link"; "required": false; }; "mimeType": { "alias": "mimeType"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
5430
5434
  }
5431
5435
 
5432
5436
  interface Label {
@@ -5544,9 +5548,12 @@ declare class MapViewComponent implements AfterViewInit {
5544
5548
  selectedLinkId$: BehaviorSubject<any>;
5545
5549
  selectedStyleId$: BehaviorSubject<any>;
5546
5550
  selectedSourceLink$: Observable<any>;
5551
+ isWmsStyleMode$: Observable<boolean>;
5547
5552
  styleLinks$: Observable<any>;
5548
5553
  styleDropdownChoices$: Observable<any>;
5554
+ selectedWmsStyleName$: Observable<string>;
5549
5555
  selectedLink$: Observable<any>;
5556
+ wmsMimeType$: Observable<string>;
5550
5557
  currentLayers$: Observable<any[]>;
5551
5558
  mapContext$: Observable<MapContext>;
5552
5559
  ngAfterViewInit(): Promise<void>;
@@ -5735,39 +5742,6 @@ interface EditorConfig {
5735
5742
  pages: EditorFieldPage[];
5736
5743
  }
5737
5744
 
5738
- declare class EditorFacade {
5739
- private readonly store;
5740
- private actions$;
5741
- record$: rxjs.Observable<CatalogRecord>;
5742
- recordSource$: rxjs.Observable<string>;
5743
- saving$: rxjs.Observable<boolean>;
5744
- saveError$: rxjs.Observable<Error>;
5745
- saveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Save record success">>;
5746
- changedSinceSave$: rxjs.Observable<boolean>;
5747
- currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
5748
- draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
5749
- currentPage$: rxjs.Observable<number>;
5750
- editorConfig$: rxjs.Observable<EditorConfig>;
5751
- hasRecordChanged$: rxjs.Observable<{
5752
- user: string;
5753
- date: Date;
5754
- }>;
5755
- isPublished$: rxjs.Observable<boolean>;
5756
- canEditRecord$: rxjs.Observable<boolean>;
5757
- openRecord(record: CatalogRecord, recordSource: string): void;
5758
- saveRecord(): void;
5759
- undoRecordDraft(): void;
5760
- updateRecordField(field: string, value: unknown): void;
5761
- updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
5762
- setCurrentPage(page: number): void;
5763
- setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
5764
- checkHasRecordChanged(record: CatalogRecord): void;
5765
- isPublished(isPublished: boolean): void;
5766
- canEditRecord(canEditRecord: boolean): void;
5767
- static ɵfac: i0.ɵɵFactoryDeclaration<EditorFacade, never>;
5768
- static ɵprov: i0.ɵɵInjectableDeclaration<EditorFacade>;
5769
- }
5770
-
5771
5745
  type SaveRecordError = Error;
5772
5746
  interface EditorFieldWithValue {
5773
5747
  config: EditorField;
@@ -5777,55 +5751,6 @@ type EditorSectionWithValues = EditorSection & {
5777
5751
  fieldsWithValues: EditorFieldWithValue[];
5778
5752
  };
5779
5753
 
5780
- declare const EDITOR_FEATURE_KEY = "editor";
5781
- /**
5782
- * @property record The record being edited
5783
- * @property recordSource Original representation of the record as text, used as a reference; null means the record hasn't be serialized yet
5784
- * @property saving
5785
- * @property saveError
5786
- * @property changedSinceSave
5787
- * @property editorConfig Configuration for the fields in the editor
5788
- */
5789
- interface EditorState {
5790
- record: CatalogRecord | null;
5791
- recordSource: string | null;
5792
- saving: boolean;
5793
- saveError: SaveRecordError | null;
5794
- changedSinceSave: boolean;
5795
- editorConfig: EditorConfig;
5796
- currentPage: number;
5797
- hasRecordChanged: {
5798
- user: string;
5799
- date: Date;
5800
- };
5801
- isPublished: boolean;
5802
- canEditRecord: boolean;
5803
- }
5804
- interface EditorPartialState {
5805
- readonly [EDITOR_FEATURE_KEY]: EditorState;
5806
- }
5807
- declare const initialEditorState: EditorState;
5808
- declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
5809
-
5810
- declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
5811
- declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
5812
- declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
5813
- declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5814
- declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
5815
- declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5816
- declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
5817
- declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
5818
- declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
5819
- declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
5820
- user: string;
5821
- date: Date;
5822
- }, (s1: EditorState) => {
5823
- user: string;
5824
- date: Date;
5825
- }>;
5826
- declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5827
- declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5828
-
5829
5754
  declare const openRecord: _ngrx_store.ActionCreator<"[Editor] Open record", (props: {
5830
5755
  record: CatalogRecord;
5831
5756
  recordSource?: string | null;
@@ -5857,6 +5782,11 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
5857
5782
  } & _ngrx_store.Action<"[Editor] Save record failure">>;
5858
5783
  declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
5859
5784
  declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
5785
+ declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
5786
+ configuration: EditorConfig;
5787
+ }) => {
5788
+ configuration: EditorConfig;
5789
+ } & _ngrx_store.Action<"[Editor] Set editor configuration">>;
5860
5790
  declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
5861
5791
  page: number;
5862
5792
  }) => {
@@ -5896,24 +5826,88 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
5896
5826
  canEditRecord: boolean;
5897
5827
  } & _ngrx_store.Action<"[Editor] User can edit record">>;
5898
5828
 
5899
- declare class FeatureEditorModule {
5900
- static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
5901
- static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
5902
- static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
5829
+ declare class EditorFacade {
5830
+ private readonly store;
5831
+ private actions$;
5832
+ record$: rxjs.Observable<CatalogRecord>;
5833
+ recordSource$: rxjs.Observable<string>;
5834
+ saving$: rxjs.Observable<boolean>;
5835
+ saveError$: rxjs.Observable<Error>;
5836
+ saveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Save record success">>;
5837
+ changedSinceSave$: rxjs.Observable<boolean>;
5838
+ currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
5839
+ draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
5840
+ currentPage$: rxjs.Observable<number>;
5841
+ editorConfig$: rxjs.Observable<EditorConfig>;
5842
+ hasRecordChanged$: rxjs.Observable<{
5843
+ user: string;
5844
+ date: Date;
5845
+ }>;
5846
+ isPublished$: rxjs.Observable<boolean>;
5847
+ canEditRecord$: rxjs.Observable<boolean>;
5848
+ openRecord(record: CatalogRecord, recordSource: string): void;
5849
+ saveRecord(): void;
5850
+ undoRecordDraft(): void;
5851
+ updateRecordField(field: string, value: unknown): void;
5852
+ updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
5853
+ setConfiguration(configuration: EditorConfig): void;
5854
+ setCurrentPage(page: number): void;
5855
+ setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
5856
+ checkHasRecordChanged(record: CatalogRecord): void;
5857
+ isPublished(isPublished: boolean): void;
5858
+ canEditRecord(canEditRecord: boolean): void;
5859
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorFacade, never>;
5860
+ static ɵprov: i0.ɵɵInjectableDeclaration<EditorFacade>;
5903
5861
  }
5904
5862
 
5905
- declare class EditorService {
5906
- private recordsRepository;
5907
- saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
5908
- saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
5909
- undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
5910
- hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
5863
+ declare const EDITOR_FEATURE_KEY = "editor";
5864
+ /**
5865
+ * @property record The record being edited
5866
+ * @property recordSource Original representation of the record as text, used as a reference; null means the record hasn't be serialized yet
5867
+ * @property saving
5868
+ * @property saveError
5869
+ * @property changedSinceSave
5870
+ * @property editorConfig Configuration for the fields in the editor
5871
+ */
5872
+ interface EditorState {
5873
+ record: CatalogRecord | null;
5874
+ recordSource: string | null;
5875
+ saving: boolean;
5876
+ saveError: SaveRecordError | null;
5877
+ changedSinceSave: boolean;
5878
+ editorConfig: EditorConfig;
5879
+ currentPage: number;
5880
+ hasRecordChanged: {
5911
5881
  user: string;
5912
5882
  date: Date;
5913
- }>;
5914
- static ɵfac: i0.ɵɵFactoryDeclaration<EditorService, never>;
5915
- static ɵprov: i0.ɵɵInjectableDeclaration<EditorService>;
5883
+ };
5884
+ isPublished: boolean;
5885
+ canEditRecord: boolean;
5916
5886
  }
5887
+ interface EditorPartialState {
5888
+ readonly [EDITOR_FEATURE_KEY]: EditorState;
5889
+ }
5890
+ declare const initialEditorState: EditorState;
5891
+ declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
5892
+
5893
+ declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
5894
+ declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
5895
+ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
5896
+ declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5897
+ declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
5898
+ declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5899
+ declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
5900
+ declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
5901
+ declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
5902
+ declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
5903
+ user: string;
5904
+ date: Date;
5905
+ }, (s1: EditorState) => {
5906
+ user: string;
5907
+ date: Date;
5908
+ }>;
5909
+ declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5910
+ declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5917
5911
 
5918
5912
  interface ImportMenuItems {
5919
5913
  label: string;
@@ -5940,14 +5934,60 @@ declare class ImportRecordComponent {
5940
5934
  static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
5941
5935
  }
5942
5936
 
5943
- declare class RecordFormComponent {
5937
+ declare class MetadataQualityPanelComponent implements OnChanges {
5938
+ propsToValidate: ValidatorMapperKeys[];
5939
+ propertiesByPage: {
5940
+ label: string;
5941
+ value: boolean;
5942
+ }[][];
5943
+ editorConfig: EditorConfig;
5944
+ record: CatalogRecord;
5945
+ ngOnChanges(): void;
5946
+ getExtraClass(checked: boolean): string;
5947
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
5948
+ static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, { "editorConfig": { "alias": "editorConfig"; "required": false; }; "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
5949
+ }
5950
+
5951
+ declare class MultilingualPanelComponent implements OnDestroy {
5944
5952
  facade: EditorFacade;
5945
- recordUniqueIdentifier$: rxjs.Observable<string>;
5946
- handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
5947
- fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
5948
- sectionTracker(index: number, section: EditorSectionWithValues): string;
5949
- static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
5950
- static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
5953
+ dialog: MatDialog;
5954
+ private translateService;
5955
+ private recordsRepository;
5956
+ private overlay;
5957
+ private viewContainerRef;
5958
+ private cdr;
5959
+ isMultilingual: boolean;
5960
+ _record: CatalogRecord;
5961
+ editTranslations: boolean;
5962
+ selectedLanguages: any[];
5963
+ recordLanguages: any[];
5964
+ formLanguage: string;
5965
+ set record(value: CatalogRecord);
5966
+ actionMenuButtons: QueryList<ElementRef>;
5967
+ private overlayRef;
5968
+ isActionMenuOpen: boolean;
5969
+ subscription: Subscription;
5970
+ supportedLanguages$: rxjs.Observable<string[]>;
5971
+ ngOnDestroy(): void;
5972
+ sortLanguages(languages: string[]): string[];
5973
+ toggleLanguageSelection(): void;
5974
+ getIconClass(lang: string): string;
5975
+ switchMultilingual(): void;
5976
+ getExtraClass(lang: string): "h-[34px] w-full font-bold justify-start hover:bg-white" | "h-[34px] w-full font-bold justify-start hover:bg-white bg-white border border-black";
5977
+ toggleLanguage(lang: string): void;
5978
+ removeSelectedLanguage(lang: string): void;
5979
+ validateTranslations(): void;
5980
+ updateTranslations(): void;
5981
+ switchFormLang(lang: any): void;
5982
+ switchDefaultLang(lang: string): void;
5983
+ confirmDeleteAction(lang?: string[] | string): void;
5984
+ isFirstUnsupported(index: number): boolean;
5985
+ isLangSupported(lang: string): boolean;
5986
+ getToggleTitle(lang: string): any;
5987
+ openActionMenu(item: string, template: any): void;
5988
+ closeActionMenu(): void;
5989
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultilingualPanelComponent, never>;
5990
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
5951
5991
  }
5952
5992
 
5953
5993
  declare class FormFieldKeywordsComponent {
@@ -6119,60 +6159,103 @@ declare class FormFieldTopicsComponent {
6119
6159
  static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
6120
6160
  }
6121
6161
 
6122
- declare class MultilingualPanelComponent implements OnDestroy {
6162
+ declare class RecordFormComponent {
6123
6163
  facade: EditorFacade;
6124
- dialog: MatDialog;
6125
- private translateService;
6126
- private recordsRepository;
6127
- private overlay;
6128
- private viewContainerRef;
6129
- private cdr;
6130
- isMultilingual: boolean;
6131
- _record: CatalogRecord;
6132
- editTranslations: boolean;
6133
- selectedLanguages: any[];
6134
- recordLanguages: any[];
6135
- formLanguage: string;
6136
- set record(value: CatalogRecord);
6137
- actionMenuButtons: QueryList<ElementRef>;
6138
- private overlayRef;
6139
- isActionMenuOpen: boolean;
6140
- subscription: Subscription;
6141
- supportedLanguages$: rxjs.Observable<string[]>;
6142
- ngOnDestroy(): void;
6143
- sortLanguages(languages: string[]): string[];
6144
- toggleLanguageSelection(): void;
6145
- getIconClass(lang: string): string;
6146
- switchMultilingual(): void;
6147
- getExtraClass(lang: string): "h-[34px] w-full font-bold justify-start hover:bg-white" | "h-[34px] w-full font-bold justify-start hover:bg-white bg-white border border-black";
6148
- toggleLanguage(lang: string): void;
6149
- removeSelectedLanguage(lang: string): void;
6150
- validateTranslations(): void;
6151
- updateTranslations(): void;
6152
- switchFormLang(lang: any): void;
6153
- switchDefaultLang(lang: string): void;
6154
- confirmDeleteAction(lang?: string[] | string): void;
6155
- isFirstUnsupported(index: number): boolean;
6156
- isLangSupported(lang: string): boolean;
6157
- getToggleTitle(lang: string): any;
6158
- openActionMenu(item: string, template: any): void;
6159
- closeActionMenu(): void;
6160
- static ɵfac: i0.ɵɵFactoryDeclaration<MultilingualPanelComponent, never>;
6161
- static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
6164
+ recordUniqueIdentifier$: rxjs.Observable<string>;
6165
+ handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6166
+ fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6167
+ sectionTracker(index: number, section: EditorSectionWithValues): string;
6168
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6169
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6162
6170
  }
6163
6171
 
6164
- declare class MetadataQualityPanelComponent implements OnChanges {
6165
- propsToValidate: ValidatorMapperKeys[];
6166
- propertiesByPage: {
6167
- label: string;
6168
- value: boolean;
6169
- }[][];
6170
- editorConfig: EditorConfig;
6171
- record: CatalogRecord;
6172
- ngOnChanges(): void;
6173
- getExtraClass(checked: boolean): string;
6174
- static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
6175
- static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, { "editorConfig": { "alias": "editorConfig"; "required": false; }; "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
6172
+ declare class FeatureEditorModule {
6173
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
6174
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
6175
+ static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6176
+ }
6177
+
6178
+ /**
6179
+ * This file contains the configuration of the fields that will be displayed in the editor.
6180
+ * To add a new field, you need to create a new EditorField object in the fields part of this file.
6181
+ * Then add it to the corresponding section in the sections part of this file.
6182
+ * Finally, add the section to the corresponding page in the pages part of this file.
6183
+ */
6184
+ /************************************************************
6185
+ *************** FIELDS *****************
6186
+ ************************************************************
6187
+ */
6188
+ declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6189
+ declare const CONSTRAINTS_SHORTCUTS: EditorField;
6190
+ declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6191
+ declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6192
+ declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6193
+ declare const RECORD_LICENSE_FIELD: EditorField;
6194
+ declare const RECORD_KEYWORDS_FIELD: EditorField;
6195
+ declare const RECORD_TOPICS_FIELD: EditorField;
6196
+ declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6197
+ declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6198
+ declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6199
+ declare const RECORD_UPDATED_FIELD: EditorField;
6200
+ declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6201
+ declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6202
+ declare const RECORD_TITLE_FIELD: EditorField;
6203
+ declare const RECORD_ABSTRACT_FIELD: EditorField;
6204
+ declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6205
+ declare const CONTACTS: EditorField;
6206
+ declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6207
+ declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6208
+ declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6209
+ declare const RECORD_ONLINE_RESOURCES: EditorField;
6210
+ declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6211
+ /************************************************************
6212
+ *************** SECTIONS *****************
6213
+ ************************************************************
6214
+ */
6215
+ declare const TITLE_SECTION: EditorSection;
6216
+ declare const ABOUT_SECTION: EditorSection;
6217
+ declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6218
+ declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6219
+ declare const ANNEXES_SECTION: EditorSection;
6220
+ declare const CLASSIFICATION_SECTION: EditorSection;
6221
+ declare const TOPICS_SECTION: EditorSection;
6222
+ declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6223
+ declare const DATA_MANAGERS_SECTION: EditorSection;
6224
+ declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6225
+ /************************************************************
6226
+ *************** PAGES *****************
6227
+ ************************************************************
6228
+ */
6229
+ declare const DEFAULT_CONFIGURATION: EditorConfig;
6230
+ /************************************************************
6231
+ *************** LICENSES **************
6232
+ ************************************************************
6233
+ */
6234
+ declare const AVAILABLE_LICENSES: string[];
6235
+ declare const OPEN_DATA_LICENSE = "etalab";
6236
+ declare const MAX_UPLOAD_SIZE_MB = 10;
6237
+ /************************************************************
6238
+ *************** SPATIAL SCOPE ************
6239
+ ************************************************************
6240
+ */
6241
+ declare const SPATIAL_SCOPES: Keyword[];
6242
+ /************************************************************
6243
+ *************** INSPIRE TOPICS **************
6244
+ ************************************************************
6245
+ */
6246
+ declare const INSPIRE_TOPICS: INSPIRE_topic[];
6247
+
6248
+ declare class EditorService {
6249
+ private recordsRepository;
6250
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
6251
+ saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6252
+ undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6253
+ hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
6254
+ user: string;
6255
+ date: Date;
6256
+ }>;
6257
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorService, never>;
6258
+ static ɵprov: i0.ɵɵInjectableDeclaration<EditorService>;
6176
6259
  }
6177
6260
 
6178
6261
  interface RouterConfigModel {
@@ -6257,6 +6340,13 @@ declare class RouterEffects {
6257
6340
  private routerService;
6258
6341
  navigate$: rxjs.Observable<RouterGoActionPayload & _ngrx_store.Action<"[Router] Go">> & _ngrx_effects.CreateEffectMetadata;
6259
6342
  syncSearchState$: rxjs.Observable<SearchActions> & _ngrx_effects.CreateEffectMetadata;
6343
+ /**
6344
+ * This effect is needed because on the page load, the search params from the URL are
6345
+ * directly applied to the underlying search facade; this means that it doesn't go
6346
+ * through the RouterSearchService which makes sure that a relevancy sort is applied
6347
+ * whenever there's a full text search criteria set.
6348
+ */
6349
+ applyInitialRelevancySort$: rxjs.Observable<SearchRouteParams> & _ngrx_effects.CreateEffectMetadata;
6260
6350
  /**
6261
6351
  * This effect will load the metadata when a navigation to
6262
6352
  * a metadata record happens
@@ -6582,6 +6672,7 @@ interface SearchConfig {
6582
6672
  RECORD_KIND_QUICK_FILTER?: boolean;
6583
6673
  FILTER_GEOMETRY_URL?: string;
6584
6674
  FILTER_GEOMETRY_DATA?: string;
6675
+ DO_NOT_USE_DEFAULT_SEARCH_PRESET?: boolean;
6585
6676
  SEARCH_PRESET?: SearchPreset[];
6586
6677
  ADVANCED_FILTERS?: [];
6587
6678
  LIMIT?: number;
@@ -6605,7 +6696,7 @@ declare function getOptionalMapConfig(): MapConfig | null;
6605
6696
  declare function getOptionalSearchConfig(): SearchConfig | null;
6606
6697
  declare function getMetadataQualityConfig(): MetadataQualityConfig;
6607
6698
  declare function getCustomTranslations(langCode: string): CustomTranslations;
6608
- declare function loadAppConfig(): Promise<void>;
6699
+ declare function loadAppConfig(configUrl?: string): Promise<void>;
6609
6700
  declare function isConfigLoaded(): boolean;
6610
6701
  declare function _reset(): void;
6611
6702
  declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
@@ -6631,6 +6722,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6631
6722
 
6632
6723
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6633
6724
 
6634
- export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, 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, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, 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, 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, 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, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6725
+ 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, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, 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, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, 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, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
6635
6726
  export type { AggregationResult, AggregationsResults, AutocompleteItem, BoundingBox, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DateRange, DropdownChoice, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldType, FieldValue, FieldValues, FileFormat, FiltersAggregationResult, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, HasPath, HistogramAggregationResult, Iso3Langs, KeywordApiResponse, Label, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, NestedAggregationResult, OrganizationsStrategy, Paginable, PropertyInfo, RecordAsXml, RecordAttachment, RecordMetric, RequestFields, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchPreset, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, SortOrder, SortParams, SourceWithUnknownProps, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UploadEvent, ValidatorMapperKeys };
6636
6727
  //# sourceMappingURL=index.d.ts.map