geonetwork-ui 2.4.0-dev.d5b28b1e → 2.4.0-dev.dd042cec

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