geonetwork-ui 2.4.0-dev.ac57b75b → 2.4.0-dev.b0bcda82

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 (80) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +5 -3
  2. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  3. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +29 -0
  4. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +17 -24
  5. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +170 -0
  6. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +3 -3
  7. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +47 -0
  8. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +17 -3
  9. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -4
  10. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +19 -2
  11. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  12. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +6 -1
  13. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +2 -1
  14. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
  15. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +5 -11
  16. package/esm2022/translations/de.json +25 -0
  17. package/esm2022/translations/en.json +25 -0
  18. package/esm2022/translations/es.json +25 -0
  19. package/esm2022/translations/fr.json +26 -1
  20. package/esm2022/translations/it.json +25 -0
  21. package/esm2022/translations/nl.json +25 -0
  22. package/esm2022/translations/pt.json +25 -0
  23. package/fesm2022/geonetwork-ui.mjs +546 -49
  24. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  25. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  26. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  27. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +12 -0
  28. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  29. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +1 -1
  30. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -1
  31. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +47 -0
  32. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  33. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +17 -0
  34. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  35. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +4 -0
  36. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  37. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  38. package/libs/feature/editor/src/lib/fields.config.d.ts +6 -0
  39. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  40. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  41. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +1 -2
  42. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  43. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  44. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  45. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +2 -4
  46. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  47. package/package.json +1 -1
  48. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +5 -5
  49. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  50. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.css +0 -0
  51. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +25 -0
  52. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
  53. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -1
  54. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +18 -23
  55. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -0
  56. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +76 -0
  57. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +271 -0
  58. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +1 -1
  59. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  60. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +59 -0
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +12 -1
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +17 -0
  64. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +1 -1
  65. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +0 -1
  66. package/src/libs/feature/editor/src/lib/fields.config.ts +20 -1
  67. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  68. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +12 -0
  69. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +2 -2
  70. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
  71. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +1 -1
  72. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +2 -7
  73. package/translations/de.json +25 -0
  74. package/translations/en.json +25 -0
  75. package/translations/es.json +25 -0
  76. package/translations/fr.json +26 -1
  77. package/translations/it.json +25 -0
  78. package/translations/nl.json +25 -0
  79. package/translations/pt.json +25 -0
  80. package/translations/sk.json +25 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.