geonetwork-ui 2.10.0-dev.b6696be21 → 2.10.0-dev.c12b52b04

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 (73) hide show
  1. package/fesm2022/geonetwork-ui.mjs +350 -5749
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +89 -60
  4. package/index.d.ts.map +1 -1
  5. package/material-styles.css +483 -0
  6. package/package.json +23 -33
  7. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  8. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +5 -4
  9. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  10. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  11. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -4
  12. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  13. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  14. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  15. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +2 -2
  16. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +2 -0
  17. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  18. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  19. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  20. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  21. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  22. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +4 -1
  23. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +6 -7
  24. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  25. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  26. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
  27. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +10 -9
  28. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +7 -0
  29. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
  30. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +5 -1
  31. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +35 -19
  32. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  33. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  34. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  35. package/src/libs/ui/dataviz/src/index.ts +0 -1
  36. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
  37. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  38. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  39. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  40. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  41. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +17 -7
  42. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +29 -1
  43. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  44. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  45. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  46. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  47. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  48. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  49. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  50. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  51. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  52. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  53. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  54. package/src/libs/util/app-config/src/lib/app-config.ts +21 -9
  55. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  56. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  57. package/src/libs/util/i18n/src/index.ts +0 -1
  58. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  59. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  60. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  61. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  62. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  63. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  64. package/style.css +0 -1
  65. package/tailwind.base.css +2 -0
  66. package/translations/de.json +4 -0
  67. package/translations/en.json +4 -0
  68. package/translations/es.json +4 -0
  69. package/translations/fr.json +4 -0
  70. package/translations/it.json +4 -0
  71. package/translations/nl.json +4 -0
  72. package/translations/pt.json +4 -0
  73. package/translations/sk.json +4 -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.