geonetwork-ui 2.10.0-dev.7e58935b2 → 2.10.0-dev.8101478f2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/geonetwork-ui.mjs +1269 -6190
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +190 -168
- package/index.d.ts.map +1 -1
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -5
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +12 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +36 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -4
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +59 -37
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +37 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +13 -5
- package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +56 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +1 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +4 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +7 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +20 -16
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +9 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +76 -19
- package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
- package/src/libs/feature/editor/src/lib/fields.config.ts +310 -336
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +2 -3
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +9 -13
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +216 -8
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
- package/src/libs/ui/dataviz/src/index.ts +0 -1
- package/src/libs/ui/elements/src/index.ts +1 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +7 -3
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
- package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
- package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +5 -8
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
- package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
- package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
- package/src/libs/util/app-config/src/lib/app-config.ts +35 -10
- package/src/libs/util/app-config/src/lib/model.ts +3 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +27 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
- package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
- package/src/libs/util/i18n/src/index.ts +0 -1
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
- package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
- package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +23 -1
- package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
- package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
- package/style.css +0 -1
- package/tailwind.base.css +15 -0
- package/translations/de.json +90 -47
- package/translations/en.json +95 -52
- package/translations/es.json +64 -21
- package/translations/fr.json +92 -49
- package/translations/it.json +91 -48
- package/translations/nl.json +63 -20
- package/translations/pt.json +64 -21
- package/translations/sk.json +64 -21
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3
package/translations/sk.json
CHANGED
|
@@ -89,6 +89,10 @@
|
|
|
89
89
|
"domain.contact.role.stakeholder": "",
|
|
90
90
|
"domain.contact.role.unspecified": "",
|
|
91
91
|
"domain.contact.role.user": "",
|
|
92
|
+
"domain.record.keywordType.other": "Kľúčové slová",
|
|
93
|
+
"domain.record.keywordType.place": "Miesto",
|
|
94
|
+
"domain.record.keywordType.temporal": "Časový",
|
|
95
|
+
"domain.record.keywordType.theme": "Téma",
|
|
92
96
|
"domain.record.status.completed": "Dokončené",
|
|
93
97
|
"domain.record.status.deprecated": "Zastarané",
|
|
94
98
|
"domain.record.status.ongoing": "Prebiehajúce",
|
|
@@ -115,7 +119,28 @@
|
|
|
115
119
|
"domain.record.updateFrequency.week": "{count, plural, =0{0 krát} one{Raz} other{{count} krát}} za týždeň",
|
|
116
120
|
"domain.record.updateFrequency.weekly": "Údaje sa aktualizujú týždenne",
|
|
117
121
|
"domain.record.updateFrequency.year": "{count, plural, =0{0 krát} one{Raz} other{{count} krát}} za rok",
|
|
122
|
+
"downloads.format.csv": "",
|
|
123
|
+
"downloads.format.dxf": "",
|
|
124
|
+
"downloads.format.excel": "",
|
|
125
|
+
"downloads.format.fgb": "",
|
|
126
|
+
"downloads.format.geojson": "",
|
|
127
|
+
"downloads.format.gml": "",
|
|
128
|
+
"downloads.format.gpkg": "",
|
|
129
|
+
"downloads.format.html": "",
|
|
130
|
+
"downloads.format.jpg": "",
|
|
131
|
+
"downloads.format.json": "",
|
|
132
|
+
"downloads.format.jsonfg": "",
|
|
133
|
+
"downloads.format.kml": "",
|
|
134
|
+
"downloads.format.pdf": "",
|
|
135
|
+
"downloads.format.png": "",
|
|
136
|
+
"downloads.format.postgis": "",
|
|
137
|
+
"downloads.format.shp": "",
|
|
138
|
+
"downloads.format.svg": "",
|
|
139
|
+
"downloads.format.tiff": "",
|
|
118
140
|
"downloads.format.unknown": "neznámy",
|
|
141
|
+
"downloads.format.webp": "",
|
|
142
|
+
"downloads.format.xml": "",
|
|
143
|
+
"downloads.format.zip": "",
|
|
119
144
|
"downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
|
|
120
145
|
"dropFile": "nahrať súbor",
|
|
121
146
|
"editor.new.record.title": "",
|
|
@@ -243,27 +268,27 @@
|
|
|
243
268
|
"editor.record.form.temporalExtents.addRange": "",
|
|
244
269
|
"editor.record.form.temporalExtents.date": "",
|
|
245
270
|
"editor.record.form.temporalExtents.range": "",
|
|
246
|
-
"editor.record.form.topics.
|
|
247
|
-
"editor.record.form.topics.
|
|
248
|
-
"editor.record.form.topics.
|
|
249
|
-
"editor.record.form.topics.
|
|
250
|
-
"editor.record.form.topics.
|
|
251
|
-
"editor.record.form.topics.
|
|
252
|
-
"editor.record.form.topics.
|
|
253
|
-
"editor.record.form.topics.
|
|
254
|
-
"editor.record.form.topics.
|
|
255
|
-
"editor.record.form.topics.
|
|
256
|
-
"editor.record.form.topics.
|
|
257
|
-
"editor.record.form.topics.
|
|
258
|
-
"editor.record.form.topics.
|
|
259
|
-
"editor.record.form.topics.
|
|
260
|
-
"editor.record.form.topics.
|
|
261
|
-
"editor.record.form.topics.
|
|
262
|
-
"editor.record.form.topics.
|
|
263
|
-
"editor.record.form.topics.
|
|
264
|
-
"editor.record.form.topics.
|
|
271
|
+
"editor.record.form.topics.iso.biota": "",
|
|
272
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
273
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
274
|
+
"editor.record.form.topics.iso.economy": "",
|
|
275
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
276
|
+
"editor.record.form.topics.iso.environment": "",
|
|
277
|
+
"editor.record.form.topics.iso.farming": "",
|
|
278
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
279
|
+
"editor.record.form.topics.iso.health": "",
|
|
280
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
281
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
282
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
283
|
+
"editor.record.form.topics.iso.location": "",
|
|
284
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
285
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
286
|
+
"editor.record.form.topics.iso.society": "",
|
|
287
|
+
"editor.record.form.topics.iso.structure": "",
|
|
288
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
289
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
265
290
|
"editor.record.form.topics.placeholder": "",
|
|
266
|
-
"editor.record.form.updateFrequency.planned": "Táto
|
|
291
|
+
"editor.record.form.updateFrequency.planned": "{recordKind, select, dataset{Táto dátová sada} service{Táto služba} reuse{Toto opätovné použitie} other{Tento záznam}} sa pravidelne aktualizuje",
|
|
267
292
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
268
293
|
"editor.record.importFromExternalFile.failure.title": "",
|
|
269
294
|
"editor.record.importFromExternalFile.success.body": "",
|
|
@@ -273,7 +298,6 @@
|
|
|
273
298
|
"editor.record.loadError.title": "",
|
|
274
299
|
"editor.record.lock.harvested": "",
|
|
275
300
|
"editor.record.lock.owner": "",
|
|
276
|
-
"editor.record.lock.resourceType": "",
|
|
277
301
|
"editor.record.multilingual.confirmation.cancelText": "",
|
|
278
302
|
"editor.record.multilingual.confirmation.confirmText": "",
|
|
279
303
|
"editor.record.multilingual.confirmation.message": "",
|
|
@@ -398,6 +422,18 @@
|
|
|
398
422
|
"multiselect.filter.placeholder": "Hľadať",
|
|
399
423
|
"nav.back": "Späť",
|
|
400
424
|
"navbar.mobile.menuTitle": "",
|
|
425
|
+
"notify.reuse.form.error.body": "",
|
|
426
|
+
"notify.reuse.form.error.title": "",
|
|
427
|
+
"notify.reuse.form.field.email": "E-mail",
|
|
428
|
+
"notify.reuse.form.field.email.placeholder": "e-mailová adresa kontaktu",
|
|
429
|
+
"notify.reuse.form.field.title": "Názov",
|
|
430
|
+
"notify.reuse.form.field.title.placeholder": "Názov opätovného použitia",
|
|
431
|
+
"notify.reuse.form.field.url": "URL opätovného použitia",
|
|
432
|
+
"notify.reuse.form.field.url.placeholder": "https://www.priklad",
|
|
433
|
+
"notify.reuse.form.required.hint": "* : Povinné polia pre vytvorenie opätovného použitia",
|
|
434
|
+
"notify.reuse.form.submit": "Nahlásiť opätovné použitie",
|
|
435
|
+
"notify.reuse.form.title": "Nahlásiť opätovné použitie",
|
|
436
|
+
"notify.reuse.link.description": "Zdroj opätovného použitia vytvorený cez Datahub",
|
|
401
437
|
"ogc.geojson.notsupported": "",
|
|
402
438
|
"ogc.unreachable.unknown": "So službou sa nedalo spojiť",
|
|
403
439
|
"organisation.filter.placeholder": "Filtrovať výsledky",
|
|
@@ -430,6 +466,7 @@
|
|
|
430
466
|
"record.kind.reuse": "",
|
|
431
467
|
"record.kind.service": "",
|
|
432
468
|
"record.metadata.about": "O",
|
|
469
|
+
"record.metadata.abstract.empty": "",
|
|
433
470
|
"record.metadata.api": "API",
|
|
434
471
|
"record.metadata.api.accessServiceProtocol.GPFDL": "",
|
|
435
472
|
"record.metadata.api.accessServiceProtocol.esriRest": "",
|
|
@@ -558,6 +595,12 @@
|
|
|
558
595
|
"record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
|
|
559
596
|
"record.metadata.userFeedbacks.sortSelector.label": "",
|
|
560
597
|
"record.more.details": "Čítať viac",
|
|
598
|
+
"record.reuse.delete.confirmation.cancelText": "",
|
|
599
|
+
"record.reuse.delete.confirmation.confirmText": "",
|
|
600
|
+
"record.reuse.delete.confirmation.message": "",
|
|
601
|
+
"record.reuse.delete.confirmation.title": "",
|
|
602
|
+
"record.reuse.deleteError.body": "",
|
|
603
|
+
"record.reuse.deleteError.title": "",
|
|
561
604
|
"record.tab.chart": "Graf",
|
|
562
605
|
"record.tab.data": "Tabuľka",
|
|
563
606
|
"record.tab.map": "Mapa",
|