geonetwork-ui 2.10.0-dev.e40bfbf0e → 2.10.0-dev.e67ae7320
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 +1401 -934
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +124 -30
- package/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +68 -34
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +46 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +11 -0
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +5 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +0 -1
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +10 -1
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +38 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +33 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +37 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +59 -3
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +4 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
- package/src/libs/feature/notify-reuse/src/index.ts +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
- package/src/libs/ui/elements/src/index.ts +2 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +96 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +37 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
- package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +28 -67
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +11 -10
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +49 -0
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/tailwind.base.css +11 -2
- package/translations/de.json +10 -1
- package/translations/en.json +10 -1
- package/translations/es.json +10 -1
- package/translations/fr.json +10 -1
- package/translations/it.json +10 -1
- package/translations/nl.json +10 -1
- package/translations/pt.json +10 -1
- package/translations/sk.json +10 -1
package/index.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ import * as i2 from '@ngrx/router-store';
|
|
|
32
32
|
import * as _angular_router from '@angular/router';
|
|
33
33
|
import { Router, QueryParamsHandling, Routes } from '@angular/router';
|
|
34
34
|
import Collection from 'ol/Collection.js';
|
|
35
|
-
import {
|
|
35
|
+
import { DragPan, MouseWheelZoom, Interaction } from 'ol/interaction.js';
|
|
36
36
|
import MapBrowserEvent from 'ol/MapBrowserEvent.js';
|
|
37
37
|
import * as chart_js from 'chart.js';
|
|
38
38
|
import { Chart, ChartType, ChartData, ChartOptions } from 'chart.js';
|
|
@@ -229,10 +229,19 @@ interface DatasetTemporalExtent {
|
|
|
229
229
|
start: Date;
|
|
230
230
|
end?: Date;
|
|
231
231
|
}
|
|
232
|
+
/**
|
|
233
|
+
* Represents a source dataset referenced from a lineage entry.
|
|
234
|
+
*/
|
|
235
|
+
interface SourceRecord {
|
|
236
|
+
uuid?: string;
|
|
237
|
+
title?: string;
|
|
238
|
+
href?: string;
|
|
239
|
+
}
|
|
232
240
|
interface DatasetRecord extends BaseRecord {
|
|
233
241
|
kind: 'dataset';
|
|
234
242
|
status: RecordStatus;
|
|
235
243
|
lineage: string;
|
|
244
|
+
sourceRecords: Array<SourceRecord>;
|
|
236
245
|
onlineResources: Array<DatasetOnlineResource>;
|
|
237
246
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
238
247
|
temporalExtents: Array<DatasetTemporalExtent>;
|
|
@@ -256,6 +265,7 @@ interface ServiceRecord extends BaseRecord {
|
|
|
256
265
|
interface ReuseRecord extends BaseRecord {
|
|
257
266
|
kind: 'reuse';
|
|
258
267
|
lineage: string;
|
|
268
|
+
sourceRecords: Array<SourceRecord>;
|
|
259
269
|
onlineResources: Array<DatasetOnlineResource>;
|
|
260
270
|
reuseType: ReuseType;
|
|
261
271
|
spatialExtents: Array<DatasetSpatialExtent>;
|
|
@@ -1076,6 +1086,8 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1076
1086
|
}
|
|
1077
1087
|
|
|
1078
1088
|
type RecordAsXml = string;
|
|
1089
|
+
declare const DISABLE_DRAFT: InjectionToken<boolean>;
|
|
1090
|
+
declare const DEFAULT_RECORD_CONVERTER: InjectionToken<BaseConverter<string>>;
|
|
1079
1091
|
declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
1080
1092
|
private httpClient;
|
|
1081
1093
|
private gn4SearchApi;
|
|
@@ -1085,6 +1097,8 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1085
1097
|
private platformService;
|
|
1086
1098
|
private gn4LanguagesApi;
|
|
1087
1099
|
private settingsService;
|
|
1100
|
+
private disableDraft;
|
|
1101
|
+
private defaultConverter;
|
|
1088
1102
|
_draftsChanged: Subject<void>;
|
|
1089
1103
|
draftsChanged$: Observable<void>;
|
|
1090
1104
|
search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
|
|
@@ -1744,6 +1758,15 @@ interface UserModel {
|
|
|
1744
1758
|
profileIcon?: string;
|
|
1745
1759
|
}
|
|
1746
1760
|
|
|
1761
|
+
interface GroupModel {
|
|
1762
|
+
groupId: number;
|
|
1763
|
+
groupName: string;
|
|
1764
|
+
isMember: boolean;
|
|
1765
|
+
canEdit: boolean;
|
|
1766
|
+
canApprove: boolean;
|
|
1767
|
+
canAdministrate: boolean;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1747
1770
|
interface RecordAttachment {
|
|
1748
1771
|
url: URL;
|
|
1749
1772
|
fileName: string;
|
|
@@ -1763,6 +1786,7 @@ declare abstract class PlatformServiceInterface {
|
|
|
1763
1786
|
abstract getMe(): Observable<UserModel>;
|
|
1764
1787
|
abstract isAnonymous(): Observable<boolean>;
|
|
1765
1788
|
abstract getUsers(): Observable<UserModel[]>;
|
|
1789
|
+
abstract getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1766
1790
|
abstract getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1767
1791
|
abstract getOrganizations(): Observable<Organization[]>;
|
|
1768
1792
|
abstract translateKey(key: string): Observable<string>;
|
|
@@ -1913,6 +1937,7 @@ declare class SelectionService {
|
|
|
1913
1937
|
|
|
1914
1938
|
interface Gn4ProvideOptions {
|
|
1915
1939
|
disableAuth?: boolean;
|
|
1940
|
+
disableDraft?: boolean;
|
|
1916
1941
|
}
|
|
1917
1942
|
declare function provideGn4(provideOptions?: Gn4ProvideOptions): Provider[];
|
|
1918
1943
|
|
|
@@ -1920,6 +1945,7 @@ declare const DISABLE_AUTH: InjectionToken<boolean>;
|
|
|
1920
1945
|
declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
1921
1946
|
private meApi;
|
|
1922
1947
|
private usersApi;
|
|
1948
|
+
private groupsApi;
|
|
1923
1949
|
private mapper;
|
|
1924
1950
|
private toolsApiService;
|
|
1925
1951
|
private registriesApiService;
|
|
@@ -1951,6 +1977,7 @@ declare class Gn4PlatformService implements PlatformServiceInterface {
|
|
|
1951
1977
|
getOrganizations(): Observable<Organization[]>;
|
|
1952
1978
|
getUsersByOrganization(organisation: Organization): Observable<UserModel[]>;
|
|
1953
1979
|
getUsers(): Observable<UserModel[]>;
|
|
1980
|
+
getUserPermissionsByGroup(): Observable<GroupModel[]>;
|
|
1954
1981
|
translateKey(key: string): Observable<string>;
|
|
1955
1982
|
private allThesaurus$;
|
|
1956
1983
|
searchKeywords(query: string, keywordTypes: KeywordType[]): Observable<Keyword[]>;
|
|
@@ -2162,6 +2189,10 @@ declare function getTemporalRangeUnion(ranges: {
|
|
|
2162
2189
|
*/
|
|
2163
2190
|
declare function removeSearchParams(url: string, searchParams: string[]): string;
|
|
2164
2191
|
|
|
2192
|
+
declare function getIndividualDisplayName(individual: Individual): string;
|
|
2193
|
+
declare function getAddressLines(address: string | undefined): string[];
|
|
2194
|
+
declare function toIndividual(user: UserModel): Individual;
|
|
2195
|
+
|
|
2165
2196
|
declare const FORMATS: {
|
|
2166
2197
|
readonly csv: {
|
|
2167
2198
|
readonly extensions: readonly ["csv"];
|
|
@@ -2339,8 +2370,12 @@ declare class ImageFallbackDirective {
|
|
|
2339
2370
|
declare const GEONETWORK_UI_VERSION: string;
|
|
2340
2371
|
declare const GEONETWORK_UI_TAG_NAME: string;
|
|
2341
2372
|
|
|
2373
|
+
type TValidatorEntry = {
|
|
2374
|
+
validator: (metadata: Partial<CatalogRecord>) => boolean;
|
|
2375
|
+
alias?: string;
|
|
2376
|
+
};
|
|
2342
2377
|
type TValidatorMapper = {
|
|
2343
|
-
[key: string]:
|
|
2378
|
+
[key: string]: TValidatorEntry;
|
|
2344
2379
|
};
|
|
2345
2380
|
declare const ValidatorMapper: TValidatorMapper;
|
|
2346
2381
|
type ValidatorMapperKeys = keyof typeof ValidatorMapper & string;
|
|
@@ -2348,6 +2383,7 @@ declare function getAllKeysValidator(): string[];
|
|
|
2348
2383
|
declare function getQualityValidators(record: Partial<CatalogRecord>, propsToValidate: ValidatorMapperKeys[]): {
|
|
2349
2384
|
name: string;
|
|
2350
2385
|
validator: () => boolean;
|
|
2386
|
+
alias: string;
|
|
2351
2387
|
}[];
|
|
2352
2388
|
|
|
2353
2389
|
declare function updateLanguages<T extends CatalogRecord>(record: T, defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): T;
|
|
@@ -2697,7 +2733,7 @@ declare class BadgeComponent {
|
|
|
2697
2733
|
|
|
2698
2734
|
declare class ButtonComponent {
|
|
2699
2735
|
private btnClass;
|
|
2700
|
-
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black');
|
|
2736
|
+
set type(value: 'primary' | 'secondary' | 'default' | 'outline' | 'light' | 'gray' | 'black' | 'primary-light');
|
|
2701
2737
|
disabled: boolean;
|
|
2702
2738
|
extraClass: string;
|
|
2703
2739
|
buttonClick: EventEmitter<Event>;
|
|
@@ -3023,7 +3059,7 @@ declare class UrlInputComponent implements OnChanges {
|
|
|
3023
3059
|
inputValue: string;
|
|
3024
3060
|
ngOnChanges(changes: SimpleChanges): void;
|
|
3025
3061
|
handleInput(event: Event): void;
|
|
3026
|
-
handleUpload(element: HTMLInputElement): void;
|
|
3062
|
+
handleUpload(element: HTMLInputElement, event: Event): void;
|
|
3027
3063
|
isValidUrl(url: string): boolean;
|
|
3028
3064
|
static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
|
|
3029
3065
|
static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showValidateButton": { "alias": "showValidateButton"; "required": false; }; "resetUrlOnChange": { "alias": "resetUrlOnChange"; "required": false; }; }, { "valueChange": "valueChange"; "uploadClick": "uploadClick"; }, never, ["*"], true, never>;
|
|
@@ -4233,9 +4269,12 @@ declare class MetadataInfoComponent {
|
|
|
4233
4269
|
start: string;
|
|
4234
4270
|
end: string;
|
|
4235
4271
|
};
|
|
4236
|
-
get shownOrganization(): Organization;
|
|
4237
|
-
get resourceContact(): Individual;
|
|
4238
4272
|
fieldReady(propName: string): boolean;
|
|
4273
|
+
get contactGroups(): {
|
|
4274
|
+
role: Role;
|
|
4275
|
+
roleLabel: string;
|
|
4276
|
+
contacts: Individual[];
|
|
4277
|
+
}[];
|
|
4239
4278
|
onKeywordClick(keyword: Keyword): void;
|
|
4240
4279
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
|
|
4241
4280
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataInfoComponent, "gn-ui-metadata-info", never, { "metadata": { "alias": "metadata"; "required": false; }; "incomplete": { "alias": "incomplete"; "required": false; }; }, { "keyword": "keyword"; }, never, never, true, never>;
|
|
@@ -4270,6 +4309,29 @@ declare class MetadataQualityComponent implements OnChanges {
|
|
|
4270
4309
|
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityComponent, "gn-ui-metadata-quality", never, { "metadata": { "alias": "metadata"; "required": false; }; "smaller": { "alias": "smaller"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "popoverDisplay": { "alias": "popoverDisplay"; "required": false; }; "propsToValidate": { "alias": "propsToValidate"; "required": false; }; "forceComputeScore": { "alias": "forceComputeScore"; "required": false; }; }, {}, never, never, true, never>;
|
|
4271
4310
|
}
|
|
4272
4311
|
|
|
4312
|
+
declare class ContactPillComponent {
|
|
4313
|
+
contact: Individual;
|
|
4314
|
+
private host;
|
|
4315
|
+
overlayOpen: boolean;
|
|
4316
|
+
overlayWidth: number;
|
|
4317
|
+
overlayOffsetX: number;
|
|
4318
|
+
overlayPositions: ConnectedPosition[];
|
|
4319
|
+
get displayName(): string;
|
|
4320
|
+
toggleOverlay(): void;
|
|
4321
|
+
closeOverlay(): void;
|
|
4322
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactPillComponent, never>;
|
|
4323
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactPillComponent, "gn-ui-contact-pill", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4324
|
+
}
|
|
4325
|
+
|
|
4326
|
+
declare class ContactDetailsComponent {
|
|
4327
|
+
contact: Individual;
|
|
4328
|
+
get organization(): Organization;
|
|
4329
|
+
get displayName(): string;
|
|
4330
|
+
get addressLines(): string[];
|
|
4331
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
|
|
4332
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "gn-ui-contact-details", never, { "contact": { "alias": "contact"; "required": false; }; }, {}, never, never, true, never>;
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4273
4335
|
declare class NotificationComponent {
|
|
4274
4336
|
type: 'info' | 'warning' | 'error' | 'success';
|
|
4275
4337
|
title: string;
|
|
@@ -4379,7 +4441,6 @@ type CardSize = 'L' | 'M' | 'S' | 'XS';
|
|
|
4379
4441
|
declare class InternalLinkCardComponent implements OnInit {
|
|
4380
4442
|
protected elementRef: ElementRef<any>;
|
|
4381
4443
|
record: CatalogRecord;
|
|
4382
|
-
linkTarget: string;
|
|
4383
4444
|
linkHref: string;
|
|
4384
4445
|
metadataQualityDisplay: boolean;
|
|
4385
4446
|
favoriteTemplate: TemplateRef<{
|
|
@@ -4396,7 +4457,7 @@ declare class InternalLinkCardComponent implements OnInit {
|
|
|
4396
4457
|
get shouldShowThumbnail(): boolean;
|
|
4397
4458
|
get displayContactIconOnly(): boolean;
|
|
4398
4459
|
static ɵfac: i0.ɵɵFactoryDeclaration<InternalLinkCardComponent, never>;
|
|
4399
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "
|
|
4460
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InternalLinkCardComponent, "gn-ui-internal-link-card", never, { "record": { "alias": "record"; "required": false; }; "linkHref": { "alias": "linkHref"; "required": false; }; "metadataQualityDisplay": { "alias": "metadataQualityDisplay"; "required": false; }; "favoriteTemplate": { "alias": "favoriteTemplate"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdSelect": "mdSelect"; }, never, never, true, never>;
|
|
4400
4461
|
}
|
|
4401
4462
|
|
|
4402
4463
|
declare class ServiceCapabilitiesComponent implements OnInit {
|
|
@@ -5123,6 +5184,7 @@ declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerE
|
|
|
5123
5184
|
declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<WheelEvent>): boolean;
|
|
5124
5185
|
|
|
5125
5186
|
declare class SpatialExtentComponent {
|
|
5187
|
+
private _cdr;
|
|
5126
5188
|
set spatialExtents(value: DatasetSpatialExtent[]);
|
|
5127
5189
|
spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
|
|
5128
5190
|
mapContext$: Observable<MapContext>;
|
|
@@ -5738,7 +5800,8 @@ interface FormFieldConfig {
|
|
|
5738
5800
|
}
|
|
5739
5801
|
type OnlineLinkResourceSpecifier = `onlineResourceType:link`;
|
|
5740
5802
|
type DatasetDistributionsSpecifier = `onlineResourceType:!link`;
|
|
5741
|
-
type
|
|
5803
|
+
type EditableContactDetailsSpecifier = `contact:editableDetails`;
|
|
5804
|
+
type FieldModelSpecifier = OnlineLinkResourceSpecifier | DatasetDistributionsSpecifier | EditableContactDetailsSpecifier;
|
|
5742
5805
|
type FormFieldComponentName = 'form-field-constraints-shortcuts' | 'form-field-spatial-toggle';
|
|
5743
5806
|
interface EditorFieldIdentification {
|
|
5744
5807
|
model?: CatalogRecordKeys;
|
|
@@ -5761,7 +5824,7 @@ interface EditorFieldPage {
|
|
|
5761
5824
|
labelKey?: string;
|
|
5762
5825
|
sections: EditorSection[];
|
|
5763
5826
|
}
|
|
5764
|
-
interface EditorConfig {
|
|
5827
|
+
interface EditorConfig$1 {
|
|
5765
5828
|
pages: EditorFieldPage[];
|
|
5766
5829
|
}
|
|
5767
5830
|
|
|
@@ -5806,9 +5869,9 @@ declare const saveRecordFailure: _ngrx_store.ActionCreator<"[Editor] Save record
|
|
|
5806
5869
|
declare const draftSaveSuccess: _ngrx_store.ActionCreator<"[Editor] Draft save success", () => _ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5807
5870
|
declare const undoRecordDraft: _ngrx_store.ActionCreator<"[Editor] Undo record draft", () => _ngrx_store.Action<"[Editor] Undo record draft">>;
|
|
5808
5871
|
declare const setEditorConfiguration: _ngrx_store.ActionCreator<"[Editor] Set editor configuration", (props: {
|
|
5809
|
-
configuration: EditorConfig;
|
|
5872
|
+
configuration: EditorConfig$1;
|
|
5810
5873
|
}) => {
|
|
5811
|
-
configuration: EditorConfig;
|
|
5874
|
+
configuration: EditorConfig$1;
|
|
5812
5875
|
} & _ngrx_store.Action<"[Editor] Set editor configuration">>;
|
|
5813
5876
|
declare const setCurrentPage: _ngrx_store.ActionCreator<"[Editor] Set current page", (props: {
|
|
5814
5877
|
page: number;
|
|
@@ -5848,6 +5911,11 @@ declare const canEditRecord: _ngrx_store.ActionCreator<"[Editor] User can edit r
|
|
|
5848
5911
|
}) => {
|
|
5849
5912
|
canEditRecord: boolean;
|
|
5850
5913
|
} & _ngrx_store.Action<"[Editor] User can edit record">>;
|
|
5914
|
+
declare const setFocusedField: _ngrx_store.ActionCreator<"[Editor] Set focused field", (props: {
|
|
5915
|
+
model: CatalogRecordKeys;
|
|
5916
|
+
}) => {
|
|
5917
|
+
model: CatalogRecordKeys;
|
|
5918
|
+
} & _ngrx_store.Action<"[Editor] Set focused field">>;
|
|
5851
5919
|
|
|
5852
5920
|
declare class EditorFacade {
|
|
5853
5921
|
private readonly store;
|
|
@@ -5861,20 +5929,22 @@ declare class EditorFacade {
|
|
|
5861
5929
|
currentSections$: rxjs.Observable<geonetwork_ui.EditorSectionWithValues[]>;
|
|
5862
5930
|
draftSaveSuccess$: rxjs.Observable<_ngrx_store.Action<"[Editor] Draft save success">>;
|
|
5863
5931
|
currentPage$: rxjs.Observable<number>;
|
|
5864
|
-
editorConfig$: rxjs.Observable<EditorConfig>;
|
|
5932
|
+
editorConfig$: rxjs.Observable<EditorConfig$1>;
|
|
5865
5933
|
hasRecordChanged$: rxjs.Observable<{
|
|
5866
5934
|
user: string;
|
|
5867
5935
|
date: Date;
|
|
5868
5936
|
}>;
|
|
5869
5937
|
isPublished$: rxjs.Observable<boolean>;
|
|
5870
5938
|
canEditRecord$: rxjs.Observable<boolean>;
|
|
5939
|
+
focusedField$: rxjs.Observable<CatalogRecordKeys>;
|
|
5871
5940
|
openRecord(record: CatalogRecord, recordSource: string): void;
|
|
5872
5941
|
saveRecord(): void;
|
|
5873
5942
|
undoRecordDraft(): void;
|
|
5874
5943
|
updateRecordField(field: string, value: unknown): void;
|
|
5875
5944
|
updateRecordLanguages(defaultLanguage: LanguageCode, otherLanguages: LanguageCode[]): void;
|
|
5876
|
-
setConfiguration(configuration: EditorConfig): void;
|
|
5945
|
+
setConfiguration(configuration: EditorConfig$1): void;
|
|
5877
5946
|
setCurrentPage(page: number): void;
|
|
5947
|
+
setFocusedField(model: CatalogRecordKeys): void;
|
|
5878
5948
|
setFieldVisibility(field: EditorFieldIdentification, visible: boolean): void;
|
|
5879
5949
|
checkHasRecordChanged(record: CatalogRecord): void;
|
|
5880
5950
|
isPublished(isPublished: boolean): void;
|
|
@@ -5898,7 +5968,7 @@ interface EditorState {
|
|
|
5898
5968
|
saving: boolean;
|
|
5899
5969
|
saveError: SaveRecordError | null;
|
|
5900
5970
|
changedSinceSave: boolean;
|
|
5901
|
-
editorConfig: EditorConfig;
|
|
5971
|
+
editorConfig: EditorConfig$1;
|
|
5902
5972
|
currentPage: number;
|
|
5903
5973
|
hasRecordChanged: {
|
|
5904
5974
|
user: string;
|
|
@@ -5919,7 +5989,7 @@ declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (
|
|
|
5919
5989
|
declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5920
5990
|
declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
|
|
5921
5991
|
declare const selectRecordChangedSinceSave: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5922
|
-
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig, (s1: EditorState) => EditorConfig>;
|
|
5992
|
+
declare const selectEditorConfig: _ngrx_store.MemoizedSelector<object, EditorConfig$1, (s1: EditorState) => EditorConfig$1>;
|
|
5923
5993
|
declare const selectCurrentPage: _ngrx_store.MemoizedSelector<object, number, (s1: EditorState) => number>;
|
|
5924
5994
|
declare const selectRecordSections: _ngrx_store.MemoizedSelector<object, EditorSectionWithValues[], (s1: EditorState) => EditorSectionWithValues[]>;
|
|
5925
5995
|
declare const selectHasRecordChanged: _ngrx_store.MemoizedSelector<object, {
|
|
@@ -5957,18 +6027,20 @@ declare class ImportRecordComponent {
|
|
|
5957
6027
|
static ɵcmp: i0.ɵɵComponentDeclaration<ImportRecordComponent, "gn-ui-import-record", never, {}, { "closeImportMenu": "closeImportMenu"; }, never, never, true, never>;
|
|
5958
6028
|
}
|
|
5959
6029
|
|
|
5960
|
-
declare class MetadataQualityPanelComponent
|
|
6030
|
+
declare class MetadataQualityPanelComponent {
|
|
6031
|
+
facade: EditorFacade;
|
|
5961
6032
|
propsToValidate: ValidatorMapperKeys[];
|
|
5962
|
-
propertiesByPage
|
|
6033
|
+
propertiesByPage$: rxjs.Observable<{
|
|
5963
6034
|
label: string;
|
|
5964
6035
|
value: boolean;
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
|
|
5968
|
-
|
|
5969
|
-
|
|
6036
|
+
model: CatalogRecordKeys;
|
|
6037
|
+
}[][]>;
|
|
6038
|
+
onCriterionClick(property: {
|
|
6039
|
+
value: boolean;
|
|
6040
|
+
model: CatalogRecordKeys;
|
|
6041
|
+
}): void;
|
|
5970
6042
|
static ɵfac: i0.ɵɵFactoryDeclaration<MetadataQualityPanelComponent, never>;
|
|
5971
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {
|
|
6043
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MetadataQualityPanelComponent, "gn-ui-metadata-quality-panel", never, {}, {}, never, never, true, never>;
|
|
5972
6044
|
}
|
|
5973
6045
|
|
|
5974
6046
|
declare class MultilingualPanelComponent implements OnDestroy {
|
|
@@ -6013,6 +6085,14 @@ declare class MultilingualPanelComponent implements OnDestroy {
|
|
|
6013
6085
|
static ɵcmp: i0.ɵɵComponentDeclaration<MultilingualPanelComponent, "gn-ui-multilingual-panel", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, true, never>;
|
|
6014
6086
|
}
|
|
6015
6087
|
|
|
6088
|
+
declare class FieldFocusDirective {
|
|
6089
|
+
gnUiFieldFocusGlowClass: string;
|
|
6090
|
+
private el;
|
|
6091
|
+
focusField(): void;
|
|
6092
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldFocusDirective, never>;
|
|
6093
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FieldFocusDirective, "[gnUiFieldFocus]", ["fieldFocus"], { "gnUiFieldFocusGlowClass": { "alias": "gnUiFieldFocusGlowClass"; "required": false; }; }, {}, never, never, true, never>;
|
|
6094
|
+
}
|
|
6095
|
+
|
|
6016
6096
|
declare class FormFieldKeywordsComponent {
|
|
6017
6097
|
private editorFacade;
|
|
6018
6098
|
value: Keyword[];
|
|
@@ -6142,6 +6222,7 @@ declare class FormFieldComponent {
|
|
|
6142
6222
|
valueChange: EventEmitter<unknown>;
|
|
6143
6223
|
titleInput: ElementRef;
|
|
6144
6224
|
isOpenData: boolean;
|
|
6225
|
+
fieldFocus: FieldFocusDirective;
|
|
6145
6226
|
toggleIsOpenData(event: boolean): void;
|
|
6146
6227
|
focusTitleInput(): void;
|
|
6147
6228
|
get withoutWrapper(): boolean;
|
|
@@ -6158,7 +6239,7 @@ declare class FormFieldComponent {
|
|
|
6158
6239
|
get valueAsResourceIdentifierCode(): string;
|
|
6159
6240
|
handleResourceIdentifierChange(code: string): void;
|
|
6160
6241
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
6161
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true,
|
|
6242
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "gn-ui-form-field", never, { "uniqueIdentifier": { "alias": "uniqueIdentifier"; "required": false; }; "model": { "alias": "model"; "required": false; }; "modelSpecifier": { "alias": "modelSpecifier"; "required": false; }; "componentName": { "alias": "componentName"; "required": false; }; "config": { "alias": "config"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, [{ directive: typeof FieldFocusDirective; inputs: {}; outputs: {}; }]>;
|
|
6162
6243
|
}
|
|
6163
6244
|
|
|
6164
6245
|
declare const NOT_APPLICABLE_CONSTRAINT: Constraint;
|
|
@@ -6182,12 +6263,19 @@ declare class FormFieldTopicsComponent {
|
|
|
6182
6263
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTopicsComponent, "gn-ui-form-field-topics", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
6183
6264
|
}
|
|
6184
6265
|
|
|
6185
|
-
declare class RecordFormComponent {
|
|
6266
|
+
declare class RecordFormComponent implements OnInit, OnDestroy {
|
|
6186
6267
|
facade: EditorFacade;
|
|
6268
|
+
subscription: Subscription;
|
|
6187
6269
|
recordUniqueIdentifier$: rxjs.Observable<string>;
|
|
6270
|
+
focusFieldWithPage$: rxjs.Observable<readonly [CatalogRecordKeys, number]>;
|
|
6271
|
+
formFields: i0.Signal<readonly FormFieldComponent[]>;
|
|
6272
|
+
focusField(model: CatalogRecordKeys): void;
|
|
6273
|
+
ngOnInit(): void;
|
|
6274
|
+
ngOnDestroy(): void;
|
|
6188
6275
|
handleFieldValueChange(model: CatalogRecordKeys, newValue: EditorFieldValue): void;
|
|
6189
6276
|
fieldTracker(index: number, field: EditorFieldWithValue): CatalogRecordKeys;
|
|
6190
6277
|
sectionTracker(index: number, section: EditorSectionWithValues): string;
|
|
6278
|
+
getPageIndexForField(model: CatalogRecordKeys): Promise<number | null>;
|
|
6191
6279
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordFormComponent, never>;
|
|
6192
6280
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
|
|
6193
6281
|
}
|
|
@@ -6318,7 +6406,7 @@ declare const METADATA_POINT_OF_CONTACT_SECTION: EditorSection;
|
|
|
6318
6406
|
*************** PAGES *****************
|
|
6319
6407
|
************************************************************
|
|
6320
6408
|
*/
|
|
6321
|
-
declare const DEFAULT_CONFIGURATION: EditorConfig;
|
|
6409
|
+
declare const DEFAULT_CONFIGURATION: EditorConfig$1;
|
|
6322
6410
|
/************************************************************
|
|
6323
6411
|
*************** LICENSES **************
|
|
6324
6412
|
************************************************************
|
|
@@ -6339,7 +6427,7 @@ declare const INSPIRE_TOPICS: INSPIRE_topic[];
|
|
|
6339
6427
|
|
|
6340
6428
|
declare class EditorService {
|
|
6341
6429
|
private recordsRepository;
|
|
6342
|
-
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig): Observable<[CatalogRecord, string]>;
|
|
6430
|
+
saveRecord(record: CatalogRecord, recordSource: string, fieldsConfig: EditorConfig$1): Observable<[CatalogRecord, string]>;
|
|
6343
6431
|
saveRecordAsDraft(record: CatalogRecord, recordSource: string): Observable<void>;
|
|
6344
6432
|
undoRecordDraft(record: CatalogRecord): Observable<[CatalogRecord, string, boolean]>;
|
|
6345
6433
|
hasRecordChangedSinceDraft(localRecord: CatalogRecord): Observable<{
|
|
@@ -6755,6 +6843,11 @@ interface SearchPreset {
|
|
|
6755
6843
|
interface MetadataQualityConfig {
|
|
6756
6844
|
ENABLED: boolean;
|
|
6757
6845
|
}
|
|
6846
|
+
type NewRecordStandard = 'iso19139' | 'iso19115-3';
|
|
6847
|
+
interface EditorConfig {
|
|
6848
|
+
NEW_RECORD_DEFAULT_LANGUAGE?: string;
|
|
6849
|
+
NEW_RECORD_STANDARD?: NewRecordStandard;
|
|
6850
|
+
}
|
|
6758
6851
|
type CustomTranslations = {
|
|
6759
6852
|
[translationKey: string]: string;
|
|
6760
6853
|
};
|
|
@@ -6787,6 +6880,7 @@ declare function getGlobalConfig(): GlobalConfig;
|
|
|
6787
6880
|
declare function getThemeConfig(): ThemeConfig;
|
|
6788
6881
|
declare function getOptionalMapConfig(): MapConfig | null;
|
|
6789
6882
|
declare function getOptionalSearchConfig(): SearchConfig | null;
|
|
6883
|
+
declare function getOptionalEditorConfig(): EditorConfig | null;
|
|
6790
6884
|
declare function getMetadataQualityConfig(): MetadataQualityConfig;
|
|
6791
6885
|
declare function getCustomTranslations(langCode: string): CustomTranslations;
|
|
6792
6886
|
declare function loadAppConfig(configUrl?: string): Promise<void>;
|
|
@@ -6815,6 +6909,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6815
6909
|
|
|
6816
6910
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6817
6911
|
|
|
6818
|
-
export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, 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, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, 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, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6819
|
-
export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, INSPIRE_topic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceWithUnknownProps, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
|
|
6912
|
+
export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6913
|
+
export type { Aggregation, AggregationBuckets, AggregationCounts, AggregationParams, AggregationResult, AggregationSort, AggregationTypes, Aggregations, AggregationsParams, AggregationsResults, AggregationsTypes, AutocompleteItem, BaseRecord, BoundingBox, Bucket, CatalogRecord, CatalogRecordKeys, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, Constraint, ConstraintTranslations, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DatasetDownloadDistribution, DatasetFeatureAttribute, DatasetFeatureAttributeValue, DatasetFeatureCatalog, DatasetFeatureType, DatasetOnlineResource, DatasetRecord, DatasetServiceDistribution, DatasetSpatialExtent, DatasetTemporalExtent, DatavizChartConfigModel, DatavizConfigModel, DateRange, DropdownChoice, EditorConfig, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldFilter$1 as FieldFilter, FieldFilterByExpression, FieldFilterByRange, FieldFilterByValues, FieldFilters, FieldName$1 as FieldName, FieldSort$1 as FieldSort, FieldTranslation, FieldType, FieldValue, FieldValues, FileFormat, FilterAggregationParams, FilterQuery, FiltersAggregationParams, FiltersAggregationResult, FiltersBucket, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, GpfApiDlTermBucket, GraphicOverview, HasPath, HistogramAggregationParams, HistogramAggregationResult, HistogramBucket, INSPIRE_topic, Individual, InputChartType, Iso3Langs, Keyword, KeywordApiResponse, KeywordTranslations, Label, LanguageCode, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, ModelTranslations, NestedAggregationResult, NewRecordStandard, OnlineLinkResource, OnlineResource, OnlineResourceTranslations, OnlineResourceType, Organization, OrganizationTranslations, OrganizationsStrategy, Paginable, PropertyInfo, QueryRange, QueryString, RecordAsXml, RecordAttachment, RecordKind, RecordMetric, RecordStatus, RecordTranslations, RequestFields, ResourceIdentifier$1 as ResourceIdentifier, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, ReuseRecord, ReuseType, Role, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchParams, SearchPreset, SearchResults, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, ServiceEndpoint, ServiceOnlineResource, ServiceProtocol, ServiceRecord, SortByField, SortOrder, SortParams, SourceRecord, SourceWithUnknownProps, SpatialExtentTranslations, SpatialRepresentationType, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationParams, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UpdateFrequency, UpdateFrequencyCode, UpdateFrequencyCustom, UploadEvent, UserFeedback, UserFeedbackViewModel, ValidatorMapperKeys };
|
|
6820
6914
|
//# sourceMappingURL=index.d.ts.map
|