geonetwork-ui 2.9.0-dev.fc19cbfed → 2.10.0-dev.0d4a494fa
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 +876 -820
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +121 -25
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +15 -2
- package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
- package/src/libs/common/domain/src/index.ts +2 -0
- package/src/libs/common/domain/src/lib/model/index.ts +3 -0
- package/src/libs/common/domain/src/lib/model/record/index.ts +2 -2
- package/src/libs/common/domain/src/lib/model/search/index.ts +1 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +3 -3
- package/src/libs/feature/editor/src/index.ts +2 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +0 -1
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +6 -1
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +16 -1
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +8 -4
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +5 -3
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +1 -1
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +4 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +2 -0
- package/src/libs/util/app-config/src/lib/model.ts +1 -0
- package/translations/de.json +1 -0
- package/translations/en.json +1 -0
- package/translations/es.json +1 -0
- package/translations/fr.json +1 -0
- package/translations/it.json +1 -0
- package/translations/nl.json +1 -0
- package/translations/pt.json +1 -0
- package/translations/sk.json +1 -0
package/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { Action } from '@ngrx/store';
|
|
|
17
17
|
import { Style } from 'ol/style.js';
|
|
18
18
|
import { StyleLike } from 'ol/style/Style.js';
|
|
19
19
|
import * as _ngrx_effects from '@ngrx/effects';
|
|
20
|
+
import * as geonetwork_ui from 'geonetwork-ui';
|
|
20
21
|
import { UntypedFormControl, FormControl } from '@angular/forms';
|
|
21
22
|
import { MatAutocompleteTrigger, MatAutocomplete, MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
|
22
23
|
import * as _camptocamp_ogc_client from '@camptocamp/ogc-client';
|
|
@@ -26,13 +27,12 @@ import { Extent as Extent$1, MapContext as MapContext$1 } from '@geospatial-sdk/
|
|
|
26
27
|
import { MatSort } from '@angular/material/sort';
|
|
27
28
|
import { DataSource } from '@angular/cdk/collections';
|
|
28
29
|
import { MatPaginator } from '@angular/material/paginator';
|
|
29
|
-
import * as geonetwork_ui from 'geonetwork-ui';
|
|
30
30
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
31
31
|
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';
|
|
@@ -72,6 +72,7 @@ interface OnlineResourceTranslations {
|
|
|
72
72
|
interface SpatialExtentTranslations {
|
|
73
73
|
description?: FieldTranslation;
|
|
74
74
|
}
|
|
75
|
+
type ModelTranslations = RecordTranslations | OrganizationTranslations | KeywordTranslations | ConstraintTranslations | OnlineResourceTranslations | SpatialExtentTranslations;
|
|
75
76
|
|
|
76
77
|
interface Organization {
|
|
77
78
|
name: string;
|
|
@@ -84,6 +85,7 @@ interface Organization {
|
|
|
84
85
|
}
|
|
85
86
|
|
|
86
87
|
declare const RoleValues: string[];
|
|
88
|
+
declare const RoleLabels: Map<string, string>;
|
|
87
89
|
type Role = (typeof RoleValues)[number];
|
|
88
90
|
interface Individual {
|
|
89
91
|
firstName?: string;
|
|
@@ -278,6 +280,14 @@ interface DatasetFeatureAttribute {
|
|
|
278
280
|
code: string;
|
|
279
281
|
values?: Array<DatasetFeatureAttributeValue>;
|
|
280
282
|
}
|
|
283
|
+
interface DatasetFeatureType {
|
|
284
|
+
aliases: string;
|
|
285
|
+
code: string;
|
|
286
|
+
isAbstract: string;
|
|
287
|
+
typeName: string;
|
|
288
|
+
definition: string;
|
|
289
|
+
attributeTable: Array<DatasetFeatureAttribute>;
|
|
290
|
+
}
|
|
281
291
|
type ReuseType = 'application' | 'map' | 'other';
|
|
282
292
|
type OnlineResource = DatasetOnlineResource | ServiceOnlineResource;
|
|
283
293
|
type CatalogRecord = DatasetRecord | ReuseRecord | ServiceRecord;
|
|
@@ -706,6 +716,17 @@ type FieldFilterByRange = {
|
|
|
706
716
|
};
|
|
707
717
|
type FieldFilter$1 = FieldFilterByExpression | FieldFilterByValues | FieldFilterByRange;
|
|
708
718
|
type FieldFilters = Record<FieldName$1, FieldFilter$1>;
|
|
719
|
+
type QueryString = {
|
|
720
|
+
query_string: string;
|
|
721
|
+
};
|
|
722
|
+
type QueryRange = {
|
|
723
|
+
range: Record<string, {
|
|
724
|
+
format: string;
|
|
725
|
+
gte: string;
|
|
726
|
+
lte: string;
|
|
727
|
+
}>;
|
|
728
|
+
};
|
|
729
|
+
type FilterQuery = Array<QueryString | QueryRange>;
|
|
709
730
|
|
|
710
731
|
interface TermsAggregationParams {
|
|
711
732
|
type: 'terms';
|
|
@@ -727,7 +748,7 @@ interface FiltersAggregationParams {
|
|
|
727
748
|
type AggregationParams = TermsAggregationParams | HistogramAggregationParams | FiltersAggregationParams;
|
|
728
749
|
type AggregationsParams = Record<FieldName$1, AggregationParams>;
|
|
729
750
|
type AggregationsTypes = AggregationParams['type'];
|
|
730
|
-
interface TermBucket
|
|
751
|
+
interface TermBucket {
|
|
731
752
|
term: string;
|
|
732
753
|
count: number;
|
|
733
754
|
}
|
|
@@ -740,7 +761,7 @@ interface FiltersBucket {
|
|
|
740
761
|
name: string;
|
|
741
762
|
count: number;
|
|
742
763
|
}
|
|
743
|
-
type Bucket = TermBucket
|
|
764
|
+
type Bucket = TermBucket | HistogramBucket | FiltersBucket;
|
|
744
765
|
type AggregationSort = ['desc' | 'asc', 'key' | 'count'];
|
|
745
766
|
interface AggregationBuckets {
|
|
746
767
|
buckets: Bucket[];
|
|
@@ -765,6 +786,8 @@ interface SearchResults {
|
|
|
765
786
|
count: number;
|
|
766
787
|
}
|
|
767
788
|
|
|
789
|
+
declare const SortByEnum: Record<string, SortByField>;
|
|
790
|
+
|
|
768
791
|
declare abstract class OrganizationsServiceInterface {
|
|
769
792
|
abstract organisations$: Observable<Organization[]>;
|
|
770
793
|
abstract organisationsCount$: Observable<number>;
|
|
@@ -1053,6 +1076,7 @@ declare abstract class RecordsRepositoryInterface {
|
|
|
1053
1076
|
}
|
|
1054
1077
|
|
|
1055
1078
|
type RecordAsXml = string;
|
|
1079
|
+
declare const DISABLE_DRAFT: InjectionToken<boolean>;
|
|
1056
1080
|
declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
1057
1081
|
private httpClient;
|
|
1058
1082
|
private gn4SearchApi;
|
|
@@ -1062,6 +1086,7 @@ declare class Gn4Repository implements RecordsRepositoryInterface {
|
|
|
1062
1086
|
private platformService;
|
|
1063
1087
|
private gn4LanguagesApi;
|
|
1064
1088
|
private settingsService;
|
|
1089
|
+
private disableDraft;
|
|
1065
1090
|
_draftsChanged: Subject<void>;
|
|
1066
1091
|
draftsChanged$: Observable<void>;
|
|
1067
1092
|
search({ filters, fields, offset, limit, sort, filterIds, filterGeometry, }: SearchParams): Observable<SearchResults>;
|
|
@@ -1890,6 +1915,7 @@ declare class SelectionService {
|
|
|
1890
1915
|
|
|
1891
1916
|
interface Gn4ProvideOptions {
|
|
1892
1917
|
disableAuth?: boolean;
|
|
1918
|
+
disableDraft?: boolean;
|
|
1893
1919
|
}
|
|
1894
1920
|
declare function provideGn4(provideOptions?: Gn4ProvideOptions): Provider[];
|
|
1895
1921
|
|
|
@@ -3400,13 +3426,13 @@ type SearchActions = AddSearch | SetConfigFilters | SetFilters | UpdateFilters |
|
|
|
3400
3426
|
|
|
3401
3427
|
declare const getSearchState: _ngrx_store.MemoizedSelector<object, SearchState, _ngrx_store.DefaultProjectorFn<SearchState>>;
|
|
3402
3428
|
declare const getSearchStateSearch: _ngrx_store.MemoizedSelector<object, SearchStateSearch, (s1: SearchState) => SearchStateSearch>;
|
|
3403
|
-
declare const getSearchFilters: _ngrx_store.MemoizedSelector<object, FieldFilters, (s1: SearchStateSearch) => FieldFilters>;
|
|
3404
|
-
declare const getSearchSortBy: _ngrx_store.MemoizedSelector<object, SortByField, (s1: SearchStateSearch) => SortByField>;
|
|
3429
|
+
declare const getSearchFilters: _ngrx_store.MemoizedSelector<object, geonetwork_ui.FieldFilters, (s1: SearchStateSearch) => geonetwork_ui.FieldFilters>;
|
|
3430
|
+
declare const getSearchSortBy: _ngrx_store.MemoizedSelector<object, geonetwork_ui.SortByField, (s1: SearchStateSearch) => geonetwork_ui.SortByField>;
|
|
3405
3431
|
declare const getSearchResultsLayout: _ngrx_store.MemoizedSelector<object, string, (s1: SearchStateSearch) => string>;
|
|
3406
|
-
declare const getSearchConfigAggregations: _ngrx_store.MemoizedSelector<object, AggregationsParams, (s1: SearchStateSearch) => AggregationsParams>;
|
|
3407
|
-
declare const getSearchResults: _ngrx_store.MemoizedSelector<object, CatalogRecord[], (s1: SearchStateSearch) => CatalogRecord[]>;
|
|
3432
|
+
declare const getSearchConfigAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.AggregationsParams, (s1: SearchStateSearch) => geonetwork_ui.AggregationsParams>;
|
|
3433
|
+
declare const getSearchResults: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord[], (s1: SearchStateSearch) => geonetwork_ui.CatalogRecord[]>;
|
|
3408
3434
|
declare const getSearchResultsLoading: _ngrx_store.MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
|
|
3409
|
-
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, Aggregations, (s1: SearchStateSearch) => Aggregations>;
|
|
3435
|
+
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.Aggregations, (s1: SearchStateSearch) => geonetwork_ui.Aggregations>;
|
|
3410
3436
|
declare const getSearchResultsHits: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3411
3437
|
declare const totalPages: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3412
3438
|
declare const currentPage: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
@@ -3523,7 +3549,7 @@ declare class SimpleSearchField implements AbstractSearchField {
|
|
|
3523
3549
|
protected esService: ElasticsearchService;
|
|
3524
3550
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3525
3551
|
protected getAggregations(): AggregationsParams;
|
|
3526
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3552
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3527
3553
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3528
3554
|
getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters | string>;
|
|
3529
3555
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[] | FieldValue | DateRange>;
|
|
@@ -3537,7 +3563,7 @@ declare class TranslatedSearchField extends SimpleSearchField {
|
|
|
3537
3563
|
protected platformService: PlatformServiceInterface;
|
|
3538
3564
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3539
3565
|
protected getTranslation(key: string): Promise<string>;
|
|
3540
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3566
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3541
3567
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3542
3568
|
}
|
|
3543
3569
|
/**
|
|
@@ -3563,7 +3589,7 @@ declare class IsSpatialSearchField extends SimpleSearchField {
|
|
|
3563
3589
|
private translateService;
|
|
3564
3590
|
constructor(injector: Injector);
|
|
3565
3591
|
protected getAggregations(): AggregationsParams;
|
|
3566
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3592
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3567
3593
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3568
3594
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
3569
3595
|
}
|
|
@@ -3571,7 +3597,7 @@ declare class LicenseSearchField extends SimpleSearchField {
|
|
|
3571
3597
|
private translateService;
|
|
3572
3598
|
constructor(injector: Injector);
|
|
3573
3599
|
protected getAggregations(): AggregationsParams;
|
|
3574
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3600
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3575
3601
|
}
|
|
3576
3602
|
declare class OrganizationSearchField implements AbstractSearchField {
|
|
3577
3603
|
private injector;
|
|
@@ -3604,7 +3630,7 @@ declare class AvailableServicesField extends SimpleSearchField {
|
|
|
3604
3630
|
constructor(injector: Injector);
|
|
3605
3631
|
linkProtocolViewFilter: string;
|
|
3606
3632
|
linkProtocolDownloadFilter: string;
|
|
3607
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3633
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3608
3634
|
protected getAggregations(): AggregationsParams;
|
|
3609
3635
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3610
3636
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
@@ -4532,7 +4558,7 @@ declare class RecordsMetricsComponent implements OnInit {
|
|
|
4532
4558
|
count: number;
|
|
4533
4559
|
queryString: string;
|
|
4534
4560
|
metricSelect: EventEmitter<RecordMetric>;
|
|
4535
|
-
results$: Observable<TermBucket
|
|
4561
|
+
results$: Observable<TermBucket[]>;
|
|
4536
4562
|
ngOnInit(): void;
|
|
4537
4563
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordsMetricsComponent, never>;
|
|
4538
4564
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordsMetricsComponent, "gn-ui-records-metrics", never, { "field": { "alias": "field"; "required": false; }; "count": { "alias": "count"; "required": false; }; "queryString": { "alias": "queryString"; "required": false; }; }, { "metricSelect": "metricSelect"; }, never, never, true, never>;
|
|
@@ -4629,7 +4655,7 @@ declare class ResultsTableContainerComponent implements OnDestroy {
|
|
|
4629
4655
|
duplicateRecord: EventEmitter<CatalogRecord>;
|
|
4630
4656
|
subscription: Subscription;
|
|
4631
4657
|
selectedRecords$: rxjs.BehaviorSubject<string[]>;
|
|
4632
|
-
sortBy$: Observable<SortByField>;
|
|
4658
|
+
sortBy$: Observable<geonetwork_ui.SortByField>;
|
|
4633
4659
|
hasDraft: (record: CatalogRecord) => boolean;
|
|
4634
4660
|
canDuplicate: (record: CatalogRecord) => boolean;
|
|
4635
4661
|
canDelete: (record: CatalogRecord) => Observable<boolean>;
|
|
@@ -5439,8 +5465,8 @@ interface Label {
|
|
|
5439
5465
|
interface FormatProduit {
|
|
5440
5466
|
title: string;
|
|
5441
5467
|
update: string;
|
|
5442
|
-
format: Array<
|
|
5443
|
-
zone: Array<
|
|
5468
|
+
format: Array<GpfApiDlTermBucket>;
|
|
5469
|
+
zone: Array<GpfApiDlTermBucket>;
|
|
5444
5470
|
}
|
|
5445
5471
|
interface FormatSortieProduit {
|
|
5446
5472
|
label: string;
|
|
@@ -5455,7 +5481,7 @@ interface ListChoice {
|
|
|
5455
5481
|
editionDate: Choice$1[];
|
|
5456
5482
|
crs: Choice$1[];
|
|
5457
5483
|
}
|
|
5458
|
-
interface
|
|
5484
|
+
interface GpfApiDlTermBucket {
|
|
5459
5485
|
term: string;
|
|
5460
5486
|
label: string | number;
|
|
5461
5487
|
}
|
|
@@ -5476,9 +5502,9 @@ declare class GpfApiDlComponent implements OnInit {
|
|
|
5476
5502
|
page$: BehaviorSubject<number>;
|
|
5477
5503
|
url: string;
|
|
5478
5504
|
choices: {
|
|
5479
|
-
zone:
|
|
5480
|
-
format:
|
|
5481
|
-
category:
|
|
5505
|
+
zone: GpfApiDlTermBucket[];
|
|
5506
|
+
format: GpfApiDlTermBucket[];
|
|
5507
|
+
category: GpfApiDlTermBucket[];
|
|
5482
5508
|
};
|
|
5483
5509
|
bucketPromisesZone: Choice$1[];
|
|
5484
5510
|
bucketPromisesFormat: Choice$1[];
|
|
@@ -5891,7 +5917,7 @@ declare const initialEditorState: EditorState;
|
|
|
5891
5917
|
declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
|
|
5892
5918
|
|
|
5893
5919
|
declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
|
|
5894
|
-
declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
|
|
5920
|
+
declare const selectRecord: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord, (s1: EditorState) => geonetwork_ui.CatalogRecord>;
|
|
5895
5921
|
declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
|
|
5896
5922
|
declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5897
5923
|
declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
|
|
@@ -6169,6 +6195,75 @@ declare class RecordFormComponent {
|
|
|
6169
6195
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
|
|
6170
6196
|
}
|
|
6171
6197
|
|
|
6198
|
+
declare class OnlineServiceResourceInputComponent {
|
|
6199
|
+
private cdr;
|
|
6200
|
+
_service: DatasetServiceDistribution;
|
|
6201
|
+
set service(service: DatasetServiceDistribution);
|
|
6202
|
+
protocolHint?: string;
|
|
6203
|
+
disabled?: boolean;
|
|
6204
|
+
modifyMode?: boolean;
|
|
6205
|
+
protocolOptions?: ServiceProtocol[];
|
|
6206
|
+
serviceChange: EventEmitter<DatasetServiceDistribution>;
|
|
6207
|
+
errorMessage: boolean;
|
|
6208
|
+
loading: boolean;
|
|
6209
|
+
resetUrlOnChange: number;
|
|
6210
|
+
layersSubject: BehaviorSubject<{
|
|
6211
|
+
name?: string;
|
|
6212
|
+
title?: string;
|
|
6213
|
+
}[]>;
|
|
6214
|
+
layers$: Observable<{
|
|
6215
|
+
name?: string;
|
|
6216
|
+
title?: string;
|
|
6217
|
+
}[]>;
|
|
6218
|
+
allProtocolOptions: {
|
|
6219
|
+
label: string;
|
|
6220
|
+
value: ServiceProtocol;
|
|
6221
|
+
}[];
|
|
6222
|
+
get availableProtocolOptions(): any[];
|
|
6223
|
+
get activeLayerSuggestion(): boolean;
|
|
6224
|
+
handleUrlValueChange(url: string): void;
|
|
6225
|
+
handleUploadClick(url: string): Promise<void>;
|
|
6226
|
+
resetAllFormFields(): void;
|
|
6227
|
+
resetLayersSuggestion(): void;
|
|
6228
|
+
submit(): void;
|
|
6229
|
+
getIdentifierPlaceholder(): string;
|
|
6230
|
+
/**
|
|
6231
|
+
* gn-ui-autocomplete
|
|
6232
|
+
*/
|
|
6233
|
+
displayWithFn(item: {
|
|
6234
|
+
name: string;
|
|
6235
|
+
title: string;
|
|
6236
|
+
}): string;
|
|
6237
|
+
/**
|
|
6238
|
+
* gn-ui-autocomplete
|
|
6239
|
+
*/
|
|
6240
|
+
autoCompleteAction: (query: string) => Observable<{
|
|
6241
|
+
name?: string;
|
|
6242
|
+
title?: string;
|
|
6243
|
+
}[]>;
|
|
6244
|
+
/**
|
|
6245
|
+
* gn-ui-autocomplete
|
|
6246
|
+
*/
|
|
6247
|
+
handleSelectValue(val: {
|
|
6248
|
+
name: string;
|
|
6249
|
+
title: string;
|
|
6250
|
+
}): void;
|
|
6251
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineServiceResourceInputComponent, never>;
|
|
6252
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnlineServiceResourceInputComponent, "gn-ui-online-service-resource-input", never, { "service": { "alias": "service"; "required": false; }; "protocolHint": { "alias": "protocolHint"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "modifyMode": { "alias": "modifyMode"; "required": false; }; "protocolOptions": { "alias": "protocolOptions"; "required": false; }; }, { "serviceChange": "serviceChange"; }, never, ["*"], true, never>;
|
|
6253
|
+
}
|
|
6254
|
+
|
|
6255
|
+
declare class OnlineResourceCardComponent {
|
|
6256
|
+
onlineResource: OnlineResource;
|
|
6257
|
+
modifyClick: EventEmitter<OnlineResource>;
|
|
6258
|
+
get title(): string;
|
|
6259
|
+
get subtitle(): string;
|
|
6260
|
+
get fileSize(): string;
|
|
6261
|
+
get identifierInService(): string;
|
|
6262
|
+
getFormat(onlineResource: OnlineLinkResource | DatasetDownloadDistribution): string;
|
|
6263
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineResourceCardComponent, never>;
|
|
6264
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnlineResourceCardComponent, "gn-ui-online-resource-card", never, { "onlineResource": { "alias": "onlineResource"; "required": false; }; }, { "modifyClick": "modifyClick"; }, never, never, true, never>;
|
|
6265
|
+
}
|
|
6266
|
+
|
|
6172
6267
|
declare class FeatureEditorModule {
|
|
6173
6268
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
|
|
6174
6269
|
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
|
|
@@ -6613,6 +6708,7 @@ declare function toLang2(lang: LanguageCodeLike): LanguageCode2 | string;
|
|
|
6613
6708
|
interface GlobalConfig {
|
|
6614
6709
|
GN4_API_URL: string;
|
|
6615
6710
|
DATAHUB_URL?: string;
|
|
6711
|
+
EDIT_URL_TEMPLATE?: string;
|
|
6616
6712
|
PROXY_PATH?: string;
|
|
6617
6713
|
METADATA_LANGUAGE?: string;
|
|
6618
6714
|
LOGIN_URL?: string;
|
|
@@ -6722,6 +6818,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6722
6818
|
|
|
6723
6819
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6724
6820
|
|
|
6725
|
-
export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions_d as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
6726
|
-
export type { AggregationResult, AggregationsResults, AutocompleteItem, BoundingBox, CatalogSource, Choice$1 as Choice, ConfirmationDialogData, CreateStyleOptions, CustomTranslations, CustomTranslationsAllLanguages, DataItem, DateRange, DropdownChoice, EditorFieldWithValue, EditorPartialState, EditorSectionWithValues, EditorState, EsQueryFieldsPriorityType, EsRequestAggTerm, EsRequestAggTermPatch, EsRequestSource, EsResourceType, EsResourceTypeValues, EsSearchParams, EsSearchResponse, EsTemplateType, EsTemplateValues, FacetPath, FacetSelectEvent, Field, FieldAggregation, FieldAvailableValue, FieldType, FieldValue, FieldValues, FileFormat, FiltersAggregationResult, FormatProduit, FormatSortieProduit, GlobalConfig, Gn4Record, Gn4RecordRelated, Gn4SearchResults, HasPath, HistogramAggregationResult, Iso3Langs, KeywordApiResponse, Label, LanguageCode2, LanguageCode3, LanguageCodeFactory, LanguageCodeLike, LayerConfig, Link, ListChoice, ListUrl, MapConfig, MapPartialState, MapState, MetadataContact, MetadataObject, MetadataQualityConfig, MetadataQualityItem, ModalDialogData, ModelBlock, ModelItem, NestedAggregationResult, OrganizationsStrategy, Paginable, PropertyInfo, RecordAsXml, RecordAttachment, RecordMetric, RequestFields, ResultsLayoutConfigModel, ResultsListShowMoreStrategy, RouterConfigModel, SaveRecordError, SearchActions, SearchConfig, SearchError, SearchFilters, SearchPreset, SearchRouteParams, SearchServiceI, SearchState, SearchStateParams, SearchStateSearch, SortOrder, SortParams, SourceWithUnknownProps, StacFilterState, StyleByGeometryType, SupportedType, SwitchToggleOption, TableItemId, TableItemModel, TermBucket, TermsAggregationResult, ThemeConfig, Thesaurus, ThesaurusApiResponse, UploadEvent, ValidatorMapperKeys };
|
|
6821
|
+
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, 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, 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 };
|
|
6822
|
+
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 };
|
|
6727
6823
|
//# sourceMappingURL=index.d.ts.map
|