geonetwork-ui 2.6.0-dev.ceb4be4c1 → 2.6.0-dev.d1dbf336f
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/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +8 -4
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +5 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +2 -2
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +14 -5
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +266 -11
- package/esm2022/libs/ui/search/src/index.mjs +2 -1
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +19 -12
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +10 -4
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +42 -1
- package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +24 -2
- package/esm2022/translations/de.json +28 -4
- package/esm2022/translations/en.json +28 -4
- package/esm2022/translations/es.json +27 -3
- package/esm2022/translations/fr.json +28 -4
- package/esm2022/translations/it.json +27 -3
- package/esm2022/translations/nl.json +27 -3
- package/esm2022/translations/pt.json +27 -3
- package/fesm2022/geonetwork-ui.mjs +604 -107
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +4 -2
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +1 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +48 -3
- package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -1
- package/libs/ui/search/src/index.d.ts +1 -0
- package/libs/ui/search/src/index.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +3 -3
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/ui-search.module.d.ts +2 -1
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +1 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/language-codes.d.ts +23 -1
- package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +13 -3
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +5 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +6 -3
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +4 -1
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +16 -2
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +117 -11
- package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +316 -6
- package/src/libs/ui/search/src/index.ts +1 -0
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +11 -3
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +14 -11
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -1
- package/src/libs/ui/search/src/lib/ui-search.module.ts +3 -0
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +42 -0
- package/src/libs/util/i18n/src/lib/language-codes.ts +23 -1
- package/tailwind.base.css +1 -1
- package/translations/de.json +28 -4
- package/translations/en.json +28 -4
- package/translations/es.json +27 -3
- package/translations/fr.json +28 -4
- package/translations/it.json +27 -3
- package/translations/nl.json +27 -3
- package/translations/pt.json +27 -3
- package/translations/sk.json +27 -3
|
@@ -26,7 +26,7 @@ import { createAction, props, createReducer, on, createFeatureSelector, createSe
|
|
|
26
26
|
import EmblaCarousel from 'embla-carousel';
|
|
27
27
|
import * as i2$2 from '@ng-icons/core';
|
|
28
28
|
import { provideIcons, NgIcon, NgIconComponent, provideNgIconsConfig, NgIconsModule } from '@ng-icons/core';
|
|
29
|
-
import { iconoirNavArrowRight, iconoirNavArrowLeft, iconoirNavArrowDown, iconoirNavArrowUp, iconoirSearch, iconoirLongArrowDownLeft, iconoirCalendar, iconoirLink, iconoirArrowUp, iconoirCloudUpload, iconoirFramePlusIn, iconoirExpand, iconoirReduce, iconoirAppleWallet, iconoirAppleShortcuts, iconoirCode, iconoirCreditCard, iconoirInternet, iconoirSettings, iconoirDownload, iconoirMediaImage, iconoirMediaImageXmark, iconoirBin, iconoirPlus, iconoirUser, iconoirLock, iconoirTranslate, iconoirImport, iconoirLightBulbOn, iconoirArrowLeft, iconoirAttachment, iconoirRefresh } from '@ng-icons/iconoir';
|
|
29
|
+
import { iconoirNavArrowRight, iconoirNavArrowLeft, iconoirNavArrowDown, iconoirNavArrowUp, iconoirSearch, iconoirLongArrowDownLeft, iconoirCalendar, iconoirLink, iconoirArrowUp, iconoirCloudUpload, iconoirFramePlusIn, iconoirExpand, iconoirReduce, iconoirAppleWallet, iconoirAppleShortcuts, iconoirCode, iconoirCreditCard, iconoirInternet, iconoirSettings, iconoirDownload, iconoirMediaImage, iconoirMediaImageXmark, iconoirBin, iconoirPlus, iconoirUser, iconoirLock, iconoirTranslate, iconoirImport, iconoirLightBulbOn, iconoirArrowLeft, iconoirAttachment, iconoirRefresh, iconoirCheckCircle, iconoirCircle } from '@ng-icons/iconoir';
|
|
30
30
|
import { matExpandMore, matExpandLess, matAdd, matRemove, matClose, matContentCopy, matSearch, matStar, matStarBorder, matChevronLeft, matChevronRight, matArrowBackIos, matArrowForwardIos, matCheck, matWarningAmber, matFace, matQuestionMark, matMoodBad, matZoomOutMap, matOpenInNew, matMailOutline, matPersonOutline, matCheckCircleOutline, matWarning, matMoreVert, matCorporateFare } from '@ng-icons/material-icons/baseline';
|
|
31
31
|
import * as i3 from '@angular/material/tooltip';
|
|
32
32
|
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
@@ -41,7 +41,7 @@ import { TagInputModule } from 'ngx-chips';
|
|
|
41
41
|
import * as i1$4 from '@angular/material/progress-spinner';
|
|
42
42
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
43
43
|
import tippy from 'tippy.js';
|
|
44
|
-
import { matErrorOutlineOutline, matLocationSearchingOutline, matInfoOutline, matEmailOutline, matPhoneOutline, matLocationOnOutline, matComputerOutline, matCallOutline, matSwipeOutline, matMailOutline as matMailOutline$1, matWarningAmberOutline, matCloseOutline, matSendOutline, matMapOutline, matCloudDownloadOutline, matHomeWorkOutline, matLayersOutline, matAddCircleOutlineOutline } from '@ng-icons/material-icons/outline';
|
|
44
|
+
import { matErrorOutlineOutline, matLocationSearchingOutline, matInfoOutline, matEmailOutline, matPhoneOutline, matLocationOnOutline, matComputerOutline, matCallOutline, matSwipeOutline, matMailOutline as matMailOutline$1, matWarningAmberOutline, matCloseOutline, matSendOutline, matMapOutline, matCloudDownloadOutline, matHomeWorkOutline, matLayersOutline, matAddCircleOutlineOutline, matMoreHorizOutline } from '@ng-icons/material-icons/outline';
|
|
45
45
|
import * as i2 from '@angular/material/core';
|
|
46
46
|
import { MatNativeDateModule, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
|
|
47
47
|
import * as i1$6 from '@angular/material/checkbox';
|
|
@@ -909,6 +909,17 @@ const LANG_3_TO_2_MAPPER = {
|
|
|
909
909
|
chi: 'zh',
|
|
910
910
|
slo: 'sk',
|
|
911
911
|
roh: 'rm',
|
|
912
|
+
ara: 'ar',
|
|
913
|
+
dan: 'da',
|
|
914
|
+
nor: 'no',
|
|
915
|
+
pol: 'pl',
|
|
916
|
+
swe: 'sv',
|
|
917
|
+
tur: 'tr',
|
|
918
|
+
arm: 'hy',
|
|
919
|
+
aze: 'az',
|
|
920
|
+
geo: 'ka',
|
|
921
|
+
ukr: 'uk',
|
|
922
|
+
wel: 'cy',
|
|
912
923
|
};
|
|
913
924
|
const LANGUAGE_NAMES = {
|
|
914
925
|
en: 'English',
|
|
@@ -926,7 +937,18 @@ const LANGUAGE_NAMES = {
|
|
|
926
937
|
ru: 'Русский',
|
|
927
938
|
zh: '中文',
|
|
928
939
|
sk: 'Slovenčina',
|
|
929
|
-
|
|
940
|
+
rm: 'Rumantsch',
|
|
941
|
+
ar: 'العربية',
|
|
942
|
+
da: 'Dansk',
|
|
943
|
+
no: 'Norsk',
|
|
944
|
+
pl: 'Polski',
|
|
945
|
+
sv: 'Swedish',
|
|
946
|
+
tr: 'Türkçe',
|
|
947
|
+
hy: 'հայերեն',
|
|
948
|
+
az: 'Azərbaycan dili',
|
|
949
|
+
ka: 'ქართული',
|
|
950
|
+
uk: 'українська',
|
|
951
|
+
wel: 'Cymraeg',
|
|
930
952
|
};
|
|
931
953
|
const LANG_2_TO_3_MAPPER = Object.entries(LANG_3_TO_2_MAPPER).reduce((mapperObject, langEntry) => {
|
|
932
954
|
return { ...mapperObject, [langEntry[1]]: langEntry[0] };
|
|
@@ -1437,10 +1459,10 @@ function readSpatialExtents$1(rootEl) {
|
|
|
1437
1459
|
}
|
|
1438
1460
|
function readOtherLanguages$1(rootEl) {
|
|
1439
1461
|
const defaultLanguage = readDefaultLanguage$2(rootEl);
|
|
1440
|
-
return pipe(findChildrenElement('gmd:locale', false), mapArray(pipe(findChildElement('
|
|
1462
|
+
return pipe(findChildrenElement('gmd:locale', false), mapArray(pipe(findChildElement('lan:LanguageCode'), readAttribute('codeListValue'), map((lang) => LANG_3_TO_2_MAPPER[lang.toLowerCase()] ?? lang))), map((languages) => languages.filter((lang) => lang !== null)), map((languages) => (languages.length ? languages : [defaultLanguage])))(rootEl);
|
|
1441
1463
|
}
|
|
1442
1464
|
function readDefaultLanguage$2(rootEl) {
|
|
1443
|
-
return pipe(findChildElement('gmd:language', false), findChildElement('
|
|
1465
|
+
return pipe(findChildElement('gmd:language', false), findChildElement('lan:LanguageCode'), readAttribute('codeListValue'), map((lang) => (lang ? LANG_3_TO_2_MAPPER[lang.toLowerCase()] : null)))(rootEl);
|
|
1444
1466
|
}
|
|
1445
1467
|
function readResourceIdentifier(rootEl) {
|
|
1446
1468
|
return pipe(findIdentification(), findNestedElement('gmd:citation', 'gmd:CI_Citation', 'gmd:identifier', 'gmd:MD_Identifier', 'gmd:code'), extractCharacterString())(rootEl);
|
|
@@ -1936,7 +1958,7 @@ function writeLanguages(record, rootEl) {
|
|
|
1936
1958
|
if (!record.otherLanguages?.length) {
|
|
1937
1959
|
return;
|
|
1938
1960
|
}
|
|
1939
|
-
const createLanguageEl = (lang) => pipe(createNestedElement('gmd:locale', 'gmd:PT_Locale'), writeAttribute('id', lang.toUpperCase()), createNestedChild('gmd:languageCode', 'gmd:LanguageCode'), writeAttribute('codeList', 'http://www.loc.gov/standards/iso639-2/'), writeAttribute('codeListValue', LANG_2_TO_3_MAPPER[lang]));
|
|
1961
|
+
const createLanguageEl = (lang) => pipe(createNestedElement('gmd:locale', 'gmd:PT_Locale'), writeAttribute('id', lang.toUpperCase()), createNestedChild('gmd:languageCode', 'gmd:LanguageCode'), writeAttribute('codeList', 'http://www.loc.gov/standards/iso639-2/'), writeAttribute('codeListValue', lang.length === 2 ? LANG_2_TO_3_MAPPER[lang] : lang));
|
|
1940
1962
|
// add new languages (only if other than default one)
|
|
1941
1963
|
appendChildren(createLanguageEl(record.defaultLanguage), ...record.otherLanguages.map(createLanguageEl))(rootEl);
|
|
1942
1964
|
}
|
|
@@ -2374,13 +2396,17 @@ function readOnlineResources$1(rootEl) {
|
|
|
2374
2396
|
return pipe(findNestedElements('mrd:distributionInfo', 'mrd:MD_Distribution'), mapArray(getOnlineResources), flattenArray())(rootEl);
|
|
2375
2397
|
}
|
|
2376
2398
|
function readLocaleElement() {
|
|
2377
|
-
return pipe(findChildElement('lan:LanguageCode'), readAttribute('codeListValue'), map((lang) =>
|
|
2399
|
+
return pipe(findChildElement('lan:LanguageCode'), readAttribute('codeListValue'), map((lang) => {
|
|
2400
|
+
const normalized = lang?.toLowerCase();
|
|
2401
|
+
const iso2Lang = LANG_3_TO_2_MAPPER[normalized];
|
|
2402
|
+
return iso2Lang ?? lang;
|
|
2403
|
+
}));
|
|
2378
2404
|
}
|
|
2379
2405
|
function readDefaultLanguage$1(rootEl) {
|
|
2380
2406
|
return pipe(findChildElement('mdb:defaultLocale', false), readLocaleElement())(rootEl);
|
|
2381
2407
|
}
|
|
2382
2408
|
function readOtherLanguages(rootEl) {
|
|
2383
|
-
return pipe(findChildrenElement('mdb:otherLocale', false), mapArray(readLocaleElement()))(rootEl);
|
|
2409
|
+
return pipe(findChildrenElement('mdb:otherLocale', false), mapArray(readLocaleElement()), map((languages) => languages.filter((lang) => lang !== null)))(rootEl);
|
|
2384
2410
|
}
|
|
2385
2411
|
|
|
2386
2412
|
function writeUniqueIdentifier$1(record, rootEl) {
|
|
@@ -2513,7 +2539,10 @@ function writeOnlineResources(record, rootEl) {
|
|
|
2513
2539
|
});
|
|
2514
2540
|
}
|
|
2515
2541
|
function writeLocaleElement(language) {
|
|
2516
|
-
const
|
|
2542
|
+
const normalizedLang = language.toLowerCase();
|
|
2543
|
+
const lang3 = normalizedLang.length === 2
|
|
2544
|
+
? LANG_2_TO_3_MAPPER[normalizedLang]
|
|
2545
|
+
: normalizedLang;
|
|
2517
2546
|
return pipe(findChildOrCreate('lan:PT_Locale'), writeAttribute('id', language.toUpperCase()), findNestedChildOrCreate('lan:language', 'gmd:LanguageCode'), writeAttribute('codeList', 'http://www.loc.gov/standards/iso639-2/'), writeAttribute('codeListValue', lang3));
|
|
2518
2547
|
}
|
|
2519
2548
|
function writeDefaultLanguage(record, rootEl) {
|
|
@@ -18502,9 +18531,50 @@ marker('language.pt');
|
|
|
18502
18531
|
marker('language.ru');
|
|
18503
18532
|
marker('language.zh');
|
|
18504
18533
|
marker('language.sk');
|
|
18534
|
+
marker('language.rm');
|
|
18535
|
+
marker('language.ar');
|
|
18536
|
+
marker('language.da');
|
|
18537
|
+
marker('language.no');
|
|
18538
|
+
marker('language.pl');
|
|
18539
|
+
marker('language.sv');
|
|
18540
|
+
marker('language.tr');
|
|
18541
|
+
marker('language.hy');
|
|
18542
|
+
marker('language.az');
|
|
18543
|
+
marker('language.ka');
|
|
18544
|
+
marker('language.uk');
|
|
18545
|
+
marker('language.cy');
|
|
18505
18546
|
const DEFAULT_LANG = 'en';
|
|
18506
18547
|
// Caution: changing this can break language selection from third parties!
|
|
18507
18548
|
const LANGUAGE_STORAGE_KEY = 'geonetwork-ui-language';
|
|
18549
|
+
const SUPPORTED_LANGUAGES = [
|
|
18550
|
+
'en',
|
|
18551
|
+
'nl',
|
|
18552
|
+
'fr',
|
|
18553
|
+
'de',
|
|
18554
|
+
'ko',
|
|
18555
|
+
'es',
|
|
18556
|
+
'cs',
|
|
18557
|
+
'ca',
|
|
18558
|
+
'fi',
|
|
18559
|
+
'is',
|
|
18560
|
+
'it',
|
|
18561
|
+
'pt',
|
|
18562
|
+
'ru',
|
|
18563
|
+
'zh',
|
|
18564
|
+
'sk',
|
|
18565
|
+
'rm',
|
|
18566
|
+
'ar',
|
|
18567
|
+
'da',
|
|
18568
|
+
'no',
|
|
18569
|
+
'pl',
|
|
18570
|
+
'sv',
|
|
18571
|
+
'tr',
|
|
18572
|
+
'hy',
|
|
18573
|
+
'az',
|
|
18574
|
+
'ka',
|
|
18575
|
+
'uk',
|
|
18576
|
+
'cy',
|
|
18577
|
+
];
|
|
18508
18578
|
function HttpLoaderFactory(http) {
|
|
18509
18579
|
return new FileTranslateLoader(http, './assets/i18n/');
|
|
18510
18580
|
}
|
|
@@ -18811,9 +18881,13 @@ var de = {
|
|
|
18811
18881
|
"editor.record.form.license.odc-by": "",
|
|
18812
18882
|
"editor.record.form.license.pddl": "",
|
|
18813
18883
|
"editor.record.form.license.unknown": "",
|
|
18884
|
+
"editor.record.form.multilingual.activate": "",
|
|
18885
|
+
"editor.record.form.multilingual.default": "",
|
|
18814
18886
|
"editor.record.form.multilingual.enable": "",
|
|
18887
|
+
"editor.record.form.multilingual.forbidden": "",
|
|
18815
18888
|
"editor.record.form.multilingual.open": "",
|
|
18816
18889
|
"editor.record.form.multilingual.title": "",
|
|
18890
|
+
"editor.record.form.multilingual.validate": "",
|
|
18817
18891
|
"editor.record.form.page.accessAndContact": "",
|
|
18818
18892
|
"editor.record.form.page.description": "",
|
|
18819
18893
|
"editor.record.form.page.resources": "",
|
|
@@ -18845,6 +18919,10 @@ var de = {
|
|
|
18845
18919
|
"editor.record.loadError.title": "Fehler beim Laden des Datensatzes",
|
|
18846
18920
|
"editor.record.lock.format": "",
|
|
18847
18921
|
"editor.record.lock.reason": "",
|
|
18922
|
+
"editor.record.multilingual.confirmation.cancelText": "",
|
|
18923
|
+
"editor.record.multilingual.confirmation.confirmText": "",
|
|
18924
|
+
"editor.record.multilingual.confirmation.message": "",
|
|
18925
|
+
"editor.record.multilingual.confirmation.title": "",
|
|
18848
18926
|
"editor.record.onlineResource.protocol.other": "",
|
|
18849
18927
|
"editor.record.onlineResourceError.body": "",
|
|
18850
18928
|
"editor.record.onlineResourceError.closeMessage": "",
|
|
@@ -18905,20 +18983,32 @@ var de = {
|
|
|
18905
18983
|
"input.image.uploadErrorLabel": "",
|
|
18906
18984
|
"input.image.uploadProgressCancel": "",
|
|
18907
18985
|
"input.image.uploadProgressLabel": "",
|
|
18986
|
+
"language.ar": "",
|
|
18987
|
+
"language.az": "",
|
|
18908
18988
|
"language.ca": "Katalanisch",
|
|
18909
18989
|
"language.cs": "Tschechisch",
|
|
18990
|
+
"language.cy": "",
|
|
18991
|
+
"language.da": "",
|
|
18910
18992
|
"language.de": "Deutsch",
|
|
18911
18993
|
"language.en": "Englisch",
|
|
18912
18994
|
"language.es": "Spanisch",
|
|
18913
18995
|
"language.fi": "Finnisch",
|
|
18914
18996
|
"language.fr": "Französisch",
|
|
18997
|
+
"language.hy": "",
|
|
18915
18998
|
"language.is": "Isländisch",
|
|
18916
18999
|
"language.it": "Italienisch",
|
|
19000
|
+
"language.ka": "",
|
|
18917
19001
|
"language.ko": "Koreanisch",
|
|
18918
19002
|
"language.nl": "Niederländisch",
|
|
19003
|
+
"language.no": "",
|
|
19004
|
+
"language.pl": "",
|
|
18919
19005
|
"language.pt": "Portugiesisch",
|
|
19006
|
+
"language.rm": "",
|
|
18920
19007
|
"language.ru": "Russisch",
|
|
18921
19008
|
"language.sk": "Slowakisch",
|
|
19009
|
+
"language.sv": "",
|
|
19010
|
+
"language.tr": "",
|
|
19011
|
+
"language.uk": "",
|
|
18922
19012
|
"language.zh": "Chinesisch",
|
|
18923
19013
|
"map.add.layer": "Eine Ebene hinzufügen",
|
|
18924
19014
|
"map.add.layer.catalog": "Aus dem Katalog",
|
|
@@ -18965,6 +19055,7 @@ var de = {
|
|
|
18965
19055
|
"record.action.duplicate": "",
|
|
18966
19056
|
"record.action.duplicating": "",
|
|
18967
19057
|
"record.action.rollback": "",
|
|
19058
|
+
"record.action.switchLang": "",
|
|
18968
19059
|
"record.action.view": "Anzeigen",
|
|
18969
19060
|
"record.card.metadata.contact": "",
|
|
18970
19061
|
"record.externalViewer.open": "In externem Kartenviewer öffnen",
|
|
@@ -19015,9 +19106,15 @@ var de = {
|
|
|
19015
19106
|
"record.metadata.download": "Downloads",
|
|
19016
19107
|
"record.metadata.feature.catalog": "",
|
|
19017
19108
|
"record.metadata.formats": "Formate",
|
|
19109
|
+
"record.metadata.isGeographical": "Geographischer Datensatz",
|
|
19018
19110
|
"record.metadata.keywords": "Stichworte",
|
|
19019
19111
|
"record.metadata.languages": "Sprachen",
|
|
19020
19112
|
"record.metadata.lastUpdate": "Zuletzt aktualisiert am {date}",
|
|
19113
|
+
"record.metadata.linked.datasets": "Verknüpfte Datensätze",
|
|
19114
|
+
"record.metadata.linked.records": "Verknüpfte Inhalte",
|
|
19115
|
+
"record.metadata.linked.reuses": "Verknüpfte Wiederverwendungen",
|
|
19116
|
+
"record.metadata.linked.services": "Verknüpfte Dienste",
|
|
19117
|
+
"record.metadata.linked.sourceDatasets": "Quelldatensätze",
|
|
19021
19118
|
"record.metadata.links": "Links",
|
|
19022
19119
|
"record.metadata.noUsage": "Für diesen Datensatz sind keine Nutzungsbedingungen angegeben.",
|
|
19023
19120
|
"record.metadata.otherConstraints": "Zusätzliche Bedingungen",
|
|
@@ -19044,8 +19141,7 @@ var de = {
|
|
|
19044
19141
|
"record.metadata.quality.topic.success": "Thema angegeben",
|
|
19045
19142
|
"record.metadata.quality.updateFrequency.failed": "Aktualisierungsfrequenz nicht angegeben",
|
|
19046
19143
|
"record.metadata.quality.updateFrequency.success": "Aktualisierungsfrequenz angegeben",
|
|
19047
|
-
"record.metadata.related": "
|
|
19048
|
-
"record.metadata.related.contents": "",
|
|
19144
|
+
"record.metadata.related": "Entdecken Sie den Katalog",
|
|
19049
19145
|
"record.metadata.ressources.and.links": "Ressourcen und Links",
|
|
19050
19146
|
"record.metadata.sheet": "Weitere Informationen verfügbar unter:",
|
|
19051
19147
|
"record.metadata.status": "Status",
|
|
@@ -19057,7 +19153,6 @@ var de = {
|
|
|
19057
19153
|
"record.metadata.temporalExtent.untilDate": "Bis {end}",
|
|
19058
19154
|
"record.metadata.title": "Titel",
|
|
19059
19155
|
"record.metadata.topics": "Kategorien",
|
|
19060
|
-
"record.metadata.isGeographical": "Geographischer Datensatz",
|
|
19061
19156
|
"record.metadata.uniqueId": "Eindeutige Kennung",
|
|
19062
19157
|
"record.metadata.updateFrequency": "Aktualisierungsfrequenz der Daten",
|
|
19063
19158
|
"record.metadata.updatedOn": "Geändert am",
|
|
@@ -19177,7 +19272,6 @@ var de = {
|
|
|
19177
19272
|
"tooltip.html.copy": "HTML kopieren",
|
|
19178
19273
|
"tooltip.id.copy": "Eindeutige Kennung kopieren",
|
|
19179
19274
|
"tooltip.url.copy": "URL kopieren",
|
|
19180
|
-
"tooltip.url.open": "URL öffnen",
|
|
19181
19275
|
"ui.readLess": "Weniger lesen",
|
|
19182
19276
|
"ui.readMore": "Weiterlesen",
|
|
19183
19277
|
"wfs.feature.limit": "Zu viele Features, um den WFS-Layer anzuzeigen!",
|
|
@@ -19399,9 +19493,13 @@ var en = {
|
|
|
19399
19493
|
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
19400
19494
|
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
19401
19495
|
"editor.record.form.license.unknown": "Unknown or absent",
|
|
19496
|
+
"editor.record.form.multilingual.activate": "Activate the languages",
|
|
19497
|
+
"editor.record.form.multilingual.default": "Default",
|
|
19402
19498
|
"editor.record.form.multilingual.enable": "Multilingual Mode",
|
|
19499
|
+
"editor.record.form.multilingual.forbidden": "You are not allowed to remove the default language",
|
|
19403
19500
|
"editor.record.form.multilingual.open": "Open the multilingual panel",
|
|
19404
19501
|
"editor.record.form.multilingual.title": "Translations",
|
|
19502
|
+
"editor.record.form.multilingual.validate": "Validate",
|
|
19405
19503
|
"editor.record.form.page.accessAndContact": "Information for use",
|
|
19406
19504
|
"editor.record.form.page.description": "Dataset description",
|
|
19407
19505
|
"editor.record.form.page.resources": "Resources",
|
|
@@ -19433,6 +19531,10 @@ var en = {
|
|
|
19433
19531
|
"editor.record.loadError.title": "Error loading dataset",
|
|
19434
19532
|
"editor.record.lock.format": "Record with the format 'service' or 'reuse' are not editable",
|
|
19435
19533
|
"editor.record.lock.reason": "You are not an editor of the allowed groups",
|
|
19534
|
+
"editor.record.multilingual.confirmation.cancelText": "Keep the language(s)",
|
|
19535
|
+
"editor.record.multilingual.confirmation.confirmText": "Remove the language(s)",
|
|
19536
|
+
"editor.record.multilingual.confirmation.message": "You are about to remove one or several languages, which will delete all of the related translations and is irreversible. Do you want to proceed?",
|
|
19537
|
+
"editor.record.multilingual.confirmation.title": "Remove languages",
|
|
19436
19538
|
"editor.record.onlineResource.protocol.other": "Other",
|
|
19437
19539
|
"editor.record.onlineResourceError.body": "An error happened while adding the resource:",
|
|
19438
19540
|
"editor.record.onlineResourceError.closeMessage": "Understood",
|
|
@@ -19493,20 +19595,32 @@ var en = {
|
|
|
19493
19595
|
"input.image.uploadErrorLabel": "The image could not be uploaded",
|
|
19494
19596
|
"input.image.uploadProgressCancel": "Cancel",
|
|
19495
19597
|
"input.image.uploadProgressLabel": "Upload in progress...",
|
|
19598
|
+
"language.ar": "Arabic",
|
|
19599
|
+
"language.az": "Azerbaijani",
|
|
19496
19600
|
"language.ca": "Catalan",
|
|
19497
19601
|
"language.cs": "Czech",
|
|
19602
|
+
"language.cy": "Welsh",
|
|
19603
|
+
"language.da": "Danish",
|
|
19498
19604
|
"language.de": "German",
|
|
19499
19605
|
"language.en": "English",
|
|
19500
19606
|
"language.es": "Spanish",
|
|
19501
19607
|
"language.fi": "Finnish",
|
|
19502
19608
|
"language.fr": "French",
|
|
19609
|
+
"language.hy": "Armenian",
|
|
19503
19610
|
"language.is": "Icelandic",
|
|
19504
19611
|
"language.it": "Italian",
|
|
19612
|
+
"language.ka": "Georgian",
|
|
19505
19613
|
"language.ko": "Korean",
|
|
19506
19614
|
"language.nl": "Dutch",
|
|
19615
|
+
"language.no": "Norwegian",
|
|
19616
|
+
"language.pl": "Polish",
|
|
19507
19617
|
"language.pt": "Portuguese",
|
|
19618
|
+
"language.rm": "Romansh",
|
|
19508
19619
|
"language.ru": "Russian",
|
|
19509
19620
|
"language.sk": "Slovak",
|
|
19621
|
+
"language.sv": "Swedish",
|
|
19622
|
+
"language.tr": "Turkish",
|
|
19623
|
+
"language.uk": "Ukrainian",
|
|
19510
19624
|
"language.zh": "Chinese",
|
|
19511
19625
|
"map.add.layer": "Add a layer",
|
|
19512
19626
|
"map.add.layer.catalog": "From the catalog",
|
|
@@ -19553,6 +19667,7 @@ var en = {
|
|
|
19553
19667
|
"record.action.duplicate": "Duplicate",
|
|
19554
19668
|
"record.action.duplicating": "Duplicating...",
|
|
19555
19669
|
"record.action.rollback": "Rollback",
|
|
19670
|
+
"record.action.switchLang": "Switch to default",
|
|
19556
19671
|
"record.action.view": "View",
|
|
19557
19672
|
"record.card.metadata.contact": "Metadata Contact",
|
|
19558
19673
|
"record.externalViewer.open": "Open in the external map viewer",
|
|
@@ -19603,9 +19718,15 @@ var en = {
|
|
|
19603
19718
|
"record.metadata.download": "Downloads",
|
|
19604
19719
|
"record.metadata.feature.catalog": "Feature catalog",
|
|
19605
19720
|
"record.metadata.formats": "Formats",
|
|
19721
|
+
"record.metadata.isGeographical": "Geographical dataset",
|
|
19606
19722
|
"record.metadata.keywords": "Keywords",
|
|
19607
19723
|
"record.metadata.languages": "Languages",
|
|
19608
19724
|
"record.metadata.lastUpdate": "Last updated on {date}",
|
|
19725
|
+
"record.metadata.linked.datasets": "Associated datasets",
|
|
19726
|
+
"record.metadata.linked.records": "Associated content",
|
|
19727
|
+
"record.metadata.linked.reuses": "Associated reuses",
|
|
19728
|
+
"record.metadata.linked.services": "Associated services",
|
|
19729
|
+
"record.metadata.linked.sourceDatasets": "Source datasets",
|
|
19609
19730
|
"record.metadata.links": "Links",
|
|
19610
19731
|
"record.metadata.noUsage": "No usage conditions specified for this dataset.",
|
|
19611
19732
|
"record.metadata.otherConstraints": "Additional Conditions",
|
|
@@ -19632,8 +19753,7 @@ var en = {
|
|
|
19632
19753
|
"record.metadata.quality.topic.success": "Topic is specified",
|
|
19633
19754
|
"record.metadata.quality.updateFrequency.failed": "Update frequency is not specified",
|
|
19634
19755
|
"record.metadata.quality.updateFrequency.success": "Update frequency is specified",
|
|
19635
|
-
"record.metadata.related": "
|
|
19636
|
-
"record.metadata.related.contents": "Related content",
|
|
19756
|
+
"record.metadata.related": "Explore the catalog",
|
|
19637
19757
|
"record.metadata.ressources.and.links": "Resources and links",
|
|
19638
19758
|
"record.metadata.sheet": "Original metadata",
|
|
19639
19759
|
"record.metadata.status": "Status",
|
|
@@ -19645,7 +19765,6 @@ var en = {
|
|
|
19645
19765
|
"record.metadata.temporalExtent.untilDate": "Until { end }",
|
|
19646
19766
|
"record.metadata.title": "Title",
|
|
19647
19767
|
"record.metadata.topics": "Categories",
|
|
19648
|
-
"record.metadata.isGeographical": "Geographical dataset",
|
|
19649
19768
|
"record.metadata.uniqueId": "Unique Identifier",
|
|
19650
19769
|
"record.metadata.updateFrequency": "Data Update Frequency",
|
|
19651
19770
|
"record.metadata.updatedOn": "Updated on",
|
|
@@ -19765,7 +19884,6 @@ var en = {
|
|
|
19765
19884
|
"tooltip.html.copy": "Copy HTML",
|
|
19766
19885
|
"tooltip.id.copy": "Copy unique identifier",
|
|
19767
19886
|
"tooltip.url.copy": "Copy URL",
|
|
19768
|
-
"tooltip.url.open": "Open URL",
|
|
19769
19887
|
"ui.readLess": "Read less",
|
|
19770
19888
|
"ui.readMore": "Read more",
|
|
19771
19889
|
"wfs.feature.limit": "Too many features to display the WFS layer!",
|
|
@@ -19987,9 +20105,13 @@ var es = {
|
|
|
19987
20105
|
"editor.record.form.license.odc-by": "",
|
|
19988
20106
|
"editor.record.form.license.pddl": "",
|
|
19989
20107
|
"editor.record.form.license.unknown": "",
|
|
20108
|
+
"editor.record.form.multilingual.activate": "",
|
|
20109
|
+
"editor.record.form.multilingual.default": "",
|
|
19990
20110
|
"editor.record.form.multilingual.enable": "",
|
|
20111
|
+
"editor.record.form.multilingual.forbidden": "",
|
|
19991
20112
|
"editor.record.form.multilingual.open": "",
|
|
19992
20113
|
"editor.record.form.multilingual.title": "",
|
|
20114
|
+
"editor.record.form.multilingual.validate": "",
|
|
19993
20115
|
"editor.record.form.page.accessAndContact": "",
|
|
19994
20116
|
"editor.record.form.page.description": "",
|
|
19995
20117
|
"editor.record.form.page.resources": "",
|
|
@@ -20021,6 +20143,10 @@ var es = {
|
|
|
20021
20143
|
"editor.record.loadError.title": "",
|
|
20022
20144
|
"editor.record.lock.format": "",
|
|
20023
20145
|
"editor.record.lock.reason": "",
|
|
20146
|
+
"editor.record.multilingual.confirmation.cancelText": "",
|
|
20147
|
+
"editor.record.multilingual.confirmation.confirmText": "",
|
|
20148
|
+
"editor.record.multilingual.confirmation.message": "",
|
|
20149
|
+
"editor.record.multilingual.confirmation.title": "",
|
|
20024
20150
|
"editor.record.onlineResource.protocol.other": "",
|
|
20025
20151
|
"editor.record.onlineResourceError.body": "",
|
|
20026
20152
|
"editor.record.onlineResourceError.closeMessage": "",
|
|
@@ -20081,20 +20207,32 @@ var es = {
|
|
|
20081
20207
|
"input.image.uploadErrorLabel": "",
|
|
20082
20208
|
"input.image.uploadProgressCancel": "",
|
|
20083
20209
|
"input.image.uploadProgressLabel": "",
|
|
20210
|
+
"language.ar": "",
|
|
20211
|
+
"language.az": "",
|
|
20084
20212
|
"language.ca": "Catalán",
|
|
20085
20213
|
"language.cs": "Checo",
|
|
20214
|
+
"language.cy": "",
|
|
20215
|
+
"language.da": "",
|
|
20086
20216
|
"language.de": "Alemán",
|
|
20087
20217
|
"language.en": "Inglés",
|
|
20088
20218
|
"language.es": "Español",
|
|
20089
20219
|
"language.fi": "Finlandés",
|
|
20090
20220
|
"language.fr": "Francés",
|
|
20221
|
+
"language.hy": "",
|
|
20091
20222
|
"language.is": "Islandés",
|
|
20092
20223
|
"language.it": "Italiano",
|
|
20224
|
+
"language.ka": "",
|
|
20093
20225
|
"language.ko": "Coreano",
|
|
20094
20226
|
"language.nl": "Neerlandés",
|
|
20227
|
+
"language.no": "",
|
|
20228
|
+
"language.pl": "",
|
|
20095
20229
|
"language.pt": "Portugués",
|
|
20230
|
+
"language.rm": "",
|
|
20096
20231
|
"language.ru": "Ruso",
|
|
20097
20232
|
"language.sk": "Eslovaco",
|
|
20233
|
+
"language.sv": "",
|
|
20234
|
+
"language.tr": "",
|
|
20235
|
+
"language.uk": "",
|
|
20098
20236
|
"language.zh": "Chino",
|
|
20099
20237
|
"map.add.layer": "",
|
|
20100
20238
|
"map.add.layer.catalog": "",
|
|
@@ -20141,6 +20279,7 @@ var es = {
|
|
|
20141
20279
|
"record.action.duplicate": "",
|
|
20142
20280
|
"record.action.duplicating": "",
|
|
20143
20281
|
"record.action.rollback": "",
|
|
20282
|
+
"record.action.switchLang": "",
|
|
20144
20283
|
"record.action.view": "",
|
|
20145
20284
|
"record.card.metadata.contact": "",
|
|
20146
20285
|
"record.externalViewer.open": "",
|
|
@@ -20191,9 +20330,15 @@ var es = {
|
|
|
20191
20330
|
"record.metadata.download": "",
|
|
20192
20331
|
"record.metadata.feature.catalog": "",
|
|
20193
20332
|
"record.metadata.formats": "",
|
|
20333
|
+
"record.metadata.isGeographical": "",
|
|
20194
20334
|
"record.metadata.keywords": "",
|
|
20195
20335
|
"record.metadata.languages": "",
|
|
20196
20336
|
"record.metadata.lastUpdate": "",
|
|
20337
|
+
"record.metadata.linked.datasets": "",
|
|
20338
|
+
"record.metadata.linked.records": "",
|
|
20339
|
+
"record.metadata.linked.reuses": "",
|
|
20340
|
+
"record.metadata.linked.services": "",
|
|
20341
|
+
"record.metadata.linked.sourceDatasets": "",
|
|
20197
20342
|
"record.metadata.links": "",
|
|
20198
20343
|
"record.metadata.noUsage": "",
|
|
20199
20344
|
"record.metadata.otherConstraints": "",
|
|
@@ -20221,7 +20366,6 @@ var es = {
|
|
|
20221
20366
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
20222
20367
|
"record.metadata.quality.updateFrequency.success": "",
|
|
20223
20368
|
"record.metadata.related": "",
|
|
20224
|
-
"record.metadata.related.contents": "",
|
|
20225
20369
|
"record.metadata.ressources.and.links": "Recursos y enlaces",
|
|
20226
20370
|
"record.metadata.sheet": "",
|
|
20227
20371
|
"record.metadata.status": "",
|
|
@@ -20233,7 +20377,6 @@ var es = {
|
|
|
20233
20377
|
"record.metadata.temporalExtent.untilDate": "",
|
|
20234
20378
|
"record.metadata.title": "",
|
|
20235
20379
|
"record.metadata.topics": "",
|
|
20236
|
-
"record.metadata.isGeographical": "",
|
|
20237
20380
|
"record.metadata.uniqueId": "",
|
|
20238
20381
|
"record.metadata.updateFrequency": "",
|
|
20239
20382
|
"record.metadata.updatedOn": "",
|
|
@@ -20353,7 +20496,6 @@ var es = {
|
|
|
20353
20496
|
"tooltip.html.copy": "",
|
|
20354
20497
|
"tooltip.id.copy": "",
|
|
20355
20498
|
"tooltip.url.copy": "",
|
|
20356
|
-
"tooltip.url.open": "",
|
|
20357
20499
|
"ui.readLess": "",
|
|
20358
20500
|
"ui.readMore": "",
|
|
20359
20501
|
"wfs.feature.limit": "",
|
|
@@ -20575,9 +20717,13 @@ var fr = {
|
|
|
20575
20717
|
"editor.record.form.license.odc-by": "Open Data Commons ODC-By",
|
|
20576
20718
|
"editor.record.form.license.pddl": "Open Data Commons PDDL",
|
|
20577
20719
|
"editor.record.form.license.unknown": "Inconnue ou absente",
|
|
20720
|
+
"editor.record.form.multilingual.activate": "Activez les langues",
|
|
20721
|
+
"editor.record.form.multilingual.default": "Par défaut",
|
|
20578
20722
|
"editor.record.form.multilingual.enable": "Mode Multilingue",
|
|
20723
|
+
"editor.record.form.multilingual.forbidden": "Vous ne pouvez pas supprimer le language par défaut",
|
|
20579
20724
|
"editor.record.form.multilingual.open": "Ouvrir le menu multilingue",
|
|
20580
20725
|
"editor.record.form.multilingual.title": "Traductions",
|
|
20726
|
+
"editor.record.form.multilingual.validate": "Valider",
|
|
20581
20727
|
"editor.record.form.page.accessAndContact": "Informations pour l'utilisation",
|
|
20582
20728
|
"editor.record.form.page.description": "Description du jeu de données",
|
|
20583
20729
|
"editor.record.form.page.resources": "Ressources",
|
|
@@ -20609,6 +20755,10 @@ var fr = {
|
|
|
20609
20755
|
"editor.record.loadError.title": "Erreur lors du chargement",
|
|
20610
20756
|
"editor.record.lock.format": "Les jeux de données de type 'service' et 'reuse' ne sont pas éditables",
|
|
20611
20757
|
"editor.record.lock.reason": "Vous n'êtes pas éditeur d'un des groupes autorisés.",
|
|
20758
|
+
"editor.record.multilingual.confirmation.cancelText": "Garder le(s) language(s)",
|
|
20759
|
+
"editor.record.multilingual.confirmation.confirmText": "Supprimer le(s) language(s)",
|
|
20760
|
+
"editor.record.multilingual.confirmation.message": "Vous allez supprimer un ou plusieurs languages, ce qui supprimera toutes les traductions qui y sont liées et est irréversible. Voulez-vous procéder ?",
|
|
20761
|
+
"editor.record.multilingual.confirmation.title": "Suppression de language(s)",
|
|
20612
20762
|
"editor.record.onlineResource.protocol.other": "Autre",
|
|
20613
20763
|
"editor.record.onlineResourceError.body": "Une erreur est survenue lors de l'ajout de la ressource :",
|
|
20614
20764
|
"editor.record.onlineResourceError.closeMessage": "Compris",
|
|
@@ -20669,20 +20819,32 @@ var fr = {
|
|
|
20669
20819
|
"input.image.uploadErrorLabel": "L'image n'a pas pu être chargée",
|
|
20670
20820
|
"input.image.uploadProgressCancel": "Annuler",
|
|
20671
20821
|
"input.image.uploadProgressLabel": "Chargement en cours...",
|
|
20822
|
+
"language.ar": "Arabe",
|
|
20823
|
+
"language.az": "Azéri",
|
|
20672
20824
|
"language.ca": "Catalan",
|
|
20673
20825
|
"language.cs": "Tchèque",
|
|
20826
|
+
"language.cy": "Gallois",
|
|
20827
|
+
"language.da": "Danois",
|
|
20674
20828
|
"language.de": "Allemand",
|
|
20675
20829
|
"language.en": "Anglais",
|
|
20676
20830
|
"language.es": "Espagnol",
|
|
20677
20831
|
"language.fi": "Finnois",
|
|
20678
20832
|
"language.fr": "Français",
|
|
20833
|
+
"language.hy": "Arménien",
|
|
20679
20834
|
"language.is": "Islandais",
|
|
20680
20835
|
"language.it": "Italien",
|
|
20836
|
+
"language.ka": "Géorgien",
|
|
20681
20837
|
"language.ko": "Coréen",
|
|
20682
20838
|
"language.nl": "Néerlandais",
|
|
20839
|
+
"language.no": "Norvégien",
|
|
20840
|
+
"language.pl": "Polonais",
|
|
20683
20841
|
"language.pt": "Portugais",
|
|
20842
|
+
"language.rm": "Romanche",
|
|
20684
20843
|
"language.ru": "Russe",
|
|
20685
20844
|
"language.sk": "Slovaque",
|
|
20845
|
+
"language.sv": "Suédois",
|
|
20846
|
+
"language.tr": "Turque",
|
|
20847
|
+
"language.uk": "Ukrainien",
|
|
20686
20848
|
"language.zh": "Chinois",
|
|
20687
20849
|
"map.add.layer": "Ajouter une couche",
|
|
20688
20850
|
"map.add.layer.catalog": "Du catalogue",
|
|
@@ -20729,6 +20891,7 @@ var fr = {
|
|
|
20729
20891
|
"record.action.duplicate": "Dupliquer",
|
|
20730
20892
|
"record.action.duplicating": "Duplication...",
|
|
20731
20893
|
"record.action.rollback": "Restaurer",
|
|
20894
|
+
"record.action.switchLang": "Marquer par défaut",
|
|
20732
20895
|
"record.action.view": "Voir",
|
|
20733
20896
|
"record.card.metadata.contact": "Contact de la métadonnée ",
|
|
20734
20897
|
"record.externalViewer.open": "Ouvrir dans le visualiseur externe",
|
|
@@ -20779,9 +20942,15 @@ var fr = {
|
|
|
20779
20942
|
"record.metadata.download": "Téléchargements",
|
|
20780
20943
|
"record.metadata.feature.catalog": "Catalogue d'attributs",
|
|
20781
20944
|
"record.metadata.formats": "Formats",
|
|
20945
|
+
"record.metadata.isGeographical": "Donnée géographique",
|
|
20782
20946
|
"record.metadata.keywords": "Mots-clés",
|
|
20783
20947
|
"record.metadata.languages": "Langues",
|
|
20784
20948
|
"record.metadata.lastUpdate": "Mis à jour le {date}",
|
|
20949
|
+
"record.metadata.linked.datasets": "Jeux de données associés",
|
|
20950
|
+
"record.metadata.linked.records": "Contenus associés",
|
|
20951
|
+
"record.metadata.linked.reuses": "Réutilisations associées",
|
|
20952
|
+
"record.metadata.linked.services": "Services associés",
|
|
20953
|
+
"record.metadata.linked.sourceDatasets": "Jeux de données sources",
|
|
20785
20954
|
"record.metadata.links": "Liens",
|
|
20786
20955
|
"record.metadata.noUsage": "Aucune condition d'utilisation spécifiée pour ces données",
|
|
20787
20956
|
"record.metadata.otherConstraints": "Limitations d'usage",
|
|
@@ -20808,8 +20977,7 @@ var fr = {
|
|
|
20808
20977
|
"record.metadata.quality.topic.success": "Le thème est renseigné",
|
|
20809
20978
|
"record.metadata.quality.updateFrequency.failed": "La fréquence de mise à jour n'est pas renseignée",
|
|
20810
20979
|
"record.metadata.quality.updateFrequency.success": "La fréquence de mise à jour est renseignée",
|
|
20811
|
-
"record.metadata.related": "
|
|
20812
|
-
"record.metadata.related.contents": "Contenu associé",
|
|
20980
|
+
"record.metadata.related": "Explorez le catalogue",
|
|
20813
20981
|
"record.metadata.ressources.and.links": "Ressources et liens",
|
|
20814
20982
|
"record.metadata.sheet": "Fiche de métadonnées d'origine",
|
|
20815
20983
|
"record.metadata.status": "Statut",
|
|
@@ -20821,7 +20989,6 @@ var fr = {
|
|
|
20821
20989
|
"record.metadata.temporalExtent.untilDate": "Jusqu'au { end }",
|
|
20822
20990
|
"record.metadata.title": "Intitulé",
|
|
20823
20991
|
"record.metadata.topics": "Catégories",
|
|
20824
|
-
"record.metadata.isGeographical": "Donnée géographique",
|
|
20825
20992
|
"record.metadata.uniqueId": "Identificateur de ressource unique",
|
|
20826
20993
|
"record.metadata.updateFrequency": "Fréquence de mise à jour des données",
|
|
20827
20994
|
"record.metadata.updatedOn": "Modifié le",
|
|
@@ -20941,7 +21108,6 @@ var fr = {
|
|
|
20941
21108
|
"tooltip.html.copy": "Copier le HTML",
|
|
20942
21109
|
"tooltip.id.copy": "Copier l'identifiant unique",
|
|
20943
21110
|
"tooltip.url.copy": "Copier l'URL",
|
|
20944
|
-
"tooltip.url.open": "Ouvrir l'URL",
|
|
20945
21111
|
"ui.readLess": "Réduire",
|
|
20946
21112
|
"ui.readMore": "Lire la suite",
|
|
20947
21113
|
"wfs.feature.limit": "Trop d'objets pour afficher la couche WFS !",
|
|
@@ -21166,6 +21332,10 @@ var it = {
|
|
|
21166
21332
|
"editor.record.form.multilingual.enable": "Aprire il pannello multilingue",
|
|
21167
21333
|
"editor.record.form.multilingual.open": "Modalità multilingue",
|
|
21168
21334
|
"editor.record.form.multilingual.title": "Traduzioni",
|
|
21335
|
+
"editor.record.form.multilingual.activate": "",
|
|
21336
|
+
"editor.record.form.multilingual.default": "",
|
|
21337
|
+
"editor.record.form.multilingual.forbidden": "",
|
|
21338
|
+
"editor.record.form.multilingual.validate": "",
|
|
21169
21339
|
"editor.record.form.page.accessAndContact": "Informazioni per l'uso",
|
|
21170
21340
|
"editor.record.form.page.description": "Descrizione del dataset",
|
|
21171
21341
|
"editor.record.form.page.resources": "Risorse",
|
|
@@ -21197,6 +21367,10 @@ var it = {
|
|
|
21197
21367
|
"editor.record.loadError.title": "Errore durante il caricamento",
|
|
21198
21368
|
"editor.record.lock.format": "I record con il formato 'servizio' o 'riutilizzo' non sono modificabili",
|
|
21199
21369
|
"editor.record.lock.reason": "Non è un editore di uno dei gruppi autorizzati",
|
|
21370
|
+
"editor.record.multilingual.confirmation.cancelText": "",
|
|
21371
|
+
"editor.record.multilingual.confirmation.confirmText": "",
|
|
21372
|
+
"editor.record.multilingual.confirmation.message": "",
|
|
21373
|
+
"editor.record.multilingual.confirmation.title": "",
|
|
21200
21374
|
"editor.record.onlineResource.protocol.other": "Altro",
|
|
21201
21375
|
"editor.record.onlineResourceError.body": "Ha successo un'errore durante l'aggiunta della risorsa:",
|
|
21202
21376
|
"editor.record.onlineResourceError.closeMessage": "Capito",
|
|
@@ -21257,20 +21431,32 @@ var it = {
|
|
|
21257
21431
|
"input.image.uploadErrorLabel": "Impossibile caricare l'immagine",
|
|
21258
21432
|
"input.image.uploadProgressCancel": "Annulla",
|
|
21259
21433
|
"input.image.uploadProgressLabel": "Caricamento...",
|
|
21434
|
+
"language.ar": "",
|
|
21435
|
+
"language.az": "",
|
|
21260
21436
|
"language.ca": "Catalano",
|
|
21261
21437
|
"language.cs": "Ceco",
|
|
21438
|
+
"language.cy": "",
|
|
21439
|
+
"language.da": "",
|
|
21262
21440
|
"language.de": "Tedesco",
|
|
21263
21441
|
"language.en": "Inglese",
|
|
21264
21442
|
"language.es": "Spagnolo",
|
|
21265
21443
|
"language.fi": "Finlandese",
|
|
21266
21444
|
"language.fr": "Francese",
|
|
21445
|
+
"language.hy": "",
|
|
21267
21446
|
"language.is": "Islandese",
|
|
21268
21447
|
"language.it": "Italiano",
|
|
21448
|
+
"language.ka": "",
|
|
21269
21449
|
"language.ko": "Coreano",
|
|
21270
21450
|
"language.nl": "Olandese",
|
|
21451
|
+
"language.no": "",
|
|
21452
|
+
"language.pl": "",
|
|
21271
21453
|
"language.pt": "Portoghese",
|
|
21454
|
+
"language.rm": "",
|
|
21272
21455
|
"language.ru": "Russo",
|
|
21273
21456
|
"language.sk": "Slovacco",
|
|
21457
|
+
"language.sv": "",
|
|
21458
|
+
"language.tr": "",
|
|
21459
|
+
"language.uk": "",
|
|
21274
21460
|
"language.zh": "Cinese",
|
|
21275
21461
|
"map.add.layer": "Aggiungere un layer",
|
|
21276
21462
|
"map.add.layer.catalog": "Dal catalogo",
|
|
@@ -21317,6 +21503,7 @@ var it = {
|
|
|
21317
21503
|
"record.action.duplicate": "Duplicato",
|
|
21318
21504
|
"record.action.duplicating": "Duplicazione",
|
|
21319
21505
|
"record.action.rollback": "Annulla",
|
|
21506
|
+
"record.action.switchLang": "",
|
|
21320
21507
|
"record.action.view": "Visualizza",
|
|
21321
21508
|
"record.card.metadata.contact": "Contatto del metadata",
|
|
21322
21509
|
"record.externalViewer.open": "Aprire nel visualizzatore esterno",
|
|
@@ -21367,9 +21554,15 @@ var it = {
|
|
|
21367
21554
|
"record.metadata.download": "Download",
|
|
21368
21555
|
"record.metadata.feature.catalog": "Catalogo dei oggetti",
|
|
21369
21556
|
"record.metadata.formats": "Formati",
|
|
21557
|
+
"record.metadata.isGeographical": "Dati geografici",
|
|
21370
21558
|
"record.metadata.keywords": "Parole chiave",
|
|
21371
21559
|
"record.metadata.languages": "Lingue",
|
|
21372
21560
|
"record.metadata.lastUpdate": "Ultimo aggiornamento il {date}",
|
|
21561
|
+
"record.metadata.linked.datasets": "",
|
|
21562
|
+
"record.metadata.linked.records": "",
|
|
21563
|
+
"record.metadata.linked.reuses": "",
|
|
21564
|
+
"record.metadata.linked.services": "",
|
|
21565
|
+
"record.metadata.linked.sourceDatasets": "",
|
|
21373
21566
|
"record.metadata.links": "Collegamenti",
|
|
21374
21567
|
"record.metadata.noUsage": "Nessuna condizione d'uso specificata per questi dati",
|
|
21375
21568
|
"record.metadata.otherConstraints": "Limitazioni di uso",
|
|
@@ -21397,7 +21590,6 @@ var it = {
|
|
|
21397
21590
|
"record.metadata.quality.updateFrequency.failed": "La frequenza di aggiornamento non è specificata",
|
|
21398
21591
|
"record.metadata.quality.updateFrequency.success": "La frequenza di aggiornamento è specificata",
|
|
21399
21592
|
"record.metadata.related": "Vedi anche",
|
|
21400
|
-
"record.metadata.related.contents": "Contenuti correlati",
|
|
21401
21593
|
"record.metadata.ressources.and.links": "Risorse e collegamenti",
|
|
21402
21594
|
"record.metadata.sheet": "Origine del metadata",
|
|
21403
21595
|
"record.metadata.status": "Stato",
|
|
@@ -21409,7 +21601,6 @@ var it = {
|
|
|
21409
21601
|
"record.metadata.temporalExtent.untilDate": "Fino a {end}",
|
|
21410
21602
|
"record.metadata.title": "Titolo",
|
|
21411
21603
|
"record.metadata.topics": "Categorie",
|
|
21412
|
-
"record.metadata.isGeographical": "Dati geografici",
|
|
21413
21604
|
"record.metadata.uniqueId": "Identificatore unico di risorsa",
|
|
21414
21605
|
"record.metadata.updateFrequency": "Frequenza di aggiornamento dei dati",
|
|
21415
21606
|
"record.metadata.updatedOn": "Modificato il",
|
|
@@ -21529,7 +21720,6 @@ var it = {
|
|
|
21529
21720
|
"tooltip.html.copy": "Copiare il HTML",
|
|
21530
21721
|
"tooltip.id.copy": "Copiare l'identificatore unico",
|
|
21531
21722
|
"tooltip.url.copy": "Copiare l'URL",
|
|
21532
|
-
"tooltip.url.open": "Aprire l'URL",
|
|
21533
21723
|
"ui.readLess": "Ridurre",
|
|
21534
21724
|
"ui.readMore": "Leggere di più",
|
|
21535
21725
|
"wfs.feature.limit": "Troppi oggetti per visualizzare il WFS layer!",
|
|
@@ -21751,9 +21941,13 @@ var nl = {
|
|
|
21751
21941
|
"editor.record.form.license.odc-by": "",
|
|
21752
21942
|
"editor.record.form.license.pddl": "",
|
|
21753
21943
|
"editor.record.form.license.unknown": "",
|
|
21944
|
+
"editor.record.form.multilingual.activate": "",
|
|
21945
|
+
"editor.record.form.multilingual.default": "",
|
|
21754
21946
|
"editor.record.form.multilingual.enable": "",
|
|
21947
|
+
"editor.record.form.multilingual.forbidden": "",
|
|
21755
21948
|
"editor.record.form.multilingual.open": "",
|
|
21756
21949
|
"editor.record.form.multilingual.title": "",
|
|
21950
|
+
"editor.record.form.multilingual.validate": "",
|
|
21757
21951
|
"editor.record.form.page.accessAndContact": "",
|
|
21758
21952
|
"editor.record.form.page.description": "",
|
|
21759
21953
|
"editor.record.form.page.resources": "",
|
|
@@ -21785,6 +21979,10 @@ var nl = {
|
|
|
21785
21979
|
"editor.record.loadError.title": "",
|
|
21786
21980
|
"editor.record.lock.format": "",
|
|
21787
21981
|
"editor.record.lock.reason": "",
|
|
21982
|
+
"editor.record.multilingual.confirmation.cancelText": "",
|
|
21983
|
+
"editor.record.multilingual.confirmation.confirmText": "",
|
|
21984
|
+
"editor.record.multilingual.confirmation.message": "",
|
|
21985
|
+
"editor.record.multilingual.confirmation.title": "",
|
|
21788
21986
|
"editor.record.onlineResource.protocol.other": "",
|
|
21789
21987
|
"editor.record.onlineResourceError.body": "",
|
|
21790
21988
|
"editor.record.onlineResourceError.closeMessage": "",
|
|
@@ -21845,20 +22043,32 @@ var nl = {
|
|
|
21845
22043
|
"input.image.uploadErrorLabel": "",
|
|
21846
22044
|
"input.image.uploadProgressCancel": "",
|
|
21847
22045
|
"input.image.uploadProgressLabel": "",
|
|
22046
|
+
"language.ar": "",
|
|
22047
|
+
"language.az": "",
|
|
21848
22048
|
"language.ca": "Catalaans",
|
|
21849
22049
|
"language.cs": "Tsjechisch",
|
|
22050
|
+
"language.cy": "",
|
|
22051
|
+
"language.da": "",
|
|
21850
22052
|
"language.de": "Duits",
|
|
21851
22053
|
"language.en": "Engels",
|
|
21852
22054
|
"language.es": "Spaans",
|
|
21853
22055
|
"language.fi": "Fins",
|
|
21854
22056
|
"language.fr": "Frans",
|
|
22057
|
+
"language.hy": "",
|
|
21855
22058
|
"language.is": "IJslands",
|
|
21856
22059
|
"language.it": "Italiaans",
|
|
22060
|
+
"language.ka": "",
|
|
21857
22061
|
"language.ko": "Koreaans",
|
|
21858
22062
|
"language.nl": "Nederlands",
|
|
22063
|
+
"language.no": "",
|
|
22064
|
+
"language.pl": "",
|
|
21859
22065
|
"language.pt": "Portugees",
|
|
22066
|
+
"language.rm": "",
|
|
21860
22067
|
"language.ru": "Russisch",
|
|
21861
22068
|
"language.sk": "Slowaaks",
|
|
22069
|
+
"language.sv": "",
|
|
22070
|
+
"language.tr": "",
|
|
22071
|
+
"language.uk": "",
|
|
21862
22072
|
"language.zh": "Chinees",
|
|
21863
22073
|
"map.add.layer": "",
|
|
21864
22074
|
"map.add.layer.catalog": "",
|
|
@@ -21905,6 +22115,7 @@ var nl = {
|
|
|
21905
22115
|
"record.action.duplicate": "",
|
|
21906
22116
|
"record.action.duplicating": "",
|
|
21907
22117
|
"record.action.rollback": "",
|
|
22118
|
+
"record.action.switchLang": "",
|
|
21908
22119
|
"record.action.view": "",
|
|
21909
22120
|
"record.card.metadata.contact": "",
|
|
21910
22121
|
"record.externalViewer.open": "",
|
|
@@ -21955,9 +22166,15 @@ var nl = {
|
|
|
21955
22166
|
"record.metadata.download": "",
|
|
21956
22167
|
"record.metadata.feature.catalog": "",
|
|
21957
22168
|
"record.metadata.formats": "",
|
|
22169
|
+
"record.metadata.isGeographical": "",
|
|
21958
22170
|
"record.metadata.keywords": "",
|
|
21959
22171
|
"record.metadata.languages": "",
|
|
21960
22172
|
"record.metadata.lastUpdate": "",
|
|
22173
|
+
"record.metadata.linked.datasets": "",
|
|
22174
|
+
"record.metadata.linked.records": "",
|
|
22175
|
+
"record.metadata.linked.reuses": "",
|
|
22176
|
+
"record.metadata.linked.services": "",
|
|
22177
|
+
"record.metadata.linked.sourceDatasets": "",
|
|
21961
22178
|
"record.metadata.links": "",
|
|
21962
22179
|
"record.metadata.noUsage": "",
|
|
21963
22180
|
"record.metadata.otherConstraints": "",
|
|
@@ -21985,7 +22202,6 @@ var nl = {
|
|
|
21985
22202
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
21986
22203
|
"record.metadata.quality.updateFrequency.success": "",
|
|
21987
22204
|
"record.metadata.related": "",
|
|
21988
|
-
"record.metadata.related.contents": "",
|
|
21989
22205
|
"record.metadata.ressources.and.links": "Bronnen en links",
|
|
21990
22206
|
"record.metadata.sheet": "",
|
|
21991
22207
|
"record.metadata.status": "",
|
|
@@ -21997,7 +22213,6 @@ var nl = {
|
|
|
21997
22213
|
"record.metadata.temporalExtent.untilDate": "",
|
|
21998
22214
|
"record.metadata.title": "",
|
|
21999
22215
|
"record.metadata.topics": "",
|
|
22000
|
-
"record.metadata.isGeographical": "",
|
|
22001
22216
|
"record.metadata.uniqueId": "",
|
|
22002
22217
|
"record.metadata.updateFrequency": "",
|
|
22003
22218
|
"record.metadata.updatedOn": "",
|
|
@@ -22117,7 +22332,6 @@ var nl = {
|
|
|
22117
22332
|
"tooltip.html.copy": "",
|
|
22118
22333
|
"tooltip.id.copy": "",
|
|
22119
22334
|
"tooltip.url.copy": "",
|
|
22120
|
-
"tooltip.url.open": "",
|
|
22121
22335
|
"ui.readLess": "",
|
|
22122
22336
|
"ui.readMore": "",
|
|
22123
22337
|
"wfs.feature.limit": "",
|
|
@@ -22339,9 +22553,13 @@ var pt = {
|
|
|
22339
22553
|
"editor.record.form.license.odc-by": "",
|
|
22340
22554
|
"editor.record.form.license.pddl": "",
|
|
22341
22555
|
"editor.record.form.license.unknown": "",
|
|
22556
|
+
"editor.record.form.multilingual.activate": "",
|
|
22557
|
+
"editor.record.form.multilingual.default": "",
|
|
22342
22558
|
"editor.record.form.multilingual.enable": "",
|
|
22559
|
+
"editor.record.form.multilingual.forbidden": "",
|
|
22343
22560
|
"editor.record.form.multilingual.open": "",
|
|
22344
22561
|
"editor.record.form.multilingual.title": "",
|
|
22562
|
+
"editor.record.form.multilingual.validate": "",
|
|
22345
22563
|
"editor.record.form.page.accessAndContact": "",
|
|
22346
22564
|
"editor.record.form.page.description": "",
|
|
22347
22565
|
"editor.record.form.page.resources": "",
|
|
@@ -22373,6 +22591,10 @@ var pt = {
|
|
|
22373
22591
|
"editor.record.loadError.title": "",
|
|
22374
22592
|
"editor.record.lock.format": "",
|
|
22375
22593
|
"editor.record.lock.reason": "",
|
|
22594
|
+
"editor.record.multilingual.confirmation.cancelText": "",
|
|
22595
|
+
"editor.record.multilingual.confirmation.confirmText": "",
|
|
22596
|
+
"editor.record.multilingual.confirmation.message": "",
|
|
22597
|
+
"editor.record.multilingual.confirmation.title": "",
|
|
22376
22598
|
"editor.record.onlineResource.protocol.other": "",
|
|
22377
22599
|
"editor.record.onlineResourceError.body": "",
|
|
22378
22600
|
"editor.record.onlineResourceError.closeMessage": "",
|
|
@@ -22433,20 +22655,32 @@ var pt = {
|
|
|
22433
22655
|
"input.image.uploadErrorLabel": "",
|
|
22434
22656
|
"input.image.uploadProgressCancel": "",
|
|
22435
22657
|
"input.image.uploadProgressLabel": "",
|
|
22658
|
+
"language.ar": "",
|
|
22659
|
+
"language.az": "",
|
|
22436
22660
|
"language.ca": "Catalão",
|
|
22437
22661
|
"language.cs": "Tcheco",
|
|
22662
|
+
"language.cy": "",
|
|
22663
|
+
"language.da": "",
|
|
22438
22664
|
"language.de": "Alemão",
|
|
22439
22665
|
"language.en": "Inglês",
|
|
22440
22666
|
"language.es": "Espanhol",
|
|
22441
22667
|
"language.fi": "Finlandês",
|
|
22442
22668
|
"language.fr": "Francês",
|
|
22669
|
+
"language.hy": "",
|
|
22443
22670
|
"language.is": "Islandês",
|
|
22444
22671
|
"language.it": "Italiano",
|
|
22672
|
+
"language.ka": "",
|
|
22445
22673
|
"language.ko": "Coreano",
|
|
22446
22674
|
"language.nl": "Holandês",
|
|
22675
|
+
"language.no": "",
|
|
22676
|
+
"language.pl": "",
|
|
22447
22677
|
"language.pt": "Português",
|
|
22678
|
+
"language.rm": "",
|
|
22448
22679
|
"language.ru": "Russo",
|
|
22449
22680
|
"language.sk": "Eslovaco",
|
|
22681
|
+
"language.sv": "",
|
|
22682
|
+
"language.tr": "",
|
|
22683
|
+
"language.uk": "",
|
|
22450
22684
|
"language.zh": "Chinês",
|
|
22451
22685
|
"map.add.layer": "",
|
|
22452
22686
|
"map.add.layer.catalog": "",
|
|
@@ -22493,6 +22727,7 @@ var pt = {
|
|
|
22493
22727
|
"record.action.duplicate": "",
|
|
22494
22728
|
"record.action.duplicating": "",
|
|
22495
22729
|
"record.action.rollback": "",
|
|
22730
|
+
"record.action.switchLang": "",
|
|
22496
22731
|
"record.action.view": "",
|
|
22497
22732
|
"record.card.metadata.contact": "",
|
|
22498
22733
|
"record.externalViewer.open": "",
|
|
@@ -22543,9 +22778,15 @@ var pt = {
|
|
|
22543
22778
|
"record.metadata.download": "",
|
|
22544
22779
|
"record.metadata.feature.catalog": "",
|
|
22545
22780
|
"record.metadata.formats": "",
|
|
22781
|
+
"record.metadata.isGeographical": "",
|
|
22546
22782
|
"record.metadata.keywords": "",
|
|
22547
22783
|
"record.metadata.languages": "",
|
|
22548
22784
|
"record.metadata.lastUpdate": "",
|
|
22785
|
+
"record.metadata.linked.datasets": "",
|
|
22786
|
+
"record.metadata.linked.records": "",
|
|
22787
|
+
"record.metadata.linked.reuses": "",
|
|
22788
|
+
"record.metadata.linked.services": "",
|
|
22789
|
+
"record.metadata.linked.sourceDatasets": "",
|
|
22549
22790
|
"record.metadata.links": "",
|
|
22550
22791
|
"record.metadata.noUsage": "",
|
|
22551
22792
|
"record.metadata.otherConstraints": "",
|
|
@@ -22573,7 +22814,6 @@ var pt = {
|
|
|
22573
22814
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
22574
22815
|
"record.metadata.quality.updateFrequency.success": "",
|
|
22575
22816
|
"record.metadata.related": "",
|
|
22576
|
-
"record.metadata.related.contents": "",
|
|
22577
22817
|
"record.metadata.ressources.and.links": "Recursos e links",
|
|
22578
22818
|
"record.metadata.sheet": "",
|
|
22579
22819
|
"record.metadata.status": "",
|
|
@@ -22585,7 +22825,6 @@ var pt = {
|
|
|
22585
22825
|
"record.metadata.temporalExtent.untilDate": "",
|
|
22586
22826
|
"record.metadata.title": "",
|
|
22587
22827
|
"record.metadata.topics": "",
|
|
22588
|
-
"record.metadata.isGeographical": "",
|
|
22589
22828
|
"record.metadata.uniqueId": "",
|
|
22590
22829
|
"record.metadata.updateFrequency": "",
|
|
22591
22830
|
"record.metadata.updatedOn": "",
|
|
@@ -22705,7 +22944,6 @@ var pt = {
|
|
|
22705
22944
|
"tooltip.html.copy": "",
|
|
22706
22945
|
"tooltip.id.copy": "",
|
|
22707
22946
|
"tooltip.url.copy": "",
|
|
22708
|
-
"tooltip.url.open": "",
|
|
22709
22947
|
"ui.readLess": "",
|
|
22710
22948
|
"ui.readMore": "",
|
|
22711
22949
|
"wfs.feature.limit": "",
|
|
@@ -23754,13 +23992,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
23754
23992
|
const minPublicationApiVersion = '4.2.5';
|
|
23755
23993
|
const TEMPORARY_ID_PREFIX = 'TEMP-ID-';
|
|
23756
23994
|
class Gn4Repository {
|
|
23757
|
-
constructor(httpClient, gn4SearchApi, gn4SearchHelper, gn4Mapper, gn4RecordsApi, platformService) {
|
|
23995
|
+
constructor(httpClient, gn4SearchApi, gn4SearchHelper, gn4Mapper, gn4RecordsApi, platformService, gn4LanguagesApi) {
|
|
23758
23996
|
this.httpClient = httpClient;
|
|
23759
23997
|
this.gn4SearchApi = gn4SearchApi;
|
|
23760
23998
|
this.gn4SearchHelper = gn4SearchHelper;
|
|
23761
23999
|
this.gn4Mapper = gn4Mapper;
|
|
23762
24000
|
this.gn4RecordsApi = gn4RecordsApi;
|
|
23763
24001
|
this.platformService = platformService;
|
|
24002
|
+
this.gn4LanguagesApi = gn4LanguagesApi;
|
|
23764
24003
|
this._draftsChanged = new Subject();
|
|
23765
24004
|
this.draftsChanged$ = this._draftsChanged.asObservable();
|
|
23766
24005
|
}
|
|
@@ -23985,6 +24224,13 @@ class Gn4Repository {
|
|
|
23985
24224
|
}));
|
|
23986
24225
|
}));
|
|
23987
24226
|
}
|
|
24227
|
+
getApplicationLanguages() {
|
|
24228
|
+
return this.gn4LanguagesApi
|
|
24229
|
+
.getApplicationLanguages()
|
|
24230
|
+
.pipe(map$1((languages) => languages
|
|
24231
|
+
.map((lang) => LANG_3_TO_2_MAPPER[lang.id ?? ''])
|
|
24232
|
+
.filter((code) => !!code)));
|
|
24233
|
+
}
|
|
23988
24234
|
getRecordAsXml(uniqueIdentifier) {
|
|
23989
24235
|
return this.gn4RecordsApi
|
|
23990
24236
|
.getRecordAs(uniqueIdentifier, undefined, false, undefined, undefined, undefined, 'application/xml', 'response', undefined, { httpHeaderAccept: 'text/xml,application/xml' } // this is to make sure that the response is parsed as text
|
|
@@ -24025,12 +24271,12 @@ class Gn4Repository {
|
|
|
24025
24271
|
removeRecordFromLocalStorage(recordId) {
|
|
24026
24272
|
window.localStorage.removeItem(this.getLocalStorageKeyForRecord(recordId));
|
|
24027
24273
|
}
|
|
24028
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Gn4Repository, deps: [{ token: i1.HttpClient }, { token: SearchApiService }, { token: ElasticsearchService }, { token: Gn4Converter }, { token: RecordsApiService }, { token: PlatformServiceInterface }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24274
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Gn4Repository, deps: [{ token: i1.HttpClient }, { token: SearchApiService }, { token: ElasticsearchService }, { token: Gn4Converter }, { token: RecordsApiService }, { token: PlatformServiceInterface }, { token: LanguagesApiService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24029
24275
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Gn4Repository }); }
|
|
24030
24276
|
}
|
|
24031
24277
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: Gn4Repository, decorators: [{
|
|
24032
24278
|
type: Injectable
|
|
24033
|
-
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: SearchApiService }, { type: ElasticsearchService }, { type: Gn4Converter }, { type: RecordsApiService }, { type: PlatformServiceInterface }] });
|
|
24279
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: SearchApiService }, { type: ElasticsearchService }, { type: Gn4Converter }, { type: RecordsApiService }, { type: PlatformServiceInterface }, { type: LanguagesApiService }] });
|
|
24034
24280
|
|
|
24035
24281
|
const IMAGE_URL$1 = '/geonetwork/images/harvesting/';
|
|
24036
24282
|
class OrganizationsFromMetadataService {
|
|
@@ -25448,7 +25694,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
25448
25694
|
}] });
|
|
25449
25695
|
|
|
25450
25696
|
var name = "geonetwork-ui";
|
|
25451
|
-
var version = "2.6.0-dev.
|
|
25697
|
+
var version = "2.6.0-dev.d1dbf336f";
|
|
25452
25698
|
var engines = {
|
|
25453
25699
|
node: ">=20"
|
|
25454
25700
|
};
|
|
@@ -31652,6 +31898,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
31652
31898
|
type: Input
|
|
31653
31899
|
}] } });
|
|
31654
31900
|
|
|
31901
|
+
class ActionMenuComponent {
|
|
31902
|
+
constructor(dialog, cdr) {
|
|
31903
|
+
this.dialog = dialog;
|
|
31904
|
+
this.cdr = cdr;
|
|
31905
|
+
this.canDuplicate = true;
|
|
31906
|
+
this.canDelete = true;
|
|
31907
|
+
this.duplicate = new EventEmitter();
|
|
31908
|
+
this.delete = new EventEmitter();
|
|
31909
|
+
this.closeActionMenu = new EventEmitter();
|
|
31910
|
+
this.rollback = new EventEmitter();
|
|
31911
|
+
this.switch = new EventEmitter();
|
|
31912
|
+
this.sectionDisplayed = 'mainMenu';
|
|
31913
|
+
}
|
|
31914
|
+
displayMainMenu() {
|
|
31915
|
+
this.sectionDisplayed = 'mainMenu';
|
|
31916
|
+
this.cdr.markForCheck();
|
|
31917
|
+
}
|
|
31918
|
+
displayDeleteMenu() {
|
|
31919
|
+
switch (this.page) {
|
|
31920
|
+
case 'draft':
|
|
31921
|
+
this.sectionDisplayed = 'rollbackMenu';
|
|
31922
|
+
break;
|
|
31923
|
+
case 'record':
|
|
31924
|
+
this.delete.emit();
|
|
31925
|
+
break;
|
|
31926
|
+
case 'main':
|
|
31927
|
+
default:
|
|
31928
|
+
this.sectionDisplayed = 'deleteMenu';
|
|
31929
|
+
}
|
|
31930
|
+
this.cdr.markForCheck();
|
|
31931
|
+
}
|
|
31932
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ActionMenuComponent, deps: [{ token: i1$a.MatDialog }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31933
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ActionMenuComponent, isStandalone: true, selector: "gn-ui-action-menu", inputs: { canDuplicate: "canDuplicate", canDelete: "canDelete", page: "page" }, outputs: { duplicate: "duplicate", delete: "delete", closeActionMenu: "closeActionMenu", rollback: "rollback", switch: "switch" }, viewQueries: [{ propertyName: "trigger", first: true, predicate: MatMenuTrigger, descendants: true }], ngImport: i0, template: "<ng-container [ngSwitch]=\"sectionDisplayed\">\n <ng-container *ngSwitchCase=\"'mainMenu'\">\n <div\n data-test=\"mainMenuSection\"\n class=\"mt-2 border border-gray-100 p-2 flex items-center bg-white shadow-2xl rounded-2xl\"\n >\n <ul class=\"flex flex-col gap-2 w-full\">\n <gn-ui-button\n *ngIf=\"page === 'main'\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"duplicate.emit()\"\n [disabled]=\"!canDuplicate\"\n data-test=\"record-menu-duplicate-button\"\n >\n <span *ngIf=\"canDuplicate\" translate>record.action.duplicate</span>\n <span *ngIf=\"!canDuplicate\" translate\n >record.action.duplicating</span\n ></gn-ui-button\n >\n <gn-ui-button\n *ngIf=\"page === 'record'\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"switch.emit()\"\n data-test=\"record-menu-switch-button\"\n ><span translate>record.action.switchLang</span></gn-ui-button\n >\n <gn-ui-button\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"displayDeleteMenu()\"\n [disabled]=\"!canDelete\"\n data-test=\"record-menu-delete-button\"\n ><span *ngIf=\"page !== 'draft'\" translate>record.action.delete</span>\n <span *ngIf=\"page === 'draft'\" translate\n >record.action.rollback</span\n ></gn-ui-button\n >\n </ul>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'deleteMenu'\">\n <div\n data-test=\"deleteMenuSection\"\n class=\"w-72 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.delete.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.delete.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"delete.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'100px'\"\n >{{\n 'editor.record.delete.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'100px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.delete.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'rollbackMenu'\">\n <div\n data-test=\"rollbackMenuSection\"\n class=\"w-80 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.undo.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.undo.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"rollback.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'120px'\"\n >{{\n 'editor.record.undo.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'120px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.undo.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1$2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }] }); }
|
|
31934
|
+
}
|
|
31935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ActionMenuComponent, decorators: [{
|
|
31936
|
+
type: Component,
|
|
31937
|
+
args: [{ selector: 'gn-ui-action-menu', standalone: true, imports: [
|
|
31938
|
+
CommonModule,
|
|
31939
|
+
ButtonComponent,
|
|
31940
|
+
MatMenuModule,
|
|
31941
|
+
MatDialogModule,
|
|
31942
|
+
ConfirmationDialogComponent,
|
|
31943
|
+
TranslateModule,
|
|
31944
|
+
], template: "<ng-container [ngSwitch]=\"sectionDisplayed\">\n <ng-container *ngSwitchCase=\"'mainMenu'\">\n <div\n data-test=\"mainMenuSection\"\n class=\"mt-2 border border-gray-100 p-2 flex items-center bg-white shadow-2xl rounded-2xl\"\n >\n <ul class=\"flex flex-col gap-2 w-full\">\n <gn-ui-button\n *ngIf=\"page === 'main'\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"duplicate.emit()\"\n [disabled]=\"!canDuplicate\"\n data-test=\"record-menu-duplicate-button\"\n >\n <span *ngIf=\"canDuplicate\" translate>record.action.duplicate</span>\n <span *ngIf=\"!canDuplicate\" translate\n >record.action.duplicating</span\n ></gn-ui-button\n >\n <gn-ui-button\n *ngIf=\"page === 'record'\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"switch.emit()\"\n data-test=\"record-menu-switch-button\"\n ><span translate>record.action.switchLang</span></gn-ui-button\n >\n <gn-ui-button\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"displayDeleteMenu()\"\n [disabled]=\"!canDelete\"\n data-test=\"record-menu-delete-button\"\n ><span *ngIf=\"page !== 'draft'\" translate>record.action.delete</span>\n <span *ngIf=\"page === 'draft'\" translate\n >record.action.rollback</span\n ></gn-ui-button\n >\n </ul>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'deleteMenu'\">\n <div\n data-test=\"deleteMenuSection\"\n class=\"w-72 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.delete.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.delete.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"delete.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'100px'\"\n >{{\n 'editor.record.delete.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'100px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.delete.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'rollbackMenu'\">\n <div\n data-test=\"rollbackMenuSection\"\n class=\"w-80 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.undo.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.undo.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"rollback.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'120px'\"\n >{{\n 'editor.record.undo.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'120px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.undo.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n</ng-container>\n" }]
|
|
31945
|
+
}], ctorParameters: () => [{ type: i1$a.MatDialog }, { type: i0.ChangeDetectorRef }], propDecorators: { canDuplicate: [{
|
|
31946
|
+
type: Input
|
|
31947
|
+
}], canDelete: [{
|
|
31948
|
+
type: Input
|
|
31949
|
+
}], page: [{
|
|
31950
|
+
type: Input
|
|
31951
|
+
}], duplicate: [{
|
|
31952
|
+
type: Output
|
|
31953
|
+
}], delete: [{
|
|
31954
|
+
type: Output
|
|
31955
|
+
}], closeActionMenu: [{
|
|
31956
|
+
type: Output
|
|
31957
|
+
}], rollback: [{
|
|
31958
|
+
type: Output
|
|
31959
|
+
}], switch: [{
|
|
31960
|
+
type: Output
|
|
31961
|
+
}], trigger: [{
|
|
31962
|
+
type: ViewChild,
|
|
31963
|
+
args: [MatMenuTrigger]
|
|
31964
|
+
}] } });
|
|
31965
|
+
|
|
31655
31966
|
class UiSearchModule {
|
|
31656
31967
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiSearchModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
31657
31968
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UiSearchModule, declarations: [RecordPreviewComponent,
|
|
@@ -31677,7 +31988,8 @@ class UiSearchModule {
|
|
|
31677
31988
|
MatCheckboxModule,
|
|
31678
31989
|
RouterLink,
|
|
31679
31990
|
InteractiveTableComponent, i2$2.NgIconsModule, KindBadgeComponent,
|
|
31680
|
-
MetadataQualityComponent
|
|
31991
|
+
MetadataQualityComponent,
|
|
31992
|
+
ActionMenuComponent], exports: [RecordPreviewListComponent,
|
|
31681
31993
|
RecordPreviewCardComponent,
|
|
31682
31994
|
RecordPreviewTextComponent,
|
|
31683
31995
|
RecordPreviewTitleComponent,
|
|
@@ -31688,7 +32000,8 @@ class UiSearchModule {
|
|
|
31688
32000
|
ResultsHitsNumberComponent,
|
|
31689
32001
|
ResultsHitsSearchKindComponent,
|
|
31690
32002
|
RecordPreviewFeedComponent,
|
|
31691
|
-
RecordPreviewRowComponent
|
|
32003
|
+
RecordPreviewRowComponent,
|
|
32004
|
+
ActionMenuComponent] }); }
|
|
31692
32005
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiSearchModule, providers: [
|
|
31693
32006
|
provideNgIconsConfig({
|
|
31694
32007
|
size: '1.5em',
|
|
@@ -31715,7 +32028,8 @@ class UiSearchModule {
|
|
|
31715
32028
|
matHomeWorkOutline,
|
|
31716
32029
|
}),
|
|
31717
32030
|
KindBadgeComponent,
|
|
31718
|
-
MetadataQualityComponent,
|
|
32031
|
+
MetadataQualityComponent,
|
|
32032
|
+
ActionMenuComponent, FacetsModule$1] }); }
|
|
31719
32033
|
}
|
|
31720
32034
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiSearchModule, decorators: [{
|
|
31721
32035
|
type: NgModule,
|
|
@@ -31758,6 +32072,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
31758
32072
|
}),
|
|
31759
32073
|
KindBadgeComponent,
|
|
31760
32074
|
MetadataQualityComponent,
|
|
32075
|
+
ActionMenuComponent,
|
|
31761
32076
|
],
|
|
31762
32077
|
exports: [
|
|
31763
32078
|
RecordPreviewListComponent,
|
|
@@ -31772,6 +32087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
31772
32087
|
ResultsHitsSearchKindComponent,
|
|
31773
32088
|
RecordPreviewFeedComponent,
|
|
31774
32089
|
RecordPreviewRowComponent,
|
|
32090
|
+
ActionMenuComponent,
|
|
31775
32091
|
],
|
|
31776
32092
|
providers: [
|
|
31777
32093
|
provideNgIconsConfig({
|
|
@@ -31782,64 +32098,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
31782
32098
|
}]
|
|
31783
32099
|
}] });
|
|
31784
32100
|
|
|
31785
|
-
class ActionMenuComponent {
|
|
31786
|
-
constructor(dialog, cdr) {
|
|
31787
|
-
this.dialog = dialog;
|
|
31788
|
-
this.cdr = cdr;
|
|
31789
|
-
this.duplicate = new EventEmitter();
|
|
31790
|
-
this.delete = new EventEmitter();
|
|
31791
|
-
this.closeActionMenu = new EventEmitter();
|
|
31792
|
-
this.rollback = new EventEmitter();
|
|
31793
|
-
this.sectionDisplayed = 'mainMenu';
|
|
31794
|
-
}
|
|
31795
|
-
openMenu() {
|
|
31796
|
-
this.trigger.openMenu();
|
|
31797
|
-
}
|
|
31798
|
-
displayMainMenu() {
|
|
31799
|
-
this.sectionDisplayed = 'mainMenu';
|
|
31800
|
-
this.cdr.markForCheck();
|
|
31801
|
-
}
|
|
31802
|
-
displayDeleteMenu() {
|
|
31803
|
-
if (this.isDraftPage) {
|
|
31804
|
-
this.sectionDisplayed = 'rollbackMenu';
|
|
31805
|
-
}
|
|
31806
|
-
else {
|
|
31807
|
-
this.sectionDisplayed = 'deleteMenu';
|
|
31808
|
-
}
|
|
31809
|
-
this.cdr.markForCheck();
|
|
31810
|
-
}
|
|
31811
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ActionMenuComponent, deps: [{ token: i1$a.MatDialog }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31812
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ActionMenuComponent, isStandalone: true, selector: "gn-ui-action-menu", inputs: { canDuplicate: "canDuplicate", canDelete: "canDelete", isDraftPage: "isDraftPage" }, outputs: { duplicate: "duplicate", delete: "delete", closeActionMenu: "closeActionMenu", rollback: "rollback" }, viewQueries: [{ propertyName: "trigger", first: true, predicate: MatMenuTrigger, descendants: true }], ngImport: i0, template: "<ng-container [ngSwitch]=\"sectionDisplayed\">\n <ng-container *ngSwitchCase=\"'mainMenu'\">\n <div\n data-test=\"mainMenuSection\"\n class=\"mt-2 border border-gray-100 p-2 flex items-center bg-white shadow-2xl rounded-2xl\"\n >\n <ul class=\"flex flex-col gap-2 w-full\">\n <gn-ui-button\n *ngIf=\"!isDraftPage\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"duplicate.emit()\"\n [disabled]=\"!canDuplicate\"\n data-test=\"record-menu-duplicate-button\"\n >\n <span *ngIf=\"canDuplicate\" translate>record.action.duplicate</span>\n <span *ngIf=\"!canDuplicate\" translate\n >record.action.duplicating</span\n ></gn-ui-button\n >\n <gn-ui-button\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"displayDeleteMenu()\"\n [disabled]=\"!canDelete\"\n data-test=\"record-menu-delete-button\"\n ><span *ngIf=\"!isDraftPage\" translate>record.action.delete</span>\n <span *ngIf=\"isDraftPage\" translate\n >record.action.rollback</span\n ></gn-ui-button\n >\n </ul>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'deleteMenu'\">\n <div\n data-test=\"deleteMenuSection\"\n class=\"w-72 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.delete.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.delete.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"delete.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'100px'\"\n >{{\n 'editor.record.delete.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'100px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.delete.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'rollbackMenu'\">\n <div\n data-test=\"rollbackMenuSection\"\n class=\"w-80 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.undo.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.undo.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"rollback.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'120px'\"\n >{{\n 'editor.record.undo.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'120px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.undo.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n</ng-container>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1$2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "ngmodule", type: MatMenuModule }, { kind: "ngmodule", type: MatDialogModule }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }] }); }
|
|
31813
|
-
}
|
|
31814
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ActionMenuComponent, decorators: [{
|
|
31815
|
-
type: Component,
|
|
31816
|
-
args: [{ selector: 'gn-ui-action-menu', standalone: true, imports: [
|
|
31817
|
-
CommonModule,
|
|
31818
|
-
ButtonComponent,
|
|
31819
|
-
MatMenuModule,
|
|
31820
|
-
MatDialogModule,
|
|
31821
|
-
ConfirmationDialogComponent,
|
|
31822
|
-
TranslateModule,
|
|
31823
|
-
], template: "<ng-container [ngSwitch]=\"sectionDisplayed\">\n <ng-container *ngSwitchCase=\"'mainMenu'\">\n <div\n data-test=\"mainMenuSection\"\n class=\"mt-2 border border-gray-100 p-2 flex items-center bg-white shadow-2xl rounded-2xl\"\n >\n <ul class=\"flex flex-col gap-2 w-full\">\n <gn-ui-button\n *ngIf=\"!isDraftPage\"\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"duplicate.emit()\"\n [disabled]=\"!canDuplicate\"\n data-test=\"record-menu-duplicate-button\"\n >\n <span *ngIf=\"canDuplicate\" translate>record.action.duplicate</span>\n <span *ngIf=\"!canDuplicate\" translate\n >record.action.duplicating</span\n ></gn-ui-button\n >\n <gn-ui-button\n type=\"light\"\n extraClass=\"flex flex-row items-center gap-2 w-full justify-start\"\n (buttonClick)=\"displayDeleteMenu()\"\n [disabled]=\"!canDelete\"\n data-test=\"record-menu-delete-button\"\n ><span *ngIf=\"!isDraftPage\" translate>record.action.delete</span>\n <span *ngIf=\"isDraftPage\" translate\n >record.action.rollback</span\n ></gn-ui-button\n >\n </ul>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'deleteMenu'\">\n <div\n data-test=\"deleteMenuSection\"\n class=\"w-72 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.delete.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.delete.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"delete.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'100px'\"\n >{{\n 'editor.record.delete.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'100px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.delete.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n <ng-container *ngSwitchCase=\"'rollbackMenu'\">\n <div\n data-test=\"rollbackMenuSection\"\n class=\"w-80 p-6 flex flex-col gap-3 mt-2 border border-gray-100 bg-white shadow-2xl rounded-2xl\"\n >\n <span class=\"text-lg font-bold text-center\">{{\n 'editor.record.undo.confirmation.title' | translate\n }}</span>\n <span class=\"text-center\">{{\n 'editor.record.undo.confirmation.message' | translate\n }}</span>\n <div class=\"flex flex-row gap-8 justify-center\">\n <gn-ui-button\n (buttonClick)=\"rollback.emit()\"\n cdkFocusInitial\n type=\"primary\"\n data-cy=\"confirm-button\"\n [style.--gn-ui-button-width]=\"'120px'\"\n >{{\n 'editor.record.undo.confirmation.confirmText' | translate\n }}</gn-ui-button\n >\n <gn-ui-button\n [style.--gn-ui-button-width]=\"'120px'\"\n (buttonClick)=\"closeActionMenu.emit()\"\n >{{\n 'editor.record.undo.confirmation.cancelText' | translate\n }}</gn-ui-button\n >\n </div>\n </div>\n </ng-container>\n</ng-container>\n" }]
|
|
31824
|
-
}], ctorParameters: () => [{ type: i1$a.MatDialog }, { type: i0.ChangeDetectorRef }], propDecorators: { canDuplicate: [{
|
|
31825
|
-
type: Input
|
|
31826
|
-
}], canDelete: [{
|
|
31827
|
-
type: Input
|
|
31828
|
-
}], isDraftPage: [{
|
|
31829
|
-
type: Input
|
|
31830
|
-
}], duplicate: [{
|
|
31831
|
-
type: Output
|
|
31832
|
-
}], delete: [{
|
|
31833
|
-
type: Output
|
|
31834
|
-
}], closeActionMenu: [{
|
|
31835
|
-
type: Output
|
|
31836
|
-
}], rollback: [{
|
|
31837
|
-
type: Output
|
|
31838
|
-
}], trigger: [{
|
|
31839
|
-
type: ViewChild,
|
|
31840
|
-
args: [MatMenuTrigger]
|
|
31841
|
-
}] } });
|
|
31842
|
-
|
|
31843
32101
|
class ResultsTableComponent {
|
|
31844
32102
|
constructor(overlay, viewContainerRef, cdr, dateService, translateService) {
|
|
31845
32103
|
this.overlay = overlay;
|
|
@@ -31978,7 +32236,7 @@ class ResultsTableComponent {
|
|
|
31978
32236
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResultsTableComponent, deps: [{ token: i1$8.Overlay }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: DateService }, { token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31979
32237
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ResultsTableComponent, isStandalone: true, selector: "gn-ui-results-table", inputs: { records: "records", selectedRecordsIdentifiers: "selectedRecordsIdentifiers", sortOrder: "sortOrder", hasDraft: "hasDraft", canDuplicate: "canDuplicate", canDelete: "canDelete", isDraftPage: "isDraftPage", isDuplicating: "isDuplicating" }, outputs: { sortByChange: "sortByChange", recordClick: "recordClick", duplicateRecord: "duplicateRecord", deleteRecord: "deleteRecord", rollbackDraft: "rollbackDraft", recordsSelectedChange: "recordsSelectedChange" }, providers: [
|
|
31980
32238
|
provideIcons({ iconoirUser, iconoirLock, iconoirTranslate, matMoreVert }),
|
|
31981
|
-
], viewQueries: [{ propertyName: "actionMenuButtons", predicate: ["actionMenuButton"], descendants: true, read: ElementRef }], ngImport: i0, template: "<gn-ui-interactive-table\n [items]=\"records\"\n [isDraftPage]=\"isDraftPage\"\n (itemClick)=\"handleRecordClick($event)\"\n>\n <!-- SELECTED COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'3rem'\">\n <ng-template #cell let-item let-i=\"index\">\n <ng-icon\n name=\"iconoirLock\"\n class=\"text-purple\"\n *ngIf=\"(!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\"\n ></ng-icon>\n <gn-ui-checkbox\n *ngIf=\"(item.extras?.edit || isDraftPage) && item.kind === 'dataset'\"\n [checked]=\"isChecked(item)\"\n (changed)=\"handleRecordSelectedChange($event, item)\"\n class=\"-m-2\"\n type=\"default\"\n ></gn-ui-checkbox>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- TITLE COLUMN -->\n <gn-ui-interactive-table-column\n [sortable]=\"true\"\n [grow]=\"true\"\n [activeSort]=\"isSortedBy('resourceTitleObject.default.keyword')\"\n (sortChange)=\"setSortBy('resourceTitleObject.default.keyword', $event)\"\n >\n <ng-template #header>\n <span translate>record.metadata.title</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex flex-row items-center gap-2 max-w-full font-semibold\">\n <span data-cy=\"resultItemTitle\" class=\"overflow-hidden text-ellipsis\">{{\n item.title\n }}</span>\n <gn-ui-badge\n *ngIf=\"hasDraft(item)\"\n [style.--gn-ui-badge-padding]=\"'0.2em 0.6em'\"\n [style.--gn-ui-badge-text-size]=\"'12px'\"\n [style.--gn-ui-badge-text-color]=\"'#3d2006'\"\n [style.--gn-ui-badge-background-color]=\"'#ffbc7b'\"\n [style.--gn-ui-badge-rounded]=\"'4px'\"\n >\n <span translate>dashboard.records.hasDraft</span>\n </gn-ui-badge>\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- FORMATS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'9rem'\">\n <ng-template #header>\n <span translate>record.metadata.formats</span>\n </ng-template>\n <ng-template #cell let-item>\n <div\n class=\"flex justify-start items-center gap-2 font-medium\"\n *ngIf=\"getRecordFormats(item) as formats\"\n [title]=\"formats.join(', ')\"\n >\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[0])\"\n *ngIf=\"formats[0]\"\n >\n {{ formats[0] }}\n </span>\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[1])\"\n *ngIf=\"formats[1]\"\n >\n {{ formats[1] }}\n </span>\n <div class=\"shrink-0 text-xs\" *ngIf=\"formats.slice(2).length > 0\">\n <span>+{{ formats.slice(2).length }}</span>\n </div>\n </div>\n <div *ngIf=\"!getRecordFormats(item)\"></div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- OWNER COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'12rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('recordOwner')\"\n (sortChange)=\"setSortBy('recordOwner', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.user</span>\n </ng-template>\n <ng-template #cell let-item>\n <ng-icon name=\"iconoirUser\" size=\"16px\"></ng-icon>\n <span data-cy=\"ownerInfo\" class=\"text-xs\">{{\n formatUserInfo(item.extras?.ownerInfo)\n }}</span>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- STATUS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'6rem'\">\n <ng-template #header>\n <span translate>record.metadata.status</span>\n </ng-template>\n <ng-template #cell let-item>\n <span class=\"text-xs\">\n {{\n (item.extras?.['isPublishedToAll']\n ? 'record.metadata.status.published'\n : 'record.metadata.status.notPublished'\n ) | translate\n }}</span\n >\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- UPDATE DATE COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'8rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('changeDate')\"\n (sortChange)=\"setSortBy('changeDate', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.changeDate</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex text-left w-full text-xs\">\n {{\n item.extras?.['isPublishedToAll']\n ? dateToString(item.recordUpdated)\n : '-'\n }}\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- ACTION MENU COLUMN -->\n <gn-ui-interactive-table-column>\n <ng-template #header> </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex justify-end items-center gap-4 w-full\">\n <!-- IS MULTILINGUAL -->\n <ng-icon\n *ngIf=\"isMultilingual(item)\"\n data-cy=\"multilingual-indicator\"\n name=\"iconoirTranslate\"\n [attr.title]=\"getTxtHoverMultilingual(item)\"\n ></ng-icon>\n <!-- MORE ACTIONS MENU BUTTON -->\n <gn-ui-button\n cdkOverlayOrigin\n #actionMenuButton\n (buttonClick)=\"openActionMenu(item, template)\"\n type=\"light\"\n data-test=\"record-menu-button\"\n [disabled]=\"\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\n \"\n >\n <ng-icon\n [ngClass]=\"{\n 'text-purple-light':\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset',\n }\"\n name=\"matMoreVert\"\n ></ng-icon>\n </gn-ui-button>\n </div>\n <ng-template #template>\n <gn-ui-action-menu\n [canDuplicate]=\"canDuplicate(item) && !isDuplicating\"\n [canDelete]=\"canDelete(item)\"\n [
|
|
32239
|
+
], viewQueries: [{ propertyName: "actionMenuButtons", predicate: ["actionMenuButton"], descendants: true, read: ElementRef }], ngImport: i0, template: "<gn-ui-interactive-table\n [items]=\"records\"\n [isDraftPage]=\"isDraftPage\"\n (itemClick)=\"handleRecordClick($event)\"\n>\n <!-- SELECTED COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'3rem'\">\n <ng-template #cell let-item let-i=\"index\">\n <ng-icon\n name=\"iconoirLock\"\n class=\"text-purple\"\n *ngIf=\"(!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\"\n ></ng-icon>\n <gn-ui-checkbox\n *ngIf=\"(item.extras?.edit || isDraftPage) && item.kind === 'dataset'\"\n [checked]=\"isChecked(item)\"\n (changed)=\"handleRecordSelectedChange($event, item)\"\n class=\"-m-2\"\n type=\"default\"\n ></gn-ui-checkbox>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- TITLE COLUMN -->\n <gn-ui-interactive-table-column\n [sortable]=\"true\"\n [grow]=\"true\"\n [activeSort]=\"isSortedBy('resourceTitleObject.default.keyword')\"\n (sortChange)=\"setSortBy('resourceTitleObject.default.keyword', $event)\"\n >\n <ng-template #header>\n <span translate>record.metadata.title</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex flex-row items-center gap-2 max-w-full font-semibold\">\n <span data-cy=\"resultItemTitle\" class=\"overflow-hidden text-ellipsis\">{{\n item.title\n }}</span>\n <gn-ui-badge\n *ngIf=\"hasDraft(item)\"\n [style.--gn-ui-badge-padding]=\"'0.2em 0.6em'\"\n [style.--gn-ui-badge-text-size]=\"'12px'\"\n [style.--gn-ui-badge-text-color]=\"'#3d2006'\"\n [style.--gn-ui-badge-background-color]=\"'#ffbc7b'\"\n [style.--gn-ui-badge-rounded]=\"'4px'\"\n >\n <span translate>dashboard.records.hasDraft</span>\n </gn-ui-badge>\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- FORMATS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'9rem'\">\n <ng-template #header>\n <span translate>record.metadata.formats</span>\n </ng-template>\n <ng-template #cell let-item>\n <div\n class=\"flex justify-start items-center gap-2 font-medium\"\n *ngIf=\"getRecordFormats(item) as formats\"\n [title]=\"formats.join(', ')\"\n >\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[0])\"\n *ngIf=\"formats[0]\"\n >\n {{ formats[0] }}\n </span>\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[1])\"\n *ngIf=\"formats[1]\"\n >\n {{ formats[1] }}\n </span>\n <div class=\"shrink-0 text-xs\" *ngIf=\"formats.slice(2).length > 0\">\n <span>+{{ formats.slice(2).length }}</span>\n </div>\n </div>\n <div *ngIf=\"!getRecordFormats(item)\"></div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- OWNER COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'12rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('recordOwner')\"\n (sortChange)=\"setSortBy('recordOwner', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.user</span>\n </ng-template>\n <ng-template #cell let-item>\n <ng-icon name=\"iconoirUser\" size=\"16px\"></ng-icon>\n <span data-cy=\"ownerInfo\" class=\"text-xs\">{{\n formatUserInfo(item.extras?.ownerInfo)\n }}</span>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- STATUS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'6rem'\">\n <ng-template #header>\n <span translate>record.metadata.status</span>\n </ng-template>\n <ng-template #cell let-item>\n <span class=\"text-xs\">\n {{\n (item.extras?.['isPublishedToAll']\n ? 'record.metadata.status.published'\n : 'record.metadata.status.notPublished'\n ) | translate\n }}</span\n >\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- UPDATE DATE COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'8rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('changeDate')\"\n (sortChange)=\"setSortBy('changeDate', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.changeDate</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex text-left w-full text-xs\">\n {{\n item.extras?.['isPublishedToAll']\n ? dateToString(item.recordUpdated)\n : '-'\n }}\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- ACTION MENU COLUMN -->\n <gn-ui-interactive-table-column>\n <ng-template #header> </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex justify-end items-center gap-4 w-full\">\n <!-- IS MULTILINGUAL -->\n <ng-icon\n *ngIf=\"isMultilingual(item)\"\n data-cy=\"multilingual-indicator\"\n name=\"iconoirTranslate\"\n [attr.title]=\"getTxtHoverMultilingual(item)\"\n ></ng-icon>\n <!-- MORE ACTIONS MENU BUTTON -->\n <gn-ui-button\n cdkOverlayOrigin\n #actionMenuButton\n (buttonClick)=\"openActionMenu(item, template)\"\n type=\"light\"\n data-test=\"record-menu-button\"\n [disabled]=\"\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\n \"\n >\n <ng-icon\n [ngClass]=\"{\n 'text-purple-light':\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset',\n }\"\n name=\"matMoreVert\"\n ></ng-icon>\n </gn-ui-button>\n </div>\n <ng-template #template>\n <gn-ui-action-menu\n [canDuplicate]=\"canDuplicate(item) && !isDuplicating\"\n [canDelete]=\"canDelete(item)\"\n [page]=\"isDraftPage ? 'draft' : 'main'\"\n (duplicate)=\"handleDuplicate(item)\"\n (delete)=\"handleDelete(item)\"\n (closeActionMenu)=\"closeActionMenu()\"\n (rollback)=\"handleRollback(item)\"\n >\n </gn-ui-action-menu>\n </ng-template>\n </ng-template>\n </gn-ui-interactive-table-column>\n</gn-ui-interactive-table>\n", styles: [":host{--gn-ui-button-height: 40px;--gn-ui-button-width: 40px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: UiInputsModule }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: CheckboxComponent, selector: "gn-ui-checkbox", inputs: ["type", "checked", "indeterminate"], outputs: ["changed"] }, { kind: "component", type: BadgeComponent, selector: "gn-ui-badge", inputs: ["clickable", "removable"], outputs: ["badgeRemoveClicked"] }, { kind: "component", type: InteractiveTableComponent, selector: "gn-ui-interactive-table", inputs: ["items", "isDraftPage"], outputs: ["itemClick"] }, { kind: "component", type: InteractiveTableColumnComponent, selector: "gn-ui-interactive-table-column", inputs: ["grow", "width", "sortable", "activeSort"], outputs: ["sortChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: ActionMenuComponent, selector: "gn-ui-action-menu", inputs: ["canDuplicate", "canDelete", "page"], outputs: ["duplicate", "delete", "closeActionMenu", "rollback", "switch"] }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }, { kind: "directive", type: CdkOverlayOrigin, selector: "[cdk-overlay-origin], [overlay-origin], [cdkOverlayOrigin]", exportAs: ["cdkOverlayOrigin"] }] }); }
|
|
31982
32240
|
}
|
|
31983
32241
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ResultsTableComponent, decorators: [{
|
|
31984
32242
|
type: Component,
|
|
@@ -31994,7 +32252,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
31994
32252
|
CdkOverlayOrigin,
|
|
31995
32253
|
], providers: [
|
|
31996
32254
|
provideIcons({ iconoirUser, iconoirLock, iconoirTranslate, matMoreVert }),
|
|
31997
|
-
], template: "<gn-ui-interactive-table\n [items]=\"records\"\n [isDraftPage]=\"isDraftPage\"\n (itemClick)=\"handleRecordClick($event)\"\n>\n <!-- SELECTED COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'3rem'\">\n <ng-template #cell let-item let-i=\"index\">\n <ng-icon\n name=\"iconoirLock\"\n class=\"text-purple\"\n *ngIf=\"(!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\"\n ></ng-icon>\n <gn-ui-checkbox\n *ngIf=\"(item.extras?.edit || isDraftPage) && item.kind === 'dataset'\"\n [checked]=\"isChecked(item)\"\n (changed)=\"handleRecordSelectedChange($event, item)\"\n class=\"-m-2\"\n type=\"default\"\n ></gn-ui-checkbox>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- TITLE COLUMN -->\n <gn-ui-interactive-table-column\n [sortable]=\"true\"\n [grow]=\"true\"\n [activeSort]=\"isSortedBy('resourceTitleObject.default.keyword')\"\n (sortChange)=\"setSortBy('resourceTitleObject.default.keyword', $event)\"\n >\n <ng-template #header>\n <span translate>record.metadata.title</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex flex-row items-center gap-2 max-w-full font-semibold\">\n <span data-cy=\"resultItemTitle\" class=\"overflow-hidden text-ellipsis\">{{\n item.title\n }}</span>\n <gn-ui-badge\n *ngIf=\"hasDraft(item)\"\n [style.--gn-ui-badge-padding]=\"'0.2em 0.6em'\"\n [style.--gn-ui-badge-text-size]=\"'12px'\"\n [style.--gn-ui-badge-text-color]=\"'#3d2006'\"\n [style.--gn-ui-badge-background-color]=\"'#ffbc7b'\"\n [style.--gn-ui-badge-rounded]=\"'4px'\"\n >\n <span translate>dashboard.records.hasDraft</span>\n </gn-ui-badge>\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- FORMATS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'9rem'\">\n <ng-template #header>\n <span translate>record.metadata.formats</span>\n </ng-template>\n <ng-template #cell let-item>\n <div\n class=\"flex justify-start items-center gap-2 font-medium\"\n *ngIf=\"getRecordFormats(item) as formats\"\n [title]=\"formats.join(', ')\"\n >\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[0])\"\n *ngIf=\"formats[0]\"\n >\n {{ formats[0] }}\n </span>\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[1])\"\n *ngIf=\"formats[1]\"\n >\n {{ formats[1] }}\n </span>\n <div class=\"shrink-0 text-xs\" *ngIf=\"formats.slice(2).length > 0\">\n <span>+{{ formats.slice(2).length }}</span>\n </div>\n </div>\n <div *ngIf=\"!getRecordFormats(item)\"></div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- OWNER COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'12rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('recordOwner')\"\n (sortChange)=\"setSortBy('recordOwner', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.user</span>\n </ng-template>\n <ng-template #cell let-item>\n <ng-icon name=\"iconoirUser\" size=\"16px\"></ng-icon>\n <span data-cy=\"ownerInfo\" class=\"text-xs\">{{\n formatUserInfo(item.extras?.ownerInfo)\n }}</span>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- STATUS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'6rem'\">\n <ng-template #header>\n <span translate>record.metadata.status</span>\n </ng-template>\n <ng-template #cell let-item>\n <span class=\"text-xs\">\n {{\n (item.extras?.['isPublishedToAll']\n ? 'record.metadata.status.published'\n : 'record.metadata.status.notPublished'\n ) | translate\n }}</span\n >\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- UPDATE DATE COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'8rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('changeDate')\"\n (sortChange)=\"setSortBy('changeDate', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.changeDate</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex text-left w-full text-xs\">\n {{\n item.extras?.['isPublishedToAll']\n ? dateToString(item.recordUpdated)\n : '-'\n }}\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- ACTION MENU COLUMN -->\n <gn-ui-interactive-table-column>\n <ng-template #header> </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex justify-end items-center gap-4 w-full\">\n <!-- IS MULTILINGUAL -->\n <ng-icon\n *ngIf=\"isMultilingual(item)\"\n data-cy=\"multilingual-indicator\"\n name=\"iconoirTranslate\"\n [attr.title]=\"getTxtHoverMultilingual(item)\"\n ></ng-icon>\n <!-- MORE ACTIONS MENU BUTTON -->\n <gn-ui-button\n cdkOverlayOrigin\n #actionMenuButton\n (buttonClick)=\"openActionMenu(item, template)\"\n type=\"light\"\n data-test=\"record-menu-button\"\n [disabled]=\"\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\n \"\n >\n <ng-icon\n [ngClass]=\"{\n 'text-purple-light':\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset',\n }\"\n name=\"matMoreVert\"\n ></ng-icon>\n </gn-ui-button>\n </div>\n <ng-template #template>\n <gn-ui-action-menu\n [canDuplicate]=\"canDuplicate(item) && !isDuplicating\"\n [canDelete]=\"canDelete(item)\"\n [
|
|
32255
|
+
], template: "<gn-ui-interactive-table\n [items]=\"records\"\n [isDraftPage]=\"isDraftPage\"\n (itemClick)=\"handleRecordClick($event)\"\n>\n <!-- SELECTED COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'3rem'\">\n <ng-template #cell let-item let-i=\"index\">\n <ng-icon\n name=\"iconoirLock\"\n class=\"text-purple\"\n *ngIf=\"(!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\"\n ></ng-icon>\n <gn-ui-checkbox\n *ngIf=\"(item.extras?.edit || isDraftPage) && item.kind === 'dataset'\"\n [checked]=\"isChecked(item)\"\n (changed)=\"handleRecordSelectedChange($event, item)\"\n class=\"-m-2\"\n type=\"default\"\n ></gn-ui-checkbox>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- TITLE COLUMN -->\n <gn-ui-interactive-table-column\n [sortable]=\"true\"\n [grow]=\"true\"\n [activeSort]=\"isSortedBy('resourceTitleObject.default.keyword')\"\n (sortChange)=\"setSortBy('resourceTitleObject.default.keyword', $event)\"\n >\n <ng-template #header>\n <span translate>record.metadata.title</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex flex-row items-center gap-2 max-w-full font-semibold\">\n <span data-cy=\"resultItemTitle\" class=\"overflow-hidden text-ellipsis\">{{\n item.title\n }}</span>\n <gn-ui-badge\n *ngIf=\"hasDraft(item)\"\n [style.--gn-ui-badge-padding]=\"'0.2em 0.6em'\"\n [style.--gn-ui-badge-text-size]=\"'12px'\"\n [style.--gn-ui-badge-text-color]=\"'#3d2006'\"\n [style.--gn-ui-badge-background-color]=\"'#ffbc7b'\"\n [style.--gn-ui-badge-rounded]=\"'4px'\"\n >\n <span translate>dashboard.records.hasDraft</span>\n </gn-ui-badge>\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- FORMATS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'9rem'\">\n <ng-template #header>\n <span translate>record.metadata.formats</span>\n </ng-template>\n <ng-template #cell let-item>\n <div\n class=\"flex justify-start items-center gap-2 font-medium\"\n *ngIf=\"getRecordFormats(item) as formats\"\n [title]=\"formats.join(', ')\"\n >\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[0])\"\n *ngIf=\"formats[0]\"\n >\n {{ formats[0] }}\n </span>\n <span\n class=\"badge-btn min-w-[45px] text-xs text-gray-900 px-2 shrink-0\"\n [style.background-color]=\"getBadgeColor(formats[1])\"\n *ngIf=\"formats[1]\"\n >\n {{ formats[1] }}\n </span>\n <div class=\"shrink-0 text-xs\" *ngIf=\"formats.slice(2).length > 0\">\n <span>+{{ formats.slice(2).length }}</span>\n </div>\n </div>\n <div *ngIf=\"!getRecordFormats(item)\"></div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- OWNER COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'12rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('recordOwner')\"\n (sortChange)=\"setSortBy('recordOwner', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.user</span>\n </ng-template>\n <ng-template #cell let-item>\n <ng-icon name=\"iconoirUser\" size=\"16px\"></ng-icon>\n <span data-cy=\"ownerInfo\" class=\"text-xs\">{{\n formatUserInfo(item.extras?.ownerInfo)\n }}</span>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- STATUS COLUMN -->\n <gn-ui-interactive-table-column [width]=\"'6rem'\">\n <ng-template #header>\n <span translate>record.metadata.status</span>\n </ng-template>\n <ng-template #cell let-item>\n <span class=\"text-xs\">\n {{\n (item.extras?.['isPublishedToAll']\n ? 'record.metadata.status.published'\n : 'record.metadata.status.notPublished'\n ) | translate\n }}</span\n >\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- UPDATE DATE COLUMN -->\n <gn-ui-interactive-table-column\n [width]=\"'8rem'\"\n [sortable]=\"true\"\n [activeSort]=\"isSortedBy('changeDate')\"\n (sortChange)=\"setSortBy('changeDate', $event)\"\n >\n <ng-template #header>\n <span translate>search.filters.changeDate</span>\n </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex text-left w-full text-xs\">\n {{\n item.extras?.['isPublishedToAll']\n ? dateToString(item.recordUpdated)\n : '-'\n }}\n </div>\n </ng-template>\n </gn-ui-interactive-table-column>\n\n <!-- ACTION MENU COLUMN -->\n <gn-ui-interactive-table-column>\n <ng-template #header> </ng-template>\n <ng-template #cell let-item>\n <div class=\"flex justify-end items-center gap-4 w-full\">\n <!-- IS MULTILINGUAL -->\n <ng-icon\n *ngIf=\"isMultilingual(item)\"\n data-cy=\"multilingual-indicator\"\n name=\"iconoirTranslate\"\n [attr.title]=\"getTxtHoverMultilingual(item)\"\n ></ng-icon>\n <!-- MORE ACTIONS MENU BUTTON -->\n <gn-ui-button\n cdkOverlayOrigin\n #actionMenuButton\n (buttonClick)=\"openActionMenu(item, template)\"\n type=\"light\"\n data-test=\"record-menu-button\"\n [disabled]=\"\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset'\n \"\n >\n <ng-icon\n [ngClass]=\"{\n 'text-purple-light':\n (!item.extras?.edit && !isDraftPage) || item.kind !== 'dataset',\n }\"\n name=\"matMoreVert\"\n ></ng-icon>\n </gn-ui-button>\n </div>\n <ng-template #template>\n <gn-ui-action-menu\n [canDuplicate]=\"canDuplicate(item) && !isDuplicating\"\n [canDelete]=\"canDelete(item)\"\n [page]=\"isDraftPage ? 'draft' : 'main'\"\n (duplicate)=\"handleDuplicate(item)\"\n (delete)=\"handleDelete(item)\"\n (closeActionMenu)=\"closeActionMenu()\"\n (rollback)=\"handleRollback(item)\"\n >\n </gn-ui-action-menu>\n </ng-template>\n </ng-template>\n </gn-ui-interactive-table-column>\n</gn-ui-interactive-table>\n", styles: [":host{--gn-ui-button-height: 40px;--gn-ui-button-width: 40px}\n"] }]
|
|
31998
32256
|
}], ctorParameters: () => [{ type: i1$8.Overlay }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }, { type: DateService }, { type: i1$1.TranslateService }], propDecorators: { records: [{
|
|
31999
32257
|
type: Input
|
|
32000
32258
|
}], selectedRecordsIdentifiers: [{
|
|
@@ -42819,17 +43077,256 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
42819
43077
|
args: [{ selector: 'gn-ui-record-form', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, FormFieldComponent, TranslateModule], template: "<div class=\"flex flex-col gap-6\">\n <ng-container\n *ngFor=\"\n let section of facade.currentSections$ | async;\n trackBy: sectionTracker\n \"\n >\n <ng-container *ngIf=\"!section.hidden\">\n <div class=\"flex flex-col gap-6 border p-8 rounded-[8px] shadow\">\n <div class=\"flex flex-col gap-2\">\n <div\n *ngIf=\"section.labelKey\"\n class=\"text-2xl font-title text-black\"\n translate\n >\n {{ section.labelKey }}\n </div>\n <div\n *ngIf=\"section.descriptionKey\"\n class=\"text-gray-800 text-sm\"\n translate\n >\n {{ section.descriptionKey }}\n </div>\n </div>\n <div class=\"grid auto-rows-auto grid-cols-2 gap-[32px]\">\n <ng-container\n *ngFor=\"\n let field of section.fieldsWithValues;\n trackBy: fieldTracker\n \"\n >\n <ng-container *ngIf=\"!field.config.hidden\">\n <gn-ui-form-field\n [ngClass]=\"\n field.config.gridColumnSpan === 1\n ? 'col-span-1'\n : 'col-span-2'\n \"\n [uniqueIdentifier]=\"recordUniqueIdentifier$ | async\"\n [model]=\"field.config.model!\"\n [modelSpecifier]=\"field.config.modelSpecifier!\"\n [config]=\"field.config.formFieldConfig\"\n [value]=\"field.value\"\n [componentName]=\"field.config.componentName\"\n (valueChange)=\"\n handleFieldValueChange(field.config.model!, $event)\n \"\n ></gn-ui-form-field>\n </ng-container>\n </ng-container>\n </div>\n </div>\n </ng-container>\n </ng-container>\n</div>\n" }]
|
|
42820
43078
|
}], ctorParameters: () => [{ type: EditorFacade }] });
|
|
42821
43079
|
|
|
43080
|
+
const extraFlagMap = {
|
|
43081
|
+
ar: 'arab',
|
|
43082
|
+
en: 'gb',
|
|
43083
|
+
ko: 'kr',
|
|
43084
|
+
cs: 'cz',
|
|
43085
|
+
zh: 'cn',
|
|
43086
|
+
ca: 'es-ct',
|
|
43087
|
+
rm: 'ch',
|
|
43088
|
+
da: 'dk',
|
|
43089
|
+
sv: 'se',
|
|
43090
|
+
cy: 'gb-wls',
|
|
43091
|
+
hy: 'am',
|
|
43092
|
+
ka: 'ge',
|
|
43093
|
+
uk: 'ua',
|
|
43094
|
+
};
|
|
42822
43095
|
class MultilingualPanelComponent {
|
|
42823
|
-
|
|
42824
|
-
this.
|
|
43096
|
+
set record(value) {
|
|
43097
|
+
this._record = value;
|
|
43098
|
+
this.isMultilingual = value.otherLanguages.length > 0;
|
|
43099
|
+
this.editTranslations = false;
|
|
43100
|
+
this.recordLanguages = [...value.otherLanguages, value.defaultLanguage];
|
|
43101
|
+
this.selectedLanguages = this.recordLanguages;
|
|
43102
|
+
this.formLanguage = value.defaultLanguage;
|
|
43103
|
+
}
|
|
43104
|
+
constructor(facade, dialog, translateService, recordsRepository, overlay, viewContainerRef, cdr) {
|
|
43105
|
+
this.facade = facade;
|
|
43106
|
+
this.dialog = dialog;
|
|
43107
|
+
this.translateService = translateService;
|
|
43108
|
+
this.recordsRepository = recordsRepository;
|
|
43109
|
+
this.overlay = overlay;
|
|
43110
|
+
this.viewContainerRef = viewContainerRef;
|
|
43111
|
+
this.cdr = cdr;
|
|
43112
|
+
this.selectedLanguages = [];
|
|
43113
|
+
this.recordLanguages = [];
|
|
43114
|
+
this.formLanguage = '';
|
|
43115
|
+
this.isActionMenuOpen = false;
|
|
43116
|
+
this.subscription = new Subscription();
|
|
43117
|
+
this.supportedLanguages$ = this.recordsRepository
|
|
43118
|
+
.getApplicationLanguages()
|
|
43119
|
+
.pipe(map$2((languages) => this.sortLanguages(languages)));
|
|
42825
43120
|
}
|
|
42826
|
-
|
|
42827
|
-
|
|
43121
|
+
ngOnDestroy() {
|
|
43122
|
+
this.subscription.unsubscribe();
|
|
43123
|
+
}
|
|
43124
|
+
sortLanguages(languages) {
|
|
43125
|
+
return languages
|
|
43126
|
+
.map((lang) => {
|
|
43127
|
+
const label = this.translateService.instant('language.' + lang);
|
|
43128
|
+
const isTranslated = label !== 'language.' + lang;
|
|
43129
|
+
return {
|
|
43130
|
+
lang,
|
|
43131
|
+
label,
|
|
43132
|
+
isTranslated,
|
|
43133
|
+
};
|
|
43134
|
+
})
|
|
43135
|
+
.sort((a, b) => {
|
|
43136
|
+
if (a.isTranslated && !b.isTranslated)
|
|
43137
|
+
return -1;
|
|
43138
|
+
if (!a.isTranslated && b.isTranslated)
|
|
43139
|
+
return 1;
|
|
43140
|
+
return a.label.localeCompare(b.label);
|
|
43141
|
+
})
|
|
43142
|
+
.map((item) => item.lang);
|
|
43143
|
+
}
|
|
43144
|
+
toggleLanguageSelection() {
|
|
43145
|
+
this.editTranslations = !this.editTranslations;
|
|
43146
|
+
}
|
|
43147
|
+
getIconClass(lang) {
|
|
43148
|
+
return extraFlagMap[lang]
|
|
43149
|
+
? `fi fi-${extraFlagMap[lang]} w-4 h-3`
|
|
43150
|
+
: `fi fi-${lang} w-4 h-3`;
|
|
43151
|
+
}
|
|
43152
|
+
switchMultilingual() {
|
|
43153
|
+
if (this.isMultilingual && this.selectedLanguages.length > 1) {
|
|
43154
|
+
this.confirmDeleteAction();
|
|
43155
|
+
}
|
|
43156
|
+
else {
|
|
43157
|
+
this.isMultilingual = true;
|
|
43158
|
+
this.editTranslations = true;
|
|
43159
|
+
}
|
|
43160
|
+
}
|
|
43161
|
+
getExtraClass(lang) {
|
|
43162
|
+
const baseClass = 'h-[34px] w-full font-bold justify-start hover:bg-white';
|
|
43163
|
+
if (this.selectedLanguages.includes(lang)) {
|
|
43164
|
+
return `${baseClass} bg-white border border-black`;
|
|
43165
|
+
}
|
|
43166
|
+
return baseClass;
|
|
43167
|
+
}
|
|
43168
|
+
toggleLanguage(lang) {
|
|
43169
|
+
if (this.selectedLanguages.includes(lang)) {
|
|
43170
|
+
this.removeSelectedLanguage(lang);
|
|
43171
|
+
}
|
|
43172
|
+
else {
|
|
43173
|
+
this.selectedLanguages.push(lang);
|
|
43174
|
+
}
|
|
43175
|
+
}
|
|
43176
|
+
removeSelectedLanguage(lang) {
|
|
43177
|
+
this.selectedLanguages = this.selectedLanguages.filter((language) => language !== lang);
|
|
43178
|
+
}
|
|
43179
|
+
validateTranslations() {
|
|
43180
|
+
const equalLength = this.selectedLanguages.length === this.recordLanguages.length;
|
|
43181
|
+
if (this.selectedLanguages.length < this.recordLanguages.length ||
|
|
43182
|
+
(equalLength && this.selectedLanguages !== this.recordLanguages)) {
|
|
43183
|
+
this.confirmDeleteAction(this.selectedLanguages);
|
|
43184
|
+
}
|
|
43185
|
+
else {
|
|
43186
|
+
this.updateTranslations();
|
|
43187
|
+
}
|
|
43188
|
+
}
|
|
43189
|
+
updateTranslations() {
|
|
43190
|
+
this.facade.updateRecordField('otherLanguages', this.selectedLanguages.filter((lang) => lang !== this.formLanguage));
|
|
43191
|
+
this.recordLanguages = this.selectedLanguages;
|
|
43192
|
+
this.editTranslations = false;
|
|
43193
|
+
}
|
|
43194
|
+
switchFormLang(lang) {
|
|
43195
|
+
// TO IMPLEMENT FURTHER
|
|
43196
|
+
}
|
|
43197
|
+
switchDefaultLang(lang) {
|
|
43198
|
+
this.formLanguage = lang;
|
|
43199
|
+
this.facade.updateRecordField('defaultLanguage', lang);
|
|
43200
|
+
this.facade.updateRecordField('otherLanguages', this.selectedLanguages.filter((lang) => lang !== this.formLanguage));
|
|
43201
|
+
this.closeActionMenu();
|
|
43202
|
+
}
|
|
43203
|
+
confirmDeleteAction(lang) {
|
|
43204
|
+
const dialogRef = this.dialog.open(ConfirmationDialogComponent, {
|
|
43205
|
+
data: {
|
|
43206
|
+
title: this.translateService.instant('editor.record.multilingual.confirmation.title'),
|
|
43207
|
+
message: this.translateService.instant('editor.record.multilingual.confirmation.message'),
|
|
43208
|
+
confirmText: this.translateService.instant('editor.record.multilingual.confirmation.confirmText'),
|
|
43209
|
+
cancelText: this.translateService.instant('editor.record.multilingual.confirmation.cancelText'),
|
|
43210
|
+
},
|
|
43211
|
+
restoreFocus: true,
|
|
43212
|
+
});
|
|
43213
|
+
this.subscription.add(dialogRef.afterClosed().subscribe((confirmed) => {
|
|
43214
|
+
if (confirmed) {
|
|
43215
|
+
if (lang) {
|
|
43216
|
+
if (!Array.isArray(lang)) {
|
|
43217
|
+
this.removeSelectedLanguage(lang);
|
|
43218
|
+
this.closeActionMenu();
|
|
43219
|
+
}
|
|
43220
|
+
this.updateTranslations();
|
|
43221
|
+
}
|
|
43222
|
+
else {
|
|
43223
|
+
this.facade.updateRecordField('otherLanguages', []);
|
|
43224
|
+
this.isMultilingual = false;
|
|
43225
|
+
this.selectedLanguages = [];
|
|
43226
|
+
}
|
|
43227
|
+
}
|
|
43228
|
+
else {
|
|
43229
|
+
this.isMultilingual = true;
|
|
43230
|
+
this.selectedLanguages = this.recordLanguages;
|
|
43231
|
+
}
|
|
43232
|
+
this.editTranslations = false;
|
|
43233
|
+
}));
|
|
43234
|
+
}
|
|
43235
|
+
isFirstUnsupported(index) {
|
|
43236
|
+
const langs = this.sortLanguages(this.recordLanguages);
|
|
43237
|
+
return (langs[index].length === 3 &&
|
|
43238
|
+
langs.slice(0, index).every((lang) => lang.length !== 3));
|
|
43239
|
+
}
|
|
43240
|
+
isLangSupported(lang) {
|
|
43241
|
+
return lang.length === 2;
|
|
43242
|
+
}
|
|
43243
|
+
getToggleTitle(lang) {
|
|
43244
|
+
if (lang === this._record.defaultLanguage) {
|
|
43245
|
+
return this.translateService.instant('editor.record.form.multilingual.forbidden');
|
|
43246
|
+
}
|
|
43247
|
+
return '';
|
|
43248
|
+
}
|
|
43249
|
+
openActionMenu(item, template) {
|
|
43250
|
+
this.isActionMenuOpen = true;
|
|
43251
|
+
const index = this.sortLanguages(this.selectedLanguages).indexOf(item);
|
|
43252
|
+
const buttonElement = this.actionMenuButtons.toArray()[index];
|
|
43253
|
+
const positionStrategy = this.overlay
|
|
43254
|
+
.position()
|
|
43255
|
+
.flexibleConnectedTo(buttonElement)
|
|
43256
|
+
.withFlexibleDimensions(true)
|
|
43257
|
+
.withPush(true)
|
|
43258
|
+
.withPositions([
|
|
43259
|
+
{
|
|
43260
|
+
originX: 'end',
|
|
43261
|
+
originY: 'bottom',
|
|
43262
|
+
overlayX: 'end',
|
|
43263
|
+
overlayY: 'top',
|
|
43264
|
+
},
|
|
43265
|
+
{
|
|
43266
|
+
originX: 'end',
|
|
43267
|
+
originY: 'top',
|
|
43268
|
+
overlayX: 'end',
|
|
43269
|
+
overlayY: 'bottom',
|
|
43270
|
+
},
|
|
43271
|
+
]);
|
|
43272
|
+
this.overlayRef = this.overlay.create({
|
|
43273
|
+
hasBackdrop: true,
|
|
43274
|
+
backdropClass: 'cdk-overlay-transparent-backdrop',
|
|
43275
|
+
positionStrategy: positionStrategy,
|
|
43276
|
+
scrollStrategy: this.overlay.scrollStrategies.reposition(),
|
|
43277
|
+
});
|
|
43278
|
+
const portal = new TemplatePortal(template, this.viewContainerRef);
|
|
43279
|
+
this.overlayRef.attach(portal);
|
|
43280
|
+
this.subscription.add(this.overlayRef.backdropClick().subscribe(() => {
|
|
43281
|
+
this.closeActionMenu();
|
|
43282
|
+
}));
|
|
43283
|
+
}
|
|
43284
|
+
closeActionMenu() {
|
|
43285
|
+
if (this.overlayRef) {
|
|
43286
|
+
this.isActionMenuOpen = false;
|
|
43287
|
+
this.overlayRef.dispose();
|
|
43288
|
+
this.cdr.markForCheck();
|
|
43289
|
+
}
|
|
43290
|
+
}
|
|
43291
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MultilingualPanelComponent, deps: [{ token: EditorFacade }, { token: i1$a.MatDialog }, { token: i1$1.TranslateService }, { token: RecordsRepositoryInterface }, { token: i1$8.Overlay }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
43292
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MultilingualPanelComponent, isStandalone: true, selector: "gn-ui-multilingual-panel", inputs: { record: "record" }, providers: [
|
|
43293
|
+
provideIcons({
|
|
43294
|
+
iconoirSettings,
|
|
43295
|
+
matMoreHorizOutline,
|
|
43296
|
+
iconoirCheckCircle,
|
|
43297
|
+
iconoirCircle,
|
|
43298
|
+
}),
|
|
43299
|
+
provideNgIconsConfig({
|
|
43300
|
+
size: '1.25em',
|
|
43301
|
+
}),
|
|
43302
|
+
], viewQueries: [{ propertyName: "actionMenuButtons", predicate: ["actionMenuButton"], descendants: true, read: ElementRef }], ngImport: i0, template: "<div\n class=\"flex flex-col h-full w-[302px] bg-neutral-100 border-l border-gray-300 py-8 px-3 gap-6 overflow-auto\"\n>\n <div class=\"flex flex-row px-2 justify-between\">\n <span class=\"text-3xl font-title text-black/80\" translate\n >editor.record.form.multilingual.title</span\n >\n <button\n [title]=\"'editor.record.form.multilingual.open' | translate\"\n (click)=\"toggleLanguageSelection()\"\n *ngIf=\"isMultilingual\"\n data-test=\"activateSelection\"\n >\n <ng-icon class=\"mt-1\" name=\"iconoirSettings\"></ng-icon>\n </button>\n </div>\n <div class=\"flex flex-col gap-2\" *ngIf=\"editTranslations || !isMultilingual\">\n <gn-ui-check-toggle\n class=\"p-2\"\n [label]=\"'editor.record.form.multilingual.enable' | translate\"\n [color]=\"'primary'\"\n [(value)]=\"isMultilingual\"\n (toggled)=\"switchMultilingual($event)\"\n ></gn-ui-check-toggle>\n <div *ngIf=\"isMultilingual\" class=\"flex flex-col gap-2\">\n <div class=\"flex flex-row justify-between border-t border-gray-300 p-3\">\n <span class=\"mt-2 text-sm text-gray-600\" translate\n >editor.record.form.multilingual.activate</span\n >\n <gn-ui-button\n extraClass=\"w-16 h-8 font-bold\"\n type=\"gray\"\n (buttonClick)=\"validateTranslations()\"\n data-test=\"validateSelection\"\n >{{ 'editor.record.form.multilingual.validate' | translate }}\n </gn-ui-button>\n </div>\n <ng-container *ngIf=\"supportedLanguages$ | async as languages\">\n <div\n class=\"flex flex-col gap-2 w-full px-2\"\n data-test=\"langAvailable\"\n *ngFor=\"let lang of languages\"\n >\n <gn-ui-button\n [extraClass]=\"getExtraClass(lang)\"\n type=\"gray\"\n (buttonClick)=\"toggleLanguage(lang)\"\n [disabled]=\"lang === _record.defaultLanguage\"\n [title]=\"getToggleTitle(lang)\"\n >\n <span [class]=\"getIconClass(lang)\"></span>\n <span class=\"ml-2\">{{ 'language.' + lang | translate }}</span>\n </gn-ui-button>\n </div>\n </ng-container>\n </div>\n </div>\n <div *ngIf=\"!editTranslations && isMultilingual\" class=\"flex flex-col gap-2\">\n <gn-ui-button\n *ngFor=\"let recordLang of sortLanguages(recordLanguages); let i = index\"\n extraClass=\"flex flex-row justify-between bg-white border border-white rounded mb-1 h-[34px] w-full\"\n [ngClass]=\"{\n 'mt-8': isFirstUnsupported(i),\n '': true,\n }\"\n (buttonClick)=\"switchFormLang(recordLang)\"\n type=\"outline\"\n data-test=\"langSwitch\"\n >\n <div class=\"flex flex-row gap-2 items-center\">\n <ng-icon\n *ngIf=\"recordLang === formLanguage\"\n class=\"text-primary mt-1\"\n name=\"iconoirCheckCircle\"\n ></ng-icon>\n <ng-icon\n *ngIf=\"recordLang !== formLanguage\"\n class=\"text-gray-800 mt-1\"\n name=\"iconoirCircle\"\n ></ng-icon>\n <span\n *ngIf=\"recordLang.length === 2\"\n [class]=\"getIconClass(recordLang) + 'mt-1'\"\n ></span>\n <span [ngClass]=\"recordLang === formLanguage ? 'text-black' : ''\">{{\n isLangSupported(recordLang)\n ? ('language.' + recordLang | translate)\n : recordLang.toUpperCase()\n }}</span>\n </div>\n <div class=\"flex flex-row gap-2 items-center\">\n <span\n *ngIf=\"recordLang === formLanguage\"\n class=\"text-xs text-base\"\n translate\n >editor.record.form.multilingual.default</span\n >\n <button\n (click)=\"\n openActionMenu(recordLang, template); $event.stopPropagation()\n \"\n cdkOverlayOrigin\n #actionMenuButton\n >\n <ng-icon class=\"pb-5\" name=\"matMoreHorizOutline\"></ng-icon>\n </button>\n <ng-template #template>\n <gn-ui-action-menu\n [canDelete]=\"recordLang !== _record.defaultLanguage\"\n page=\"record\"\n (delete)=\"confirmDeleteAction(recordLang)\"\n (closeActionMenu)=\"closeActionMenu()\"\n (switch)=\"switchDefaultLang(recordLang)\"\n >\n </gn-ui-action-menu>\n </ng-template>\n </div>\n </gn-ui-button>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1$2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$2.AsyncPipe, name: "async" }, { kind: "component", type: CheckToggleComponent, selector: "gn-ui-check-toggle", inputs: ["title", "label", "value", "color"], outputs: ["toggled"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i1$1.TranslatePipe, name: "translate" }, { kind: "directive", type: i1$1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }, { kind: "component", type: ActionMenuComponent, selector: "gn-ui-action-menu", inputs: ["canDuplicate", "canDelete", "page"], outputs: ["duplicate", "delete", "closeActionMenu", "rollback", "switch"] }] }); }
|
|
42828
43303
|
}
|
|
42829
43304
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MultilingualPanelComponent, decorators: [{
|
|
42830
43305
|
type: Component,
|
|
42831
|
-
args: [{ selector: 'gn-ui-multilingual-panel', standalone: true, imports: [
|
|
42832
|
-
|
|
43306
|
+
args: [{ selector: 'gn-ui-multilingual-panel', standalone: true, imports: [
|
|
43307
|
+
CommonModule,
|
|
43308
|
+
CheckToggleComponent,
|
|
43309
|
+
TranslateModule,
|
|
43310
|
+
ButtonComponent,
|
|
43311
|
+
NgIconComponent,
|
|
43312
|
+
ActionMenuComponent,
|
|
43313
|
+
], providers: [
|
|
43314
|
+
provideIcons({
|
|
43315
|
+
iconoirSettings,
|
|
43316
|
+
matMoreHorizOutline,
|
|
43317
|
+
iconoirCheckCircle,
|
|
43318
|
+
iconoirCircle,
|
|
43319
|
+
}),
|
|
43320
|
+
provideNgIconsConfig({
|
|
43321
|
+
size: '1.25em',
|
|
43322
|
+
}),
|
|
43323
|
+
], template: "<div\n class=\"flex flex-col h-full w-[302px] bg-neutral-100 border-l border-gray-300 py-8 px-3 gap-6 overflow-auto\"\n>\n <div class=\"flex flex-row px-2 justify-between\">\n <span class=\"text-3xl font-title text-black/80\" translate\n >editor.record.form.multilingual.title</span\n >\n <button\n [title]=\"'editor.record.form.multilingual.open' | translate\"\n (click)=\"toggleLanguageSelection()\"\n *ngIf=\"isMultilingual\"\n data-test=\"activateSelection\"\n >\n <ng-icon class=\"mt-1\" name=\"iconoirSettings\"></ng-icon>\n </button>\n </div>\n <div class=\"flex flex-col gap-2\" *ngIf=\"editTranslations || !isMultilingual\">\n <gn-ui-check-toggle\n class=\"p-2\"\n [label]=\"'editor.record.form.multilingual.enable' | translate\"\n [color]=\"'primary'\"\n [(value)]=\"isMultilingual\"\n (toggled)=\"switchMultilingual($event)\"\n ></gn-ui-check-toggle>\n <div *ngIf=\"isMultilingual\" class=\"flex flex-col gap-2\">\n <div class=\"flex flex-row justify-between border-t border-gray-300 p-3\">\n <span class=\"mt-2 text-sm text-gray-600\" translate\n >editor.record.form.multilingual.activate</span\n >\n <gn-ui-button\n extraClass=\"w-16 h-8 font-bold\"\n type=\"gray\"\n (buttonClick)=\"validateTranslations()\"\n data-test=\"validateSelection\"\n >{{ 'editor.record.form.multilingual.validate' | translate }}\n </gn-ui-button>\n </div>\n <ng-container *ngIf=\"supportedLanguages$ | async as languages\">\n <div\n class=\"flex flex-col gap-2 w-full px-2\"\n data-test=\"langAvailable\"\n *ngFor=\"let lang of languages\"\n >\n <gn-ui-button\n [extraClass]=\"getExtraClass(lang)\"\n type=\"gray\"\n (buttonClick)=\"toggleLanguage(lang)\"\n [disabled]=\"lang === _record.defaultLanguage\"\n [title]=\"getToggleTitle(lang)\"\n >\n <span [class]=\"getIconClass(lang)\"></span>\n <span class=\"ml-2\">{{ 'language.' + lang | translate }}</span>\n </gn-ui-button>\n </div>\n </ng-container>\n </div>\n </div>\n <div *ngIf=\"!editTranslations && isMultilingual\" class=\"flex flex-col gap-2\">\n <gn-ui-button\n *ngFor=\"let recordLang of sortLanguages(recordLanguages); let i = index\"\n extraClass=\"flex flex-row justify-between bg-white border border-white rounded mb-1 h-[34px] w-full\"\n [ngClass]=\"{\n 'mt-8': isFirstUnsupported(i),\n '': true,\n }\"\n (buttonClick)=\"switchFormLang(recordLang)\"\n type=\"outline\"\n data-test=\"langSwitch\"\n >\n <div class=\"flex flex-row gap-2 items-center\">\n <ng-icon\n *ngIf=\"recordLang === formLanguage\"\n class=\"text-primary mt-1\"\n name=\"iconoirCheckCircle\"\n ></ng-icon>\n <ng-icon\n *ngIf=\"recordLang !== formLanguage\"\n class=\"text-gray-800 mt-1\"\n name=\"iconoirCircle\"\n ></ng-icon>\n <span\n *ngIf=\"recordLang.length === 2\"\n [class]=\"getIconClass(recordLang) + 'mt-1'\"\n ></span>\n <span [ngClass]=\"recordLang === formLanguage ? 'text-black' : ''\">{{\n isLangSupported(recordLang)\n ? ('language.' + recordLang | translate)\n : recordLang.toUpperCase()\n }}</span>\n </div>\n <div class=\"flex flex-row gap-2 items-center\">\n <span\n *ngIf=\"recordLang === formLanguage\"\n class=\"text-xs text-base\"\n translate\n >editor.record.form.multilingual.default</span\n >\n <button\n (click)=\"\n openActionMenu(recordLang, template); $event.stopPropagation()\n \"\n cdkOverlayOrigin\n #actionMenuButton\n >\n <ng-icon class=\"pb-5\" name=\"matMoreHorizOutline\"></ng-icon>\n </button>\n <ng-template #template>\n <gn-ui-action-menu\n [canDelete]=\"recordLang !== _record.defaultLanguage\"\n page=\"record\"\n (delete)=\"confirmDeleteAction(recordLang)\"\n (closeActionMenu)=\"closeActionMenu()\"\n (switch)=\"switchDefaultLang(recordLang)\"\n >\n </gn-ui-action-menu>\n </ng-template>\n </div>\n </gn-ui-button>\n </div>\n</div>\n" }]
|
|
43324
|
+
}], ctorParameters: () => [{ type: EditorFacade }, { type: i1$a.MatDialog }, { type: i1$1.TranslateService }, { type: RecordsRepositoryInterface }, { type: i1$8.Overlay }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }], propDecorators: { record: [{
|
|
43325
|
+
type: Input
|
|
43326
|
+
}], actionMenuButtons: [{
|
|
43327
|
+
type: ViewChildren,
|
|
43328
|
+
args: ['actionMenuButton', { read: ElementRef }]
|
|
43329
|
+
}] } });
|
|
42833
43330
|
|
|
42834
43331
|
const ROUTER_STATE_KEY = 'router';
|
|
42835
43332
|
const ROUTER_ROUTE_SEARCH = 'search';
|
|
@@ -43275,5 +43772,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
|
|
|
43275
43772
|
* Generated bundle index. Do not edit.
|
|
43276
43773
|
*/
|
|
43277
43774
|
|
|
43278
|
-
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AbstractSearchField, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, 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, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogListComponent, FeatureCatalogModule, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureNotificationsModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, METADATA_LANGUAGE, MY_FORMATS, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SearchEffects, SearchFacade, SearchFeatureCatalogComponent, SearchFiltersSummaryComponent, SearchFiltersSummaryItemComponent, SearchInputComponent, SearchRouterContainerDirective, SearchService, SearchStateContainerDirective, SelectionService, ServiceCapabilitiesComponent, SetConfigAggregations, SetConfigFilters, SetConfigRequestFields, SetError, SetFavoritesOnly, SetFilters, SetIncludeOnAggregation, SetPageSize, SetResultsAggregations, SetResultsHits, SetResultsLayout, SetSearch, SetSortBy, SetSpatialFilterEnabled, SimpleSearchField, SiteTitleComponent, SortByComponent, SortableListComponent, SourceLabelComponent, SourcesService, SpatialExtentComponent, SpinningLoaderComponent, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, UtilI18nModule, UtilSharedModule, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, 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, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryFromGeoJSON, getGlobalConfig, getJsonDataItemsProxy, getLangFromBrowser, getLayers, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getResourceType, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, 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, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, 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, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateRecordField, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
43775
|
+
export { ADD_RESULTS, ADD_SEARCH, AbstractAction, AbstractSearchField, ActionMenuComponent, AddLayerFromCatalogComponent, AddLayerRecordPreviewComponent, AddResults, AddSearch, AnchorLinkDirective, ApiCardComponent, ApplicationBannerComponent, AuthService, AutocompleteComponent, AvailableServicesField, AvatarComponent, AvatarServiceInterface, BASEMAP_LAYERS, BadgeComponent, BaseConverter, BaseFileReader, BaseReader, BlockListComponent, ButtonComponent, CLEAR_ERROR, CLEAR_RESULTS, CarouselComponent, CatalogTitleComponent, ChartComponent, ChartViewComponent, CheckToggleComponent, CheckboxComponent, ClearError, ClearResults, ColorScaleComponent, ConfirmationDialogComponent, ContentGhostComponent, CopyTextButtonComponent, DEFAULT_GN4_LOGIN_URL, DEFAULT_GN4_LOGOUT_URL, DEFAULT_GN4_SETTINGS_URL, DEFAULT_LANG, DEFAULT_PAGE_SIZE, DEFAULT_RESULTS_LAYOUT_CONFIG, DEFAULT_SEARCH_KEY, DO_NOT_USE_DEFAULT_BASEMAP, DataService, DataTableComponent, DataViewComponent, DataViewPermalinkComponent, DataViewShareComponent, DataViewWebComponentComponent, DatePickerComponent, DateRangeDropdownComponent, 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, ExternalViewerButtonComponent, FIELDS_BRIEF, FIELDS_SUMMARY, FILTER_GEOMETRY, FILTER_SUMMARY_IGNORE_LIST, FORMATS, FacetBlockComponent, FacetBlockStubComponent, FacetItemComponent, FacetItemStubComponent, FacetListComponent, FacetsContainerComponent, FacetsModule, FavoriteStarComponent, FavoritesService, FeatureAuthModule, FeatureCatalogListComponent, FeatureCatalogModule, FeatureDetailComponent, FeatureEditorModule, FeatureMapModule, FeatureNotificationsModule, FeatureRecordModule, FeatureSearchModule, FetchError, FieldsService, FigureComponent, FigureContainerComponent, FileInputComponent, FileTranslateLoader, FilesDropDirective, FilterDropdownComponent, FormFieldArrayComponent, FormFieldComponent, FormFieldDateComponent, FormFieldFileComponent, FormFieldKeywordsComponent, FormFieldLicenseComponent, FormFieldObjectComponent, FormFieldRichComponent, FormFieldSimpleComponent, FormFieldSpatialExtentComponent, FormFieldTemporalExtentsComponent, FormFieldWrapperComponent, FullTextSearchField, FuzzySearchComponent, GEONETWORK_UI_TAG_NAME, GEONETWORK_UI_VERSION, GeoDataBadgeComponent, GeoTableViewComponent, GeocodingComponent, GeojsonReader, Gn4Converter, Gn4PlatformMapper, Gn4PlatformService, Gn4Repository, Gn4SettingsService, GpfApiDlComponent, GravatarService, HttpLoaderFactory, I18nInterceptor, ImageFallbackDirective, ImageInputComponent, ImageOverlayPreviewComponent, ImportRecordComponent, InlineFilterComponent, InteractiveTableColumnComponent, InteractiveTableComponent, InternalLinkCardComponent, IsSpatialSearchField, Iso191153Converter, Iso19139Converter, KindBadgeComponent, LANGUAGES_LIST, LANGUAGE_NAMES, LANGUAGE_STORAGE_KEY, LANG_2_TO_3_MAPPER, LANG_3_TO_2_MAPPER, LOGIN_URL, LOGOUT_URL, LONLAT_CRS_CODES, LangService, LanguageSwitcherComponent, LayersPanelComponent, LicenseSearchField, LinkCardComponent, LinkClassifierService, LinkUsage, LoadingMaskComponent, LogService, MAP_FEATURE_KEY, MAP_VIEW_CONSTRAINTS, METADATA_LANGUAGE, MY_FORMATS, MapContainerComponent, MapFacade, MapLegendComponent, MapStateContainerComponent, MapStyleService, MapUtilsService, MapViewComponent, MarkdownEditorComponent, MarkdownParserComponent, MaxLinesComponent, mdview_actions as MdViewActions, MdViewFacade, MetadataCatalogComponent, MetadataContactComponent, MetadataInfoComponent, MetadataLinkType, MetadataMapperContext, MetadataQualityComponent, MetadataQualityItemComponent, ModalDialogComponent, MultilingualPanelComponent, MultilingualSearchField, MyOrgService, NAMESPACES, NOT_APPLICABLE_CONSTRAINT, NOT_KNOWN_CONSTRAINT, NotificationComponent, NotificationsContainerComponent, NotificationsService, ORGANIZATIONS_STRATEGY, ORGANIZATION_PAGE_URL_TOKEN, ORGANIZATION_URL_TOKEN, OrganisationPreviewComponent, OrganisationsComponent, OrganisationsFilterComponent, OrganisationsResultComponent, OrganizationSearchField, OrganizationsFromGroupsService, OrganizationsFromMetadataService, OwnerSearchField, PAGINATE, PARSE_DELIMITER, PATCH_RESULTS_AGGREGATIONS, PROXY_PATH, Paginate, PaginationButtonsComponent, PaginationComponent, PaginationDotsComponent, PatchResultsAggregations, PopoverComponent, PopupAlertComponent, PossibleResourceTypes, PossibleResourceTypesDefinition, PreviousNextButtonsComponent, ProgressBarComponent, ProxyService, QUERY_FIELDS, RECORD_DATASET_URL_TOKEN, RECORD_REUSE_URL_TOKEN, RECORD_SERVICE_URL_TOKEN, REQUEST_MORE_ON_AGGREGATION, REQUEST_MORE_RESULTS, REQUEST_NEW_RESULTS, RESULTS_LAYOUT_CONFIG, ROUTER_CONFIG, ROUTER_ROUTE_DATASET, ROUTER_ROUTE_ORGANIZATION, ROUTER_ROUTE_REUSE, ROUTER_ROUTE_SEARCH, ROUTER_ROUTE_SERVICE, ROUTER_STATE_KEY, ROUTE_PARAMS, RecordApiFormComponent, RecordFormComponent, RecordKindField, RecordMetaComponent, RecordMetricComponent, RecordPreviewCardComponent, RecordPreviewComponent, RecordPreviewFeedComponent, RecordPreviewListComponent, RecordPreviewRowComponent, RecordPreviewTextComponent, RecordPreviewTitleComponent, RecordsMetricsComponent, RecordsService, RelatedRecordCardComponent, RequestMoreOnAggregation, RequestMoreResults, RequestNewResults, ResourceTypeLegacyField, ResultsHitsContainerComponent, ResultsHitsNumberComponent, ResultsHitsSearchKindComponent, ResultsLayoutComponent, ResultsLayoutConfigItem, ResultsListComponent, ResultsListContainerComponent, ResultsListItemComponent, ResultsTableComponent, ResultsTableContainerComponent, RouterEffects, RouterFacade, RouterService, SEARCH_FEATURE_KEY, SETTINGS_URL, SET_CONFIG_AGGREGATIONS, SET_CONFIG_FILTERS, SET_CONFIG_REQUEST_FIELDS, SET_ERROR, SET_FAVORITES_ONLY, SET_FILTERS, SET_INCLUDE_ON_AGGREGATION, SET_PAGE_SIZE, SET_RESULTS_AGGREGATIONS, SET_RESULTS_HITS, SET_RESULTS_LAYOUT, SET_SEARCH, SET_SORT_BY, SET_SPATIAL_FILTER_ENABLED, SUPPORTED_LANGUAGES, 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, StarToggleComponent, StickyHeaderComponent, SupportedTypes, SwitchToggleComponent, THUMBNAIL_PLACEHOLDER, TRANSLATE_DEFAULT_CONFIG, TRANSLATE_WITH_OVERRIDES_CONFIG, TableViewComponent, TextAreaComponent, TextInputComponent, ThemeService, ThumbnailComponent, TranslatedSearchField, TruncatedTextComponent, UPDATE_CONFIG_AGGREGATIONS, UPDATE_FILTERS, UPDATE_REQUEST_AGGREGATION_TERM, UiDatavizModule, UiElementsModule, FacetsModule$1 as UiFacetsModule, UiInputsModule, UiLayoutModule, UiSearchModule, UiWidgetsModule, UpdateConfigAggregations, UpdateFilters, UrlInputComponent, UserFeedbackItemComponent, UserPreviewComponent, UserSearchField, UtilI18nModule, UtilSharedModule, VECTOR_STYLE_DEFAULT, ViewportIntersectorComponent, WEB_COMPONENT_EMBEDDER_URL, WizardComponent, WizardFieldComponent, WizardFieldType, WizardService, WizardSummarizeComponent, 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, getArrayItem, getAsArray, getAsUrl, getBadgeColor, getCustomTranslations, getError, getFavoritesOnly, getFileFormat, getFileFormatFromServiceOutput, getFirstValue, getFormatPriority, getGeometryFromGeoJSON, getGlobalConfig, getJsonDataItemsProxy, getLangFromBrowser, getLayers, getLinkLabel, getLinkPriority, getMapContext, getMapContextLayerFromConfig, getMapState, getMetadataQualityConfig, getMimeTypeForFormat, getNamespace, getOptionalMapConfig, getOptionalSearchConfig, getPageSize, getResourceType, getReuseType, getRootElement, getSearchConfigAggregations, getSearchFilters, getSearchResults, getSearchResultsAggregations, getSearchResultsHits, getSearchResultsLayout, getSearchResultsLoading, getSearchSortBy, getSearchState, getSearchStateSearch, getSelectedFeatures, getSpatialFilterEnabled, getTemporalRangeUnion, getThemeConfig, 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, parse, parseXmlString, placeholder, prioritizePageScroll, propagateToDocumentOnly, provideGn4, 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, setFieldVisibility, setSelectedFeatures, setTextContent, someHabTableItemFixture, sortByFromString, sortByToString, sortByToStrings, stripHtml, stripNamespace, tableItemsFixture, toDate, totalPages, undoRecordDraft, unrecognizedKeysConfigFixture, updateRecordField, wmsLayerFlatten, writeAttribute, wrongLanguageCodeConfigFixture, xmlToString };
|
|
43279
43776
|
//# sourceMappingURL=geonetwork-ui.mjs.map
|