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