geonetwork-ui 2.8.2-dev.fa42c5152 → 2.9.0-dev.083d7682e

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 (30) hide show
  1. package/fesm2022/geonetwork-ui.mjs +505 -506
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +236 -156
  4. package/index.d.ts.map +1 -1
  5. package/package.json +1 -1
  6. package/src/libs/common/domain/src/index.ts +1 -0
  7. package/src/libs/feature/editor/src/index.ts +8 -7
  8. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -1
  9. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  10. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +4 -0
  11. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +2 -2
  12. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +4 -4
  13. package/src/libs/feature/router/src/lib/default/router.module.ts +3 -3
  14. package/src/libs/feature/router/src/lib/default/router.service.ts +2 -2
  15. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +2 -2
  16. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -3
  17. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +10 -7
  18. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  19. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +1 -1
  20. package/src/libs/util/app-config/src/lib/app-config.ts +8 -2
  21. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  22. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  23. package/src/libs/util/shared/src/lib/gn-ui-version.ts +5 -4
  24. package/src/libs/util/shared/src/lib/services/theme.service.ts +9 -23
  25. package/tailwind.base.config.js +3 -2
  26. package/translations/de.json +2 -2
  27. package/translations/en.json +5 -5
  28. package/translations/fr.json +5 -5
  29. package/translations/it.json +5 -5
  30. package/translations/sk.json +1 -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;
@@ -5735,39 +5738,6 @@ interface EditorConfig {
5735
5738
  pages: EditorFieldPage[];
5736
5739
  }
5737
5740
 
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
5741
  type SaveRecordError = Error;
5772
5742
  interface EditorFieldWithValue {
5773
5743
  config: EditorField;
@@ -5777,55 +5747,6 @@ type EditorSectionWithValues = EditorSection & {
5777
5747
  fieldsWithValues: EditorFieldWithValue[];
5778
5748
  };
5779
5749
 
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
5750
  declare const openRecord: _ngrx_store.ActionCreator<"[Editor] Open record", (props: {
5830
5751
  record: CatalogRecord;
5831
5752
  recordSource?: string | null;
@@ -5857,6 +5778,11 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
5857
5778
  } & _ngrx_store.Action<"[Editor] Save record failure">>;
5858
5779
  declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
5859
5780
  declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
5781
+ declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
5782
+ configuration: EditorConfig;
5783
+ }) => {
5784
+ configuration: EditorConfig;
5785
+ } & _ngrx_store.Action<"[Editor] Set editor configuration">>;
5860
5786
  declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
5861
5787
  page: number;
5862
5788
  }) => {
@@ -5896,24 +5822,88 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
5896
5822
  canEditRecord: boolean;
5897
5823
  } & _ngrx_store.Action<"[Editor] User can edit record">>;
5898
5824
 
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>;
5825
+ declare class EditorFacade {
5826
+ private readonly store;
5827
+ private actions$;
5828
+ record$: rxjs.Observable<CatalogRecord>;
5829
+ recordSource$: rxjs.Observable<string>;
5830
+ saving$: rxjs.Observable<boolean>;
5831
+ saveError$: rxjs.Observable<Error>;
5832
+ saveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Save record success">>;
5833
+ changedSinceSave$: rxjs.Observable<boolean>;
5834
+ currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
5835
+ draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
5836
+ currentPage$: rxjs.Observable<number>;
5837
+ editorConfig$: rxjs.Observable<EditorConfig>;
5838
+ hasRecordChanged$: rxjs.Observable<{
5839
+ user: string;
5840
+ date: Date;
5841
+ }>;
5842
+ isPublished$: rxjs.Observable<boolean>;
5843
+ canEditRecord$: rxjs.Observable<boolean>;
5844
+ openRecord(record: CatalogRecord, recordSource: string): void;
5845
+ saveRecord(): void;
5846
+ undoRecordDraft(): void;
5847
+ updateRecordField(field: string, value: unknown): void;
5848
+ updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
5849
+ setConfiguration(configuration: EditorConfig): void;
5850
+ setCurrentPage(page: number): void;
5851
+ setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
5852
+ checkHasRecordChanged(record: CatalogRecord): void;
5853
+ isPublished(isPublished: boolean): void;
5854
+ canEditRecord(canEditRecord: boolean): void;
5855
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorFacade, never>;
5856
+ static ɵprov: i0.ɵɵInjectableDeclaration<EditorFacade>;
5903
5857
  }
5904
5858
 
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<{
5859
+ declare const EDITOR_FEATURE_KEY = "editor";
5860
+ /**
5861
+ * @property record The record being edited
5862
+ * @property recordSource Original representation of the record as text, used as a reference; null means the record hasn't be serialized yet
5863
+ * @property saving
5864
+ * @property saveError
5865
+ * @property changedSinceSave
5866
+ * @property editorConfig Configuration for the fields in the editor
5867
+ */
5868
+ interface EditorState {
5869
+ record: CatalogRecord | null;
5870
+ recordSource: string | null;
5871
+ saving: boolean;
5872
+ saveError: SaveRecordError | null;
5873
+ changedSinceSave: boolean;
5874
+ editorConfig: EditorConfig;
5875
+ currentPage: number;
5876
+ hasRecordChanged: {
5911
5877
  user: string;
5912
5878
  date: Date;
5913
- }>;
5914
- static ɵfac: i0.ɵɵFactoryDeclaration<EditorService, never>;
5915
- static ɵprov: i0.ɵɵInjectableDeclaration<EditorService>;
5879
+ };
5880
+ isPublished: boolean;
5881
+ canEditRecord: boolean;
5916
5882
  }
5883
+ interface EditorPartialState {
5884
+ readonly [EDITOR_FEATURE_KEY]: EditorState;
5885
+ }
5886
+ declare const initialEditorState: EditorState;
5887
+ declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
5888
+
5889
+ declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
5890
+ declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
5891
+ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
5892
+ declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5893
+ declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
5894
+ declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5895
+ declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
5896
+ declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
5897
+ declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
5898
+ declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
5899
+ user: string;
5900
+ date: Date;
5901
+ }, (s1: EditorState) => {
5902
+ user: string;
5903
+ date: Date;
5904
+ }>;
5905
+ declare const selectIsPublished: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5906
+ declare const selectCanEditRecord: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
5917
5907
 
5918
5908
  interface ImportMenuItems {
5919
5909
  label: string;
@@ -5940,14 +5930,60 @@ declare class ImportRecordComponent {
5940
5930
  static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
5941
5931
  }
5942
5932
 
5943
- declare class RecordFormComponent {
5933
+ declare class MetadataQualityPanelComponent implements OnChanges {
5934
+ propsToValidate: ValidatorMapperKeys[];
5935
+ propertiesByPage: {
5936
+ label: string;
5937
+ value: boolean;
5938
+ }[][];
5939
+ editorConfig: EditorConfig;
5940
+ record: CatalogRecord;
5941
+ ngOnChanges(): void;
5942
+ getExtraClass(checked: boolean): string;
5943
+ static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
5944
+ 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>;
5945
+ }
5946
+
5947
+ declare class MultilingualPanelComponent implements OnDestroy {
5944
5948
  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>;
5949
+ dialog: MatDialog;
5950
+ private translateService;
5951
+ private recordsRepository;
5952
+ private overlay;
5953
+ private viewContainerRef;
5954
+ private cdr;
5955
+ isMultilingual: boolean;
5956
+ _record: CatalogRecord;
5957
+ editTranslations: boolean;
5958
+ selectedLanguages: any[];
5959
+ recordLanguages: any[];
5960
+ formLanguage: string;
5961
+ set record(value: CatalogRecord);
5962
+ actionMenuButtons: QueryList<ElementRef>;
5963
+ private overlayRef;
5964
+ isActionMenuOpen: boolean;
5965
+ subscription: Subscription;
5966
+ supportedLanguages$: rxjs.Observable<string[]>;
5967
+ ngOnDestroy(): void;
5968
+ sortLanguages(languages: string[]): string[];
5969
+ toggleLanguageSelection(): void;
5970
+ getIconClass(lang: string): string;
5971
+ switchMultilingual(): void;
5972
+ 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";
5973
+ toggleLanguage(lang: string): void;
5974
+ removeSelectedLanguage(lang: string): void;
5975
+ validateTranslations(): void;
5976
+ updateTranslations(): void;
5977
+ switchFormLang(lang: any): void;
5978
+ switchDefaultLang(lang: string): void;
5979
+ confirmDeleteAction(lang?: string[] | string): void;
5980
+ isFirstUnsupported(index: number): boolean;
5981
+ isLangSupported(lang: string): boolean;
5982
+ getToggleTitle(lang: string): any;
5983
+ openActionMenu(item: string, template: any): void;
5984
+ closeActionMenu(): void;
5985
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultilingualPanelComponent, never>;
5986
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
5951
5987
  }
5952
5988
 
5953
5989
  declare class FormFieldKeywordsComponent {
@@ -6119,60 +6155,103 @@ declare class FormFieldTopicsComponent {
6119
6155
  static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
6120
6156
  }
6121
6157
 
6122
- declare class MultilingualPanelComponent implements OnDestroy {
6158
+ declare class RecordFormComponent {
6123
6159
  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>;
6160
+ recordUniqueIdentifier$: rxjs.Observable<string>;
6161
+ handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
6162
+ fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
6163
+ sectionTracker(index: number, section: EditorSectionWithValues): string;
6164
+ static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
6165
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
6162
6166
  }
6163
6167
 
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>;
6168
+ declare class FeatureEditorModule {
6169
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
6170
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
6171
+ static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
6172
+ }
6173
+
6174
+ /**
6175
+ * This file contains the configuration of the fields that will be displayed in the editor.
6176
+ * To add a new field, you need to create a new EditorField object in the fields part of this file.
6177
+ * Then add it to the corresponding section in the sections part of this file.
6178
+ * Finally, add the section to the corresponding page in the pages part of this file.
6179
+ */
6180
+ /************************************************************
6181
+ *************** FIELDS *****************
6182
+ ************************************************************
6183
+ */
6184
+ declare const RECORD_UNIQUE_IDENTIFIER_FIELD: EditorField;
6185
+ declare const CONSTRAINTS_SHORTCUTS: EditorField;
6186
+ declare const LEGAL_CONSTRAINTS_FIELD: EditorField;
6187
+ declare const SECURITY_CONSTRAINTS_FIELD: EditorField;
6188
+ declare const OTHER_CONSTRAINTS_FIELD: EditorField;
6189
+ declare const RECORD_LICENSE_FIELD: EditorField;
6190
+ declare const RECORD_KEYWORDS_FIELD: EditorField;
6191
+ declare const RECORD_TOPICS_FIELD: EditorField;
6192
+ declare const RECORD_RESOURCE_CREATED_FIELD: EditorField;
6193
+ declare const RESOURCE_IDENTIFIER_FIELD: EditorField;
6194
+ declare const RECORD_RESOURCE_UPDATED_FIELD: EditorField;
6195
+ declare const RECORD_UPDATED_FIELD: EditorField;
6196
+ declare const RECORD_UPDATE_FREQUENCY_FIELD: EditorField;
6197
+ declare const RECORD_TEMPORAL_EXTENTS_FIELD: EditorField;
6198
+ declare const RECORD_TITLE_FIELD: EditorField;
6199
+ declare const RECORD_ABSTRACT_FIELD: EditorField;
6200
+ declare const CONTACTS_FOR_RESOURCE_FIELD: EditorField;
6201
+ declare const CONTACTS: EditorField;
6202
+ declare const RECORD_GRAPHICAL_OVERVIEW_FIELD: EditorField;
6203
+ declare const RECORD_SPATIAL_TOGGLE_FIELD: EditorField;
6204
+ declare const RECORD_SPATIAL_EXTENTS_FIELD: EditorField;
6205
+ declare const RECORD_ONLINE_RESOURCES: EditorField;
6206
+ declare const RECORD_ONLINE_LINK_RESOURCES: EditorField;
6207
+ /************************************************************
6208
+ *************** SECTIONS *****************
6209
+ ************************************************************
6210
+ */
6211
+ declare const TITLE_SECTION: EditorSection;
6212
+ declare const ABOUT_SECTION: EditorSection;
6213
+ declare const GEOGRAPHICAL_COVERAGE_SECTION: EditorSection;
6214
+ declare const ASSOCIATED_RESOURCES_SECTION: EditorSection;
6215
+ declare const ANNEXES_SECTION: EditorSection;
6216
+ declare const CLASSIFICATION_SECTION: EditorSection;
6217
+ declare const TOPICS_SECTION: EditorSection;
6218
+ declare const USE_AND_ACCESS_CONDITIONS_SECTION: EditorSection;
6219
+ declare const DATA_MANAGERS_SECTION: EditorSection;
6220
+ declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
6221
+ /************************************************************
6222
+ *************** PAGES *****************
6223
+ ************************************************************
6224
+ */
6225
+ declare const DEFAULT_CONFIGURATION: EditorConfig;
6226
+ /************************************************************
6227
+ *************** LICENSES **************
6228
+ ************************************************************
6229
+ */
6230
+ declare const AVAILABLE_LICENSES: string[];
6231
+ declare const OPEN_DATA_LICENSE = "etalab";
6232
+ declare const MAX_UPLOAD_SIZE_MB = 10;
6233
+ /************************************************************
6234
+ *************** SPATIAL SCOPE ************
6235
+ ************************************************************
6236
+ */
6237
+ declare const SPATIAL_SCOPES: Keyword[];
6238
+ /************************************************************
6239
+ *************** INSPIRE TOPICS **************
6240
+ ************************************************************
6241
+ */
6242
+ declare const INSPIRE_TOPICS: INSPIRE_topic[];
6243
+
6244
+ declare class EditorService {
6245
+ private recordsRepository;
6246
+ saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
6247
+ saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
6248
+ undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
6249
+ hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
6250
+ user: string;
6251
+ date: Date;
6252
+ }>;
6253
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditorService, never>;
6254
+ static ɵprov: i0.ɵɵInjectableDeclaration<EditorService>;
6176
6255
  }
6177
6256
 
6178
6257
  interface RouterConfigModel {
@@ -6582,6 +6661,7 @@ interface SearchConfig {
6582
6661
  RECORD_KIND_QUICK_FILTER?: boolean;
6583
6662
  FILTER_GEOMETRY_URL?: string;
6584
6663
  FILTER_GEOMETRY_DATA?: string;
6664
+ DO_NOT_USE_DEFAULT_SEARCH_PRESET?: boolean;
6585
6665
  SEARCH_PRESET?: SearchPreset[];
6586
6666
  ADVANCED_FILTERS?: [];
6587
6667
  LIMIT?: number;
@@ -6605,7 +6685,7 @@ declare function getOptionalMapConfig(): MapConfig | null;
6605
6685
  declare function getOptionalSearchConfig(): SearchConfig | null;
6606
6686
  declare function getMetadataQualityConfig(): MetadataQualityConfig;
6607
6687
  declare function getCustomTranslations(langCode: string): CustomTranslations;
6608
- declare function loadAppConfig(): Promise<void>;
6688
+ declare function loadAppConfig(configUrl?: string): Promise<void>;
6609
6689
  declare function isConfigLoaded(): boolean;
6610
6690
  declare function _reset(): void;
6611
6691
  declare const TRANSLATE_WITH_OVERRIDES_CONFIG: {
@@ -6631,6 +6711,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
6631
6711
 
6632
6712
  declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
6633
6713
 
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, 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 };
6714
+ 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
6715
  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
6716
  //# sourceMappingURL=index.d.ts.map