geonetwork-ui 2.5.0-dev.17046547b → 2.5.0-dev.1f2cf2cee

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 (63) hide show
  1. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +4 -8
  2. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +2 -2
  3. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +2 -2
  4. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -5
  5. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -3
  6. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +2 -2
  7. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +9 -12
  8. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +2 -2
  9. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +2 -2
  10. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +1 -1
  11. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +12 -3
  12. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +7 -8
  13. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +23 -3
  14. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +53 -7
  15. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +2 -2
  16. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +10 -3
  17. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +3 -3
  18. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +10 -3
  19. package/esm2022/translations/de.json +1 -1
  20. package/esm2022/translations/en.json +1 -1
  21. package/esm2022/translations/fr.json +1 -1
  22. package/esm2022/translations/it.json +1 -1
  23. package/fesm2022/geonetwork-ui.mjs +138 -60
  24. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  25. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  26. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +1 -0
  27. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  28. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +1 -0
  29. 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 -1
  30. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +4 -1
  31. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  32. package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts.map +1 -1
  33. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  34. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +8 -1
  35. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  36. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +5 -3
  37. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -1
  38. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +1 -1
  39. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -1
  40. package/package.json +1 -1
  41. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +3 -11
  42. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +90 -0
  43. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +3 -3
  44. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +1 -0
  45. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -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.html +1 -0
  47. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +10 -11
  48. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -0
  49. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +6 -0
  50. package/src/libs/ui/elements/src/lib/image-input/image-input.component.html +8 -8
  51. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +4 -6
  52. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +21 -9
  53. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +13 -0
  54. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +36 -19
  55. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +43 -2
  56. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +8 -1
  57. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +1 -1
  58. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +36 -11
  59. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +9 -1
  60. package/translations/de.json +1 -1
  61. package/translations/en.json +1 -1
  62. package/translations/fr.json +1 -1
  63. package/translations/it.json +1 -1

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.