geonetwork-ui 2.10.0-dev.7e58935b2 → 2.10.0-dev.857c22250

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/fesm2022/geonetwork-ui.mjs +133 -9
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +28 -2
  4. package/index.d.ts.map +1 -1
  5. package/package.json +1 -1
  6. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
  7. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
  8. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
  9. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
  10. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
  11. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
  20. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
  21. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
  22. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
  23. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
  24. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
  25. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
  27. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +54 -32
  28. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +46 -0
  29. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +11 -0
  30. package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
  31. package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
  32. package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
  33. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +5 -0
  34. package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
  35. package/src/libs/util/app-config/src/lib/app-config.ts +14 -1
  36. package/src/libs/util/app-config/src/lib/model.ts +3 -0
  37. package/src/libs/util/app-config/src/lib/parse-utils.ts +27 -0
  38. package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
@@ -1467,6 +1467,25 @@ function readOverviews(rootEl) {
1467
1467
  function readLineage$1(rootEl, translations) {
1468
1468
  return pipe(findNestedElement('gmd:dataQualityInfo', 'gmd:DQ_DataQuality', 'gmd:lineage', 'gmd:LI_Lineage', 'gmd:statement'), extractLocalizedCharacterString('lineage', translations), map(([lineage]) => lineage))(rootEl);
1469
1469
  }
1470
+ function extractSourceRecords(liLineageEl) {
1471
+ if (!liLineageEl)
1472
+ return [];
1473
+ return pipe(findChildrenElement('gmd:source', false), mapArray((el) => {
1474
+ const uuid = readAttribute('uuidref')(el);
1475
+ const title = readAttribute('xlink:title')(el);
1476
+ const href = readAttribute('xlink:href')(el);
1477
+ if (!uuid && !title && !href)
1478
+ return null;
1479
+ return {
1480
+ ...(uuid ? { uuid } : {}),
1481
+ ...(title ? { title } : {}),
1482
+ ...(href ? { href } : {}),
1483
+ };
1484
+ }), filterArray((s) => s !== null))(liLineageEl);
1485
+ }
1486
+ function readSourceRecords$1(rootEl) {
1487
+ return extractSourceRecords(pipe(findNestedElement('gmd:dataQualityInfo', 'gmd:DQ_DataQuality', 'gmd:lineage', 'gmd:LI_Lineage'))(rootEl));
1488
+ }
1470
1489
  function readUpdateFrequency(rootEl) {
1471
1490
  return pipe(findIdentification(), findNestedElement('gmd:resourceMaintenance', 'gmd:MD_MaintenanceInformation'), extractUpdateFrequency(), map((updateFrequency) => updateFrequency || 'unknown'))(rootEl);
1472
1491
  }
@@ -1999,6 +2018,14 @@ function writeGraphicOverviews(record, rootEl) {
1999
2018
  function writeLineage$1(record, rootEl) {
2000
2019
  pipe(findNestedChildOrCreate('gmd:dataQualityInfo', 'gmd:DQ_DataQuality', 'gmd:lineage', 'gmd:LI_Lineage', 'gmd:statement'), writeLocalizedCharacterString(record.lineage, record.translations?.lineage, record.defaultLanguage))(rootEl);
2001
2020
  }
2021
+ function appendSourceRecords(sources) {
2022
+ return pipe(removeChildrenByName('gmd:source'), appendChildren(...sources
2023
+ .filter((source) => source.uuid || source.title || source.href)
2024
+ .map((source) => pipe(createElement('gmd:source'), source.uuid ? writeAttribute('uuidref', source.uuid) : noop, source.title ? writeAttribute('xlink:title', source.title) : noop, source.href ? writeAttribute('xlink:href', source.href) : noop))));
2025
+ }
2026
+ function writeSourceRecords$1(record, rootEl) {
2027
+ pipe(findNestedChildOrCreate('gmd:dataQualityInfo', 'gmd:DQ_DataQuality', 'gmd:lineage', 'gmd:LI_Lineage'), appendSourceRecords(record.sourceRecords))(rootEl);
2028
+ }
2002
2029
  function getServiceEndpointProtocol(endpoint) {
2003
2030
  switch (endpoint.accessServiceProtocol.toLowerCase()) {
2004
2031
  case 'wfs':
@@ -2125,6 +2152,7 @@ class Iso19139Converter extends BaseConverter {
2125
2152
  spatialRepresentation: readSpatialRepresentation,
2126
2153
  overviews: readOverviews,
2127
2154
  lineage: readLineage$1,
2155
+ sourceRecords: readSourceRecords$1,
2128
2156
  onlineResources: readOnlineResources$2,
2129
2157
  temporalExtents: readTemporalExtents,
2130
2158
  spatialExtents: readSpatialExtents$1,
@@ -2162,6 +2190,7 @@ class Iso19139Converter extends BaseConverter {
2162
2190
  spatialRepresentation: writeSpatialRepresentation$1,
2163
2191
  overviews: writeGraphicOverviews,
2164
2192
  lineage: writeLineage$1,
2193
+ sourceRecords: writeSourceRecords$1,
2165
2194
  onlineResources: writeOnlineResources$1,
2166
2195
  temporalExtents: writeTemporalExtents,
2167
2196
  spatialExtents: writeSpatialExtents,
@@ -2285,12 +2314,14 @@ class Iso19139Converter extends BaseConverter {
2285
2314
  const spatialRepresentation = this.readers['spatialRepresentation'](rootEl, tr);
2286
2315
  const temporalExtents = this.readers['temporalExtents'](rootEl, tr);
2287
2316
  const lineage = this.readers['lineage'](rootEl, tr);
2317
+ const sourceRecords = this.readers['sourceRecords'](rootEl, tr);
2288
2318
  const updateFrequency = this.readers['updateFrequency'](rootEl, tr);
2289
2319
  return this.afterRecordRead({
2290
2320
  ...this.readBaseRecord(rootEl, tr),
2291
2321
  kind,
2292
2322
  status,
2293
2323
  lineage,
2324
+ ...(sourceRecords && { sourceRecords }),
2294
2325
  ...(spatialRepresentation && { spatialRepresentation }),
2295
2326
  temporalExtents,
2296
2327
  updateFrequency,
@@ -2299,12 +2330,14 @@ class Iso19139Converter extends BaseConverter {
2299
2330
  }
2300
2331
  else if (kind === 'reuse') {
2301
2332
  const lineage = this.readers['lineage'](rootEl, tr);
2333
+ const sourceRecords = this.readers['sourceRecords'](rootEl, tr);
2302
2334
  const temporalExtents = this.readers['temporalExtents'](rootEl, tr);
2303
2335
  const reuseType = this.readers['reuseType'](rootEl, tr);
2304
2336
  return this.afterRecordRead({
2305
2337
  ...this.readBaseRecord(rootEl, tr),
2306
2338
  kind,
2307
2339
  lineage,
2340
+ ...(sourceRecords && { sourceRecords }),
2308
2341
  temporalExtents,
2309
2342
  reuseType,
2310
2343
  });
@@ -2390,6 +2423,8 @@ class Iso19139Converter extends BaseConverter {
2390
2423
  this.writers['spatialExtents'](record, rootEl);
2391
2424
  (fieldChanged('lineage') || fieldChanged('translations')) &&
2392
2425
  this.writers['lineage'](record, rootEl);
2426
+ fieldChanged('sourceRecords') &&
2427
+ this.writers['sourceRecords'](record, rootEl);
2393
2428
  }
2394
2429
  fieldChanged('otherLanguages') &&
2395
2430
  this.writers['otherLanguages'](record, rootEl);
@@ -2496,6 +2531,9 @@ function readLandingPage$1(rootEl) {
2496
2531
  function readLineage(rootEl, translations) {
2497
2532
  return pipe(findNestedElement('mdb:resourceLineage', 'mrl:LI_Lineage', 'mrl:statement'), extractLocalizedCharacterString('lineage', translations), map(([lineage]) => lineage))(rootEl);
2498
2533
  }
2534
+ function readSourceRecords(rootEl) {
2535
+ return extractSourceRecords(pipe(findNestedElement('mdb:resourceLineage', 'mrl:LI_Lineage'))(rootEl));
2536
+ }
2499
2537
  function extractDateInfo(type) {
2500
2538
  return pipe(findChildrenElement('mdb:dateInfo', false), filterArray((el) => pipe(findChildElement('cit:CI_DateTypeCode'), readAttribute('codeListValue'))(el) === type), getAtIndex(0), findChildElement('cit:date'), extractDateTime());
2501
2539
  }
@@ -2680,6 +2718,9 @@ function writeOtherLanguages(record, rootEl) {
2680
2718
  }
2681
2719
  appendChildren(...record.otherLanguages.map((lang) => pipe(createElement('mdb:otherLocale'), writeLocaleElement(lang))))(rootEl);
2682
2720
  }
2721
+ function writeSourceRecords(record, rootEl) {
2722
+ pipe(findNestedChildOrCreate('mdb:resourceLineage', 'mrl:LI_Lineage'), appendSourceRecords(record.sourceRecords))(rootEl);
2723
+ }
2683
2724
 
2684
2725
  class Iso191153Converter extends Iso19139Converter {
2685
2726
  constructor() {
@@ -2694,6 +2735,7 @@ class Iso191153Converter extends Iso19139Converter {
2694
2735
  this.readers['ownerOrganization'] = readOwnerOrganization$1;
2695
2736
  this.readers['landingPage'] = readLandingPage$1;
2696
2737
  this.readers['lineage'] = readLineage;
2738
+ this.readers['sourceRecords'] = readSourceRecords;
2697
2739
  this.readers['onlineResources'] = readOnlineResources$1;
2698
2740
  this.readers['defaultLanguage'] = readDefaultLanguage$1;
2699
2741
  this.readers['otherLanguages'] = readOtherLanguages;
@@ -2712,6 +2754,7 @@ class Iso191153Converter extends Iso19139Converter {
2712
2754
  this.writers['ownerOrganization'] = () => undefined; // fixme: find a way to store this value properly
2713
2755
  this.writers['landingPage'] = writeLandingPage;
2714
2756
  this.writers['lineage'] = writeLineage;
2757
+ this.writers['sourceRecords'] = writeSourceRecords;
2715
2758
  this.writers['onlineResources'] = writeOnlineResources;
2716
2759
  this.writers['status'] = writeStatus;
2717
2760
  this.writers['spatialRepresentation'] = writeSpatialRepresentation;
@@ -2794,6 +2837,8 @@ class Iso191153Converter extends Iso19139Converter {
2794
2837
  'gmd:MD_BrowseGraphic': 'mcc:MD_BrowseGraphic',
2795
2838
  'gmd:fileName': 'mcc:fileName',
2796
2839
  'gmd:fileDescription': 'mcc:fileDescription',
2840
+ // lineage sources
2841
+ 'gmd:source': 'mrl:source',
2797
2842
  // no more URL elements
2798
2843
  'gmd:URL': 'gco:CharacterString',
2799
2844
  });
@@ -3344,6 +3389,7 @@ class DcatApConverter extends BaseConverter {
3344
3389
  updateFrequency: () => 'unknown',
3345
3390
  overviews: () => [],
3346
3391
  lineage: () => '',
3392
+ sourceRecords: () => [],
3347
3393
  temporalExtents: () => [],
3348
3394
  spatialRepresentation: () => undefined,
3349
3395
  extras: () => undefined,
@@ -3377,6 +3423,7 @@ class DcatApConverter extends BaseConverter {
3377
3423
  spatialRepresentation: () => undefined,
3378
3424
  overviews: () => undefined,
3379
3425
  lineage: () => undefined,
3426
+ sourceRecords: () => [],
3380
3427
  onlineResources: () => undefined,
3381
3428
  temporalExtents: () => undefined,
3382
3429
  spatialExtents: () => undefined,
@@ -3422,6 +3469,7 @@ class DcatApConverter extends BaseConverter {
3422
3469
  const spatialExtents = this.readers['spatialExtents'](dataStore, catalogRecord, tr, defaultLanguage);
3423
3470
  const temporalExtents = this.readers['temporalExtents'](dataStore, catalogRecord, tr, defaultLanguage);
3424
3471
  const lineage = this.readers['lineage'](dataStore, catalogRecord, tr, defaultLanguage);
3472
+ const sourceRecords = this.readers['sourceRecords'](dataStore, catalogRecord, tr, defaultLanguage);
3425
3473
  const onlineResources = this.readers['onlineResources'](dataStore, catalogRecord, tr, defaultLanguage);
3426
3474
  const updateFrequency = this.readers['updateFrequency'](dataStore, catalogRecord, tr, defaultLanguage);
3427
3475
  return {
@@ -3448,6 +3496,7 @@ class DcatApConverter extends BaseConverter {
3448
3496
  securityConstraints,
3449
3497
  otherConstraints,
3450
3498
  lineage,
3499
+ sourceRecords,
3451
3500
  ...(spatialRepresentation && { spatialRepresentation }),
3452
3501
  overviews,
3453
3502
  spatialExtents,
@@ -24489,6 +24538,7 @@ class Gn4Converter extends BaseConverter {
24489
24538
  kind: 'dataset',
24490
24539
  status: null,
24491
24540
  lineage: null,
24541
+ sourceRecords: [],
24492
24542
  recordUpdated: null,
24493
24543
  recordPublished: null,
24494
24544
  ownerOrganization: null,
@@ -25434,7 +25484,7 @@ function checkFileFormat(link, format) {
25434
25484
  new RegExp(`[./]${format}`, 'i').test(link.name.toLowerCase())) ||
25435
25485
  ('url' in link &&
25436
25486
  new RegExp(`[./]${format}`, 'i').test(link.url.toString())) ||
25437
- ('name' in link && link.name.toLowerCase().includes(format)));
25487
+ ('name' in link && new RegExp(`\\b${format}\\b`, 'i').test(link.name)));
25438
25488
  }
25439
25489
  function getBadgeColor(linkFormat) {
25440
25490
  for (const format in FORMATS) {
@@ -25627,7 +25677,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
25627
25677
  }] } });
25628
25678
 
25629
25679
  var name = "geonetwork-ui";
25630
- var version = "2.10.0-dev.7e58935b2";
25680
+ var version = "2.10.0-dev.857c22250";
25631
25681
  var engines = {
25632
25682
  node: ">=20"
25633
25683
  };
@@ -26443,6 +26493,9 @@ const TEMPORARY_ID_PREFIX = 'TEMP-ID-';
26443
26493
  const DISABLE_DRAFT = new InjectionToken('gnDisableDraft', {
26444
26494
  factory: () => false,
26445
26495
  });
26496
+ const DEFAULT_RECORD_CONVERTER = new InjectionToken('defaultRecordConverter', {
26497
+ factory: () => new Iso19139Converter(),
26498
+ });
26446
26499
  class Gn4Repository {
26447
26500
  constructor() {
26448
26501
  this.httpClient = inject(HttpClient);
@@ -26454,6 +26507,7 @@ class Gn4Repository {
26454
26507
  this.gn4LanguagesApi = inject(LanguagesApiService);
26455
26508
  this.settingsService = inject(Gn4SettingsService);
26456
26509
  this.disableDraft = inject(DISABLE_DRAFT, { optional: true }) ?? false;
26510
+ this.defaultConverter = inject(DEFAULT_RECORD_CONVERTER);
26457
26511
  this._draftsChanged = new Subject();
26458
26512
  this.draftsChanged$ = this._draftsChanged.asObservable();
26459
26513
  }
@@ -26606,8 +26660,14 @@ class Gn4Repository {
26606
26660
  }));
26607
26661
  }
26608
26662
  openRecordForDuplication(uniqueIdentifier) {
26609
- return this.gn4RecordsApi
26610
- .create(uniqueIdentifier, '2', 'METADATA', '', false, undefined, true, false, undefined, 'body', false, {
26663
+ return this.platformService.getUserPermissionsByGroup().pipe(map$1((permissions) => {
26664
+ const groupId = permissions.find((p) => p.canApprove)?.groupId?.toString() ??
26665
+ permissions.find((p) => p.canEdit)?.groupId?.toString();
26666
+ if (!groupId)
26667
+ throw new Error('Current user has no writable group to duplicate into');
26668
+ return groupId;
26669
+ }), switchMap((groupId) => this.gn4RecordsApi
26670
+ .create(uniqueIdentifier, groupId, 'METADATA', '', false, undefined, true, false, undefined, 'body', false, {
26611
26671
  httpHeaderAccept: 'application/json',
26612
26672
  httpContentTypeSelected: 'application/json;charset=UTF-8',
26613
26673
  })
@@ -26619,7 +26679,7 @@ class Gn4Repository {
26619
26679
  .then((record) => {
26620
26680
  return [record, xml, true];
26621
26681
  }));
26622
- }));
26682
+ }))));
26623
26683
  }
26624
26684
  saveRecord(record, referenceRecordSource, publishToAll = true) {
26625
26685
  return this.platformService.getApiVersion().pipe(map$1((version) => {
@@ -26732,10 +26792,10 @@ class Gn4Repository {
26732
26792
  .pipe(map$1((response) => response.body), catchError((error) => error.status === 404 ? of(null) : throwError(() => error)));
26733
26793
  }
26734
26794
  serializeRecordToXml(record, referenceRecordSource) {
26735
- // if there's a reference record, use that standard; otherwise, use iso19139
26795
+ // if there's a reference record, use that standard; otherwise, use standard based on configuration or default
26736
26796
  const converter = referenceRecordSource
26737
26797
  ? findConverterForDocument(referenceRecordSource)
26738
- : new Iso19139Converter();
26798
+ : this.defaultConverter;
26739
26799
  return from(converter.writeRecord(record, referenceRecordSource));
26740
26800
  }
26741
26801
  getExternalRecordAsXml(recordDownloadUrl) {
@@ -27359,6 +27419,7 @@ class Gn4PlatformService {
27359
27419
  constructor() {
27360
27420
  this.meApi = inject(MeApiService);
27361
27421
  this.usersApi = inject(UsersApiService);
27422
+ this.groupsApi = inject(GroupsApiService);
27362
27423
  this.mapper = inject(Gn4PlatformMapper);
27363
27424
  this.toolsApiService = inject(ToolsApiService);
27364
27425
  this.registriesApiService = inject(RegistriesApiService);
@@ -27423,6 +27484,48 @@ class Gn4PlatformService {
27423
27484
  getUsers() {
27424
27485
  return this.users$;
27425
27486
  }
27487
+ getUserPermissionsByGroup() {
27488
+ if (this.disableAuth)
27489
+ return of([]);
27490
+ return combineLatest([this.meApi.getMe(), this.groupsApi.getGroups()]).pipe(map$1(([meResponse, groups]) => {
27491
+ if (!meResponse)
27492
+ return [];
27493
+ if (meResponse.admin) {
27494
+ return groups.map((group) => ({
27495
+ groupId: group.id,
27496
+ groupName: group.name,
27497
+ isMember: true,
27498
+ canEdit: true,
27499
+ canApprove: true,
27500
+ canAdministrate: true,
27501
+ }));
27502
+ }
27503
+ const reviewerIds = meResponse.groupsWithReviewer ?? [];
27504
+ const editorIds = meResponse.groupsWithEditor ?? [];
27505
+ const memberIds = meResponse.groupsWithRegisteredUser ?? [];
27506
+ const adminIds = meResponse.groupsWithUserAdmin ?? [];
27507
+ const groupsById = new Map(groups.map((g) => [g.id, g]));
27508
+ return [
27509
+ ...new Set([
27510
+ ...reviewerIds,
27511
+ ...editorIds,
27512
+ ...groups.map((g) => g.id),
27513
+ ]),
27514
+ ]
27515
+ .filter((id) => groupsById.has(id))
27516
+ .map((id) => {
27517
+ const group = groupsById.get(id);
27518
+ return {
27519
+ groupId: group.id,
27520
+ groupName: group.name,
27521
+ isMember: memberIds.includes(id),
27522
+ canEdit: editorIds.includes(id),
27523
+ canApprove: reviewerIds.includes(id),
27524
+ canAdministrate: adminIds.includes(id),
27525
+ };
27526
+ });
27527
+ }));
27528
+ }
27426
27529
  translateKey(key) {
27427
27530
  // if the key is a URI, use the registries API to look for the translation
27428
27531
  if (key.match(/^https?:\/\//)) {
@@ -28274,6 +28377,22 @@ function checkNewRecordDefaultLanguage(parsedConfigSection, outWarnings) {
28274
28377
  new_record_default_language: lang2,
28275
28378
  };
28276
28379
  }
28380
+ function checkNewRecordStandard(parsedConfigSection, outWarnings) {
28381
+ const standard = parsedConfigSection.new_record_standard;
28382
+ const normalizedStandard = typeof standard === 'string' ? standard.trim().toLowerCase() : null;
28383
+ if (normalizedStandard === 'iso19139' ||
28384
+ normalizedStandard === 'iso19115-3') {
28385
+ return {
28386
+ ...parsedConfigSection,
28387
+ new_record_standard: normalizedStandard,
28388
+ };
28389
+ }
28390
+ outWarnings.push(`In the [editing] section: new_record_standard = "${standard}" is not a supported metadata standard`);
28391
+ return {
28392
+ ...parsedConfigSection,
28393
+ new_record_standard: undefined,
28394
+ };
28395
+ }
28277
28396
 
28278
28397
  /**
28279
28398
  * This loader extends the default one based on JSON files but also loads custom translations
@@ -28475,16 +28594,21 @@ function loadAppConfig(configUrl = 'assets/configuration/default.toml') {
28475
28594
  ENABLED: parsedMetadataQualitySection.enabled,
28476
28595
  SORTABLE: parsedMetadataQualitySection.sortable,
28477
28596
  };
28478
- let parsedEditingSection = parseConfigSection(parsed, 'editing', [], ['new_record_default_language'], warnings, errors);
28597
+ let parsedEditingSection = parseConfigSection(parsed, 'editing', [], ['new_record_default_language', 'new_record_standard'], warnings, errors);
28479
28598
  if (parsedEditingSection !== null &&
28480
28599
  parsedEditingSection.new_record_default_language !== undefined) {
28481
28600
  parsedEditingSection = checkNewRecordDefaultLanguage(parsedEditingSection, warnings);
28482
28601
  }
28602
+ if (parsedEditingSection !== null &&
28603
+ parsedEditingSection.new_record_standard !== undefined) {
28604
+ parsedEditingSection = checkNewRecordStandard(parsedEditingSection, warnings);
28605
+ }
28483
28606
  editorConfig =
28484
28607
  parsedEditingSection === null
28485
28608
  ? null
28486
28609
  : {
28487
28610
  NEW_RECORD_DEFAULT_LANGUAGE: parsedEditingSection.new_record_default_language,
28611
+ NEW_RECORD_STANDARD: parsedEditingSection.new_record_standard,
28488
28612
  };
28489
28613
  customTranslations = parseTranslationsConfigSection(parsed, 'translations');
28490
28614
  if (errors.length) {
@@ -45025,5 +45149,5 @@ const CHART_TYPE_VALUES = [
45025
45149
  * Generated bundle index. Do not edit.
45026
45150
  */
45027
45151
 
45028
- export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer$2 as reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
45152
+ export { ABOUT_SECTION, ADD_RESULTS, ADD_SEARCH, ANNEXES_SECTION, ASSOCIATED_RESOURCES_SECTION, AVAILABLE_LICENSES, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CHART_TYPE_VALUES, CLASSIFICATION_SECTION, CLEAR_ERROR, CLEAR_RESULTS, CONSTRAINTS_SHORTCUTS, CONTACTS, CONTACTS_FOR_RESOURCE_FIELD, CarouselComponent, CatalogTitleComponent, CellPopinComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContactDetailsComponent, ContactPillComponent, ContentGhostComponent, CopyTextButtonComponent, DATA_MANAGERS_SECTION, DEFAULT_CONFIGURATION, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RECORD_CONVERTER, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DISABLE_AUTH, DISABLE_DRAFT, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, DateRangeInputsComponent, DateRangePickerComponent, DateRangeSearchField, DateService, DcatApConverter, DefaultRouterModule, DownloadItemComponent, DownloadsListComponent, DragAndDropFileInputComponent, DropdownMultiselectComponent, DropdownSelectorComponent, EDITOR_FEATURE_KEY, ES_QUERY_FIELDS_PRIORITY, ES_RESOURCES_VALUES, ES_SOURCE_SUMMARY, EXTERNAL_VIEWER_OPEN_NEW_TAB, EXTERNAL_VIEWER_URL_TEMPLATE, EditableLabelDirective, EditorFacade, EditorService, ElasticsearchService, EmbeddedTranslateLoader, ErrorComponent, ErrorType, ExpandablePanelButtonComponent, ExpandablePanelComponent, ExternalLinkCardComponent, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetItemComponent, FacetListComponent, FacetsContainerComponent, FavoriteStarComponent, FavoritesService, FeatureCatalogListComponent, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldFocusDirective, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldTopicsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEOGRAPHICAL_COVERAGE_SECTION, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GnUiHumanizeDateDirective, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, INSPIRE_TOPICS, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LEGAL_CONSTRAINTS_FIELD, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, MAX_UPLOAD_SIZE_MB, METADATA_LANGUAGE, METADATA_POINT_OF_CONTACT_SECTION, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataDoiComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, MetadataQualityPanelComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, OPEN_DATA_LICENSE, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OTHER_CONSTRAINTS_FIELD, OnlineResourceCardComponent, OnlineServiceResourceInputComponent, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OrganizationsServiceInterface, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PlatformServiceInterface, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_ABSTRACT_FIELD, RECORD_DATASET_URL_TOKEN, RECORD_GRAPHICAL_OVERVIEW_FIELD, RECORD_KEYWORDS_FIELD, RECORD_LICENSE_FIELD, RECORD_ONLINE_LINK_RESOURCES, RECORD_ONLINE_RESOURCES, RECORD_RESOURCE_CREATED_FIELD, RECORD_RESOURCE_UPDATED_FIELD, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, RECORD_SPATIAL_EXTENTS_FIELD, RECORD_SPATIAL_TOGGLE_FIELD, RECORD_TEMPORAL_EXTENTS_FIELD, RECORD_TITLE_FIELD, RECORD_TOPICS_FIELD, RECORD_UNIQUE_IDENTIFIER_FIELD, RECORD_UPDATED_FIELD, RECORD_UPDATE_FREQUENCY_FIELD, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESOURCE_IDENTIFIER_FIELD, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordStatusValues, RecordsMetricsComponent, RecordsRepositoryInterface, RecordsService, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, ReusePresentationForms, RoleLabels, RoleValues, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SECURITY_CONSTRAINTS_FIELD, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SPATIAL_SCOPES, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortByEnum, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StacItemsResultGridComponent, StacViewComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TITLE_SECTION, TOPICS_SECTION, TRANSLATE_DEBUG_CONFIG, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, USE_AND_ACCESS_CONDITIONS_SECTION, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, XmlParseError, _reset, allChildrenElement, appConfigWithTranslationFixture, appendChildTree, appendChildren, assertValidXml, blockModelFixture, bytesToMegabytes, canEditRecord, checkFileFormat, clearSelectedFeatures, createChild, createDocument, createElement, createFuzzyFilter, createNestedChild, createNestedElement, currentPage, defaultMapStyleFixture, defaultMapStyleHlFixture, downgradeImage, downsizeImage, draftSaveSuccess, dragPanCondition, dropEmptyTranslations, editorReducer, emptyBlockModelFixture, findChildElement, findChildOrCreate, findChildrenElement, findConverterForDocument, findNestedChildOrCreate, findNestedElement, findNestedElements, findParent, firstChildElement, formatDate, formatUserInfo, getAddressLines, getAllKeysValidator, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryBoundingBox, getGeometryFromGeoJSON, getGlobalConfig, getIndividualDisplayName, getIsMobile, getJsonDataItemsProxy, getLayers, getLinkId, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalEditorConfig, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getQualityValidators, getResourceType, getReusePresentationForm, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, handleScrollOnNavigation, hasRecordChangedSinceDraft, hasRecordChangedSinceDraftSuccess, initSearch, initialEditorState, initialMapState, initialState, isConfigLoaded, isDateRange, isFormatInQueryParam, isPublished, itemModelFixture, kindToCodeListValue, loadAppConfig, malformedConfigFixture, mapConfigFixture, mapContact, mapKeywords, mapLogo, mapOrganization, mapReducer, markRecordAsChanged, matchesNoApplicableConstraint, matchesNoKnownConstraint, megabytesToBytes, mimeTypeToFormat, minimalAppConfigFixture, missingMandatoryConfigFixture, mouseWheelZoomCondition, noDuplicateFileName, okAppConfigFixture, openDataset, openRecord, organizationsServiceFactory, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, provideI18n, provideRepositoryUrl, readAttribute, readDataset, readDatasetHeaders, readText, reducer$2 as reducer, reducerSearch, removeAllChildren, removeChildren, removeChildrenByName, removeSearchParams, removeWhitespace, renameElements, saveRecord, saveRecordFailure, saveRecordSuccess, selectCanEditRecord, selectCurrentPage, selectEditorConfig, selectEditorState, selectFallback, selectFallbackFields, selectField, selectHasRecordChanged, selectIsPublished, selectRecord, selectRecordChangedSinceSave, selectRecordSaveError, selectRecordSaving, selectRecordSections, selectRecordSource, selectTranslatedField, selectTranslatedValue, setContext, setCurrentPage, setEditorConfiguration, setFieldVisibility, setFocusedField, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, toIndividual, toLang2, toLang3, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateFrequencyCodeValues, updateLanguages, updateRecordField, updateRecordLanguages, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
45029
45153
  //# sourceMappingURL=geonetwork-ui.mjs.map