geonetwork-ui 2.9.0-dev.fc19cbfed → 2.10.0-dev.896c4b637
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 +50 -14
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +117 -24
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +1 -0
- 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/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,7 +27,6 @@ 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';
|
|
@@ -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>;
|
|
@@ -3400,13 +3423,13 @@ type SearchActions = AddSearch | SetConfigFilters | SetFilters | UpdateFilters |
|
|
|
3400
3423
|
|
|
3401
3424
|
declare const getSearchState: _ngrx_store.MemoizedSelector<object, SearchState, _ngrx_store.DefaultProjectorFn<SearchState>>;
|
|
3402
3425
|
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>;
|
|
3426
|
+
declare const getSearchFilters: _ngrx_store.MemoizedSelector<object, geonetwork_ui.FieldFilters, (s1: SearchStateSearch) => geonetwork_ui.FieldFilters>;
|
|
3427
|
+
declare const getSearchSortBy: _ngrx_store.MemoizedSelector<object, geonetwork_ui.SortByField, (s1: SearchStateSearch) => geonetwork_ui.SortByField>;
|
|
3405
3428
|
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[]>;
|
|
3429
|
+
declare const getSearchConfigAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.AggregationsParams, (s1: SearchStateSearch) => geonetwork_ui.AggregationsParams>;
|
|
3430
|
+
declare const getSearchResults: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord[], (s1: SearchStateSearch) => geonetwork_ui.CatalogRecord[]>;
|
|
3408
3431
|
declare const getSearchResultsLoading: _ngrx_store.MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
|
|
3409
|
-
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, Aggregations, (s1: SearchStateSearch) => Aggregations>;
|
|
3432
|
+
declare const getSearchResultsAggregations: _ngrx_store.MemoizedSelector<object, geonetwork_ui.Aggregations, (s1: SearchStateSearch) => geonetwork_ui.Aggregations>;
|
|
3410
3433
|
declare const getSearchResultsHits: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3411
3434
|
declare const totalPages: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
3412
3435
|
declare const currentPage: _ngrx_store.MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
|
|
@@ -3523,7 +3546,7 @@ declare class SimpleSearchField implements AbstractSearchField {
|
|
|
3523
3546
|
protected esService: ElasticsearchService;
|
|
3524
3547
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3525
3548
|
protected getAggregations(): AggregationsParams;
|
|
3526
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3549
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3527
3550
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3528
3551
|
getFiltersForValues(values: FieldValue[] | DateRange[]): Observable<FieldFilters | string>;
|
|
3529
3552
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[] | FieldValue | DateRange>;
|
|
@@ -3537,7 +3560,7 @@ declare class TranslatedSearchField extends SimpleSearchField {
|
|
|
3537
3560
|
protected platformService: PlatformServiceInterface;
|
|
3538
3561
|
constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
|
|
3539
3562
|
protected getTranslation(key: string): Promise<string>;
|
|
3540
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3563
|
+
protected getBucketLabel(bucket: TermBucket): Promise<string>;
|
|
3541
3564
|
getAvailableValues(): Observable<FieldAvailableValue[]>;
|
|
3542
3565
|
}
|
|
3543
3566
|
/**
|
|
@@ -3563,7 +3586,7 @@ declare class IsSpatialSearchField extends SimpleSearchField {
|
|
|
3563
3586
|
private translateService;
|
|
3564
3587
|
constructor(injector: Injector);
|
|
3565
3588
|
protected getAggregations(): AggregationsParams;
|
|
3566
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3589
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3567
3590
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3568
3591
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
3569
3592
|
}
|
|
@@ -3571,7 +3594,7 @@ declare class LicenseSearchField extends SimpleSearchField {
|
|
|
3571
3594
|
private translateService;
|
|
3572
3595
|
constructor(injector: Injector);
|
|
3573
3596
|
protected getAggregations(): AggregationsParams;
|
|
3574
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3597
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3575
3598
|
}
|
|
3576
3599
|
declare class OrganizationSearchField implements AbstractSearchField {
|
|
3577
3600
|
private injector;
|
|
@@ -3604,7 +3627,7 @@ declare class AvailableServicesField extends SimpleSearchField {
|
|
|
3604
3627
|
constructor(injector: Injector);
|
|
3605
3628
|
linkProtocolViewFilter: string;
|
|
3606
3629
|
linkProtocolDownloadFilter: string;
|
|
3607
|
-
protected getBucketLabel(bucket: TermBucket
|
|
3630
|
+
protected getBucketLabel(bucket: TermBucket): Promise<any>;
|
|
3608
3631
|
protected getAggregations(): AggregationsParams;
|
|
3609
3632
|
getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
|
|
3610
3633
|
getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
|
|
@@ -4532,7 +4555,7 @@ declare class RecordsMetricsComponent implements OnInit {
|
|
|
4532
4555
|
count: number;
|
|
4533
4556
|
queryString: string;
|
|
4534
4557
|
metricSelect: EventEmitter<RecordMetric>;
|
|
4535
|
-
results$: Observable<TermBucket
|
|
4558
|
+
results$: Observable<TermBucket[]>;
|
|
4536
4559
|
ngOnInit(): void;
|
|
4537
4560
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordsMetricsComponent, never>;
|
|
4538
4561
|
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 +4652,7 @@ declare class ResultsTableContainerComponent implements OnDestroy {
|
|
|
4629
4652
|
duplicateRecord: EventEmitter<CatalogRecord>;
|
|
4630
4653
|
subscription: Subscription;
|
|
4631
4654
|
selectedRecords$: rxjs.BehaviorSubject<string[]>;
|
|
4632
|
-
sortBy$: Observable<SortByField>;
|
|
4655
|
+
sortBy$: Observable<geonetwork_ui.SortByField>;
|
|
4633
4656
|
hasDraft: (record: CatalogRecord) => boolean;
|
|
4634
4657
|
canDuplicate: (record: CatalogRecord) => boolean;
|
|
4635
4658
|
canDelete: (record: CatalogRecord) => Observable<boolean>;
|
|
@@ -5439,8 +5462,8 @@ interface Label {
|
|
|
5439
5462
|
interface FormatProduit {
|
|
5440
5463
|
title: string;
|
|
5441
5464
|
update: string;
|
|
5442
|
-
format: Array<
|
|
5443
|
-
zone: Array<
|
|
5465
|
+
format: Array<GpfApiDlTermBucket>;
|
|
5466
|
+
zone: Array<GpfApiDlTermBucket>;
|
|
5444
5467
|
}
|
|
5445
5468
|
interface FormatSortieProduit {
|
|
5446
5469
|
label: string;
|
|
@@ -5455,7 +5478,7 @@ interface ListChoice {
|
|
|
5455
5478
|
editionDate: Choice$1[];
|
|
5456
5479
|
crs: Choice$1[];
|
|
5457
5480
|
}
|
|
5458
|
-
interface
|
|
5481
|
+
interface GpfApiDlTermBucket {
|
|
5459
5482
|
term: string;
|
|
5460
5483
|
label: string | number;
|
|
5461
5484
|
}
|
|
@@ -5476,9 +5499,9 @@ declare class GpfApiDlComponent implements OnInit {
|
|
|
5476
5499
|
page$: BehaviorSubject<number>;
|
|
5477
5500
|
url: string;
|
|
5478
5501
|
choices: {
|
|
5479
|
-
zone:
|
|
5480
|
-
format:
|
|
5481
|
-
category:
|
|
5502
|
+
zone: GpfApiDlTermBucket[];
|
|
5503
|
+
format: GpfApiDlTermBucket[];
|
|
5504
|
+
category: GpfApiDlTermBucket[];
|
|
5482
5505
|
};
|
|
5483
5506
|
bucketPromisesZone: Choice$1[];
|
|
5484
5507
|
bucketPromisesFormat: Choice$1[];
|
|
@@ -5891,7 +5914,7 @@ declare const initialEditorState: EditorState;
|
|
|
5891
5914
|
declare function editorReducer(state: EditorState | undefined, action: Action): EditorState;
|
|
5892
5915
|
|
|
5893
5916
|
declare const selectEditorState: _ngrx_store.MemoizedSelector<object, EditorState, _ngrx_store.DefaultProjectorFn<EditorState>>;
|
|
5894
|
-
declare const selectRecord: _ngrx_store.MemoizedSelector<object, CatalogRecord, (s1: EditorState) => CatalogRecord>;
|
|
5917
|
+
declare const selectRecord: _ngrx_store.MemoizedSelector<object, geonetwork_ui.CatalogRecord, (s1: EditorState) => geonetwork_ui.CatalogRecord>;
|
|
5895
5918
|
declare const selectRecordSource: _ngrx_store.MemoizedSelector<object, string, (s1: EditorState) => string>;
|
|
5896
5919
|
declare const selectRecordSaving: _ngrx_store.MemoizedSelector<object, boolean, (s1: EditorState) => boolean>;
|
|
5897
5920
|
declare const selectRecordSaveError: _ngrx_store.MemoizedSelector<object, Error, (s1: EditorState) => Error>;
|
|
@@ -6169,6 +6192,75 @@ declare class RecordFormComponent {
|
|
|
6169
6192
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordFormComponent, "gn-ui-record-form", never, {}, {}, never, never, true, never>;
|
|
6170
6193
|
}
|
|
6171
6194
|
|
|
6195
|
+
declare class OnlineServiceResourceInputComponent {
|
|
6196
|
+
private cdr;
|
|
6197
|
+
_service: DatasetServiceDistribution;
|
|
6198
|
+
set service(service: DatasetServiceDistribution);
|
|
6199
|
+
protocolHint?: string;
|
|
6200
|
+
disabled?: boolean;
|
|
6201
|
+
modifyMode?: boolean;
|
|
6202
|
+
protocolOptions?: ServiceProtocol[];
|
|
6203
|
+
serviceChange: EventEmitter<DatasetServiceDistribution>;
|
|
6204
|
+
errorMessage: boolean;
|
|
6205
|
+
loading: boolean;
|
|
6206
|
+
resetUrlOnChange: number;
|
|
6207
|
+
layersSubject: BehaviorSubject<{
|
|
6208
|
+
name?: string;
|
|
6209
|
+
title?: string;
|
|
6210
|
+
}[]>;
|
|
6211
|
+
layers$: Observable<{
|
|
6212
|
+
name?: string;
|
|
6213
|
+
title?: string;
|
|
6214
|
+
}[]>;
|
|
6215
|
+
allProtocolOptions: {
|
|
6216
|
+
label: string;
|
|
6217
|
+
value: ServiceProtocol;
|
|
6218
|
+
}[];
|
|
6219
|
+
get availableProtocolOptions(): any[];
|
|
6220
|
+
get activeLayerSuggestion(): boolean;
|
|
6221
|
+
handleUrlValueChange(url: string): void;
|
|
6222
|
+
handleUploadClick(url: string): Promise<void>;
|
|
6223
|
+
resetAllFormFields(): void;
|
|
6224
|
+
resetLayersSuggestion(): void;
|
|
6225
|
+
submit(): void;
|
|
6226
|
+
getIdentifierPlaceholder(): string;
|
|
6227
|
+
/**
|
|
6228
|
+
* gn-ui-autocomplete
|
|
6229
|
+
*/
|
|
6230
|
+
displayWithFn(item: {
|
|
6231
|
+
name: string;
|
|
6232
|
+
title: string;
|
|
6233
|
+
}): string;
|
|
6234
|
+
/**
|
|
6235
|
+
* gn-ui-autocomplete
|
|
6236
|
+
*/
|
|
6237
|
+
autoCompleteAction: (query: string) => Observable<{
|
|
6238
|
+
name?: string;
|
|
6239
|
+
title?: string;
|
|
6240
|
+
}[]>;
|
|
6241
|
+
/**
|
|
6242
|
+
* gn-ui-autocomplete
|
|
6243
|
+
*/
|
|
6244
|
+
handleSelectValue(val: {
|
|
6245
|
+
name: string;
|
|
6246
|
+
title: string;
|
|
6247
|
+
}): void;
|
|
6248
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineServiceResourceInputComponent, never>;
|
|
6249
|
+
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>;
|
|
6250
|
+
}
|
|
6251
|
+
|
|
6252
|
+
declare class OnlineResourceCardComponent {
|
|
6253
|
+
onlineResource: OnlineResource;
|
|
6254
|
+
modifyClick: EventEmitter<OnlineResource>;
|
|
6255
|
+
get title(): string;
|
|
6256
|
+
get subtitle(): string;
|
|
6257
|
+
get fileSize(): string;
|
|
6258
|
+
get identifierInService(): string;
|
|
6259
|
+
getFormat(onlineResource: OnlineLinkResource | DatasetDownloadDistribution): string;
|
|
6260
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnlineResourceCardComponent, never>;
|
|
6261
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OnlineResourceCardComponent, "gn-ui-online-resource-card", never, { "onlineResource": { "alias": "onlineResource"; "required": false; }; }, { "modifyClick": "modifyClick"; }, never, never, true, never>;
|
|
6262
|
+
}
|
|
6263
|
+
|
|
6172
6264
|
declare class FeatureEditorModule {
|
|
6173
6265
|
static ɵfac: i0.ɵɵFactoryDeclaration<FeatureEditorModule, never>;
|
|
6174
6266
|
static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, never, [typeof _ngrx_store.StoreFeatureModule, typeof _ngrx_effects.EffectsFeatureModule], never>;
|
|
@@ -6613,6 +6705,7 @@ declare function toLang2(lang: LanguageCodeLike): LanguageCode2 | string;
|
|
|
6613
6705
|
interface GlobalConfig {
|
|
6614
6706
|
GN4_API_URL: string;
|
|
6615
6707
|
DATAHUB_URL?: string;
|
|
6708
|
+
EDIT_URL_TEMPLATE?: string;
|
|
6616
6709
|
PROXY_PATH?: string;
|
|
6617
6710
|
METADATA_LANGUAGE?: string;
|
|
6618
6711
|
LOGIN_URL?: string;
|
|
@@ -6722,6 +6815,6 @@ declare const unrecognizedKeysConfigFixture: () => string;
|
|
|
6722
6815
|
|
|
6723
6816
|
declare function getMapContextLayerFromConfig(config: LayerConfig): MapContextLayer;
|
|
6724
6817
|
|
|
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 };
|
|
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 };
|
|
6727
6820
|
//# sourceMappingURL=index.d.ts.map
|