geonetwork-ui 2.10.0-dev.b5836aad7 → 2.10.0-dev.cbf02ead8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1069 -911
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +67 -27
  4. package/index.d.ts.map +1 -1
  5. package/package.json +2 -2
  6. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +14 -2
  7. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -1
  8. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -0
  9. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +0 -1
  10. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +10 -1
  11. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
  12. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
  13. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +34 -34
  14. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +8 -15
  15. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +6 -4
  16. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
  17. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
  18. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
  19. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
  20. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
  21. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +3 -0
  22. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +1 -0
  23. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +57 -3
  24. package/src/libs/feature/notify-reuse/src/index.ts +1 -0
  25. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
  26. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
  27. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
  28. package/src/libs/ui/elements/src/index.ts +1 -0
  29. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +16 -0
  30. package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +26 -0
  31. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -1
  32. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +0 -1
  33. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
  34. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +27 -66
  35. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
  36. package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
  37. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
  38. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +11 -10
  39. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +0 -1
  40. package/src/libs/util/app-config/src/lib/app-config.ts +36 -0
  41. package/src/libs/util/app-config/src/lib/model.ts +4 -0
  42. package/src/libs/util/app-config/src/lib/parse-utils.ts +23 -1
  43. package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
  44. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  45. package/src/libs/util/shared/src/lib/utils/user-display.ts +23 -0
  46. package/tailwind.base.css +11 -2
  47. package/translations/de.json +2 -0
  48. package/translations/en.json +2 -0
  49. package/translations/es.json +2 -0
  50. package/translations/fr.json +2 -0
  51. package/translations/it.json +2 -0
  52. package/translations/nl.json +2 -0
  53. package/translations/pt.json +2 -0
  54. package/translations/sk.json +2 -0
@@ -159,6 +159,7 @@
159
159
  "editor.record.form.field.legalConstraints": "",
160
160
  "editor.record.form.field.license": "Licencia",
161
161
  "editor.record.form.field.onlineLinkResources": "",
162
+ "editor.record.form.field.onlineLinkageResource.defaultName": "",
162
163
  "editor.record.form.field.onlineResource.cancel": "",
163
164
  "editor.record.form.field.onlineResource.confirm": "",
164
165
  "editor.record.form.field.onlineResource.dialogTitle": "",
@@ -520,6 +521,7 @@
520
521
  "record.metadata.quality.updateFrequency.failed": "Frekvencia aktualizácie nie je určená",
521
522
  "record.metadata.quality.updateFrequency.success": "Frekvencia aktualizácie je určená",
522
523
  "record.metadata.related": "Súvisiace záznamy",
524
+ "record.metadata.resource.contacts": "Kontakty k zdroju",
523
525
  "record.metadata.resourceCreated": "",
524
526
  "record.metadata.resourcePublished": "",
525
527
  "record.metadata.resourceUpdated": "",