geonetwork-ui 2.10.0-dev.cf0577fae → 2.10.0-dev.d26e9afe1
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 +1035 -6108
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +147 -154
- package/index.d.ts.map +1 -1
- package/material-styles.css +483 -0
- package/package.json +25 -35
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
- 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/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 +49 -35
- 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 +48 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -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 +51 -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/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 +6 -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 +8 -12
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
- 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/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/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/markdown-parser/markdown-parser.component.ts +2 -2
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +18 -8
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +29 -1
- 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/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/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/util/app-config/src/lib/app-config.ts +21 -9
- 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 +1 -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 +8 -0
- package/translations/de.json +50 -47
- package/translations/en.json +55 -52
- package/translations/es.json +24 -21
- package/translations/fr.json +50 -47
- package/translations/it.json +50 -47
- package/translations/nl.json +23 -20
- package/translations/pt.json +24 -21
- package/translations/sk.json +24 -21
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",
|
|
@@ -243,27 +247,27 @@
|
|
|
243
247
|
"editor.record.form.temporalExtents.addRange": "",
|
|
244
248
|
"editor.record.form.temporalExtents.date": "",
|
|
245
249
|
"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.
|
|
250
|
+
"editor.record.form.topics.iso.biota": "",
|
|
251
|
+
"editor.record.form.topics.iso.boundaries": "",
|
|
252
|
+
"editor.record.form.topics.iso.climatologyMeteorologyAtmosphere": "",
|
|
253
|
+
"editor.record.form.topics.iso.economy": "",
|
|
254
|
+
"editor.record.form.topics.iso.elevation": "",
|
|
255
|
+
"editor.record.form.topics.iso.environment": "",
|
|
256
|
+
"editor.record.form.topics.iso.farming": "",
|
|
257
|
+
"editor.record.form.topics.iso.geoscientificInformation": "",
|
|
258
|
+
"editor.record.form.topics.iso.health": "",
|
|
259
|
+
"editor.record.form.topics.iso.imageryBaseMapsEarthCover": "",
|
|
260
|
+
"editor.record.form.topics.iso.inlandWaters": "",
|
|
261
|
+
"editor.record.form.topics.iso.intelligenceMilitary": "",
|
|
262
|
+
"editor.record.form.topics.iso.location": "",
|
|
263
|
+
"editor.record.form.topics.iso.oceans": "",
|
|
264
|
+
"editor.record.form.topics.iso.planningCadastre": "",
|
|
265
|
+
"editor.record.form.topics.iso.society": "",
|
|
266
|
+
"editor.record.form.topics.iso.structure": "",
|
|
267
|
+
"editor.record.form.topics.iso.transportation": "",
|
|
268
|
+
"editor.record.form.topics.iso.utilitiesCommunication": "",
|
|
265
269
|
"editor.record.form.topics.placeholder": "",
|
|
266
|
-
"editor.record.form.updateFrequency.planned": "Táto
|
|
270
|
+
"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
271
|
"editor.record.importFromExternalFile.failure.body": "",
|
|
268
272
|
"editor.record.importFromExternalFile.failure.title": "",
|
|
269
273
|
"editor.record.importFromExternalFile.success.body": "",
|
|
@@ -273,7 +277,6 @@
|
|
|
273
277
|
"editor.record.loadError.title": "",
|
|
274
278
|
"editor.record.lock.harvested": "",
|
|
275
279
|
"editor.record.lock.owner": "",
|
|
276
|
-
"editor.record.lock.resourceType": "",
|
|
277
280
|
"editor.record.multilingual.confirmation.cancelText": "",
|
|
278
281
|
"editor.record.multilingual.confirmation.confirmText": "",
|
|
279
282
|
"editor.record.multilingual.confirmation.message": "",
|