geonetwork-ui 2.10.0-dev.fb2893f44 → 2.10.0

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 (109) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1017 -468
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +112 -111
  4. package/index.d.ts.map +1 -1
  5. package/package.json +1 -1
  6. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +11 -0
  7. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
  8. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +22 -0
  9. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +1 -0
  10. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
  11. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
  12. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
  13. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
  14. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
  15. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +22 -0
  16. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
  17. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
  18. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
  19. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +1 -0
  20. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +48 -7
  21. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
  22. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +4 -3
  23. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  24. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -0
  25. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +13 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +45 -1
  27. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +13 -1
  28. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +40 -0
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +47 -1
  30. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +12 -8
  31. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +9 -20
  32. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -0
  33. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  34. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
  35. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +57 -0
  36. package/src/libs/feature/editor/src/index.ts +1 -0
  37. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  38. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  39. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  40. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +7 -6
  41. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +10 -8
  42. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
  43. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
  44. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  45. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  46. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +1 -0
  47. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  48. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  49. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  50. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  51. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  52. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  53. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +27 -16
  54. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +11 -0
  55. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +14 -5
  56. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +41 -0
  57. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  58. package/src/libs/feature/editor/src/lib/fields.config.ts +295 -291
  59. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
  60. package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -12
  61. package/src/libs/feature/notify-reuse/src/index.ts +1 -0
  62. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
  63. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
  64. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
  65. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
  66. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +219 -8
  67. package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
  68. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  69. package/src/libs/ui/elements/src/index.ts +1 -0
  70. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
  71. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
  72. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
  73. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
  74. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
  75. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
  76. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +4 -7
  77. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
  78. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  79. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  80. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
  81. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
  82. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  83. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  84. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
  85. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
  86. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
  87. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  88. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  89. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  90. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  91. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  92. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  93. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  94. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  95. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  96. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  97. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
  98. package/src/libs/util/shared/src/lib/links/link-utils.ts +22 -0
  99. package/tailwind.base.css +9 -2
  100. package/translations/de.json +84 -31
  101. package/translations/en.json +94 -41
  102. package/translations/es.json +58 -5
  103. package/translations/fr.json +91 -38
  104. package/translations/it.json +85 -32
  105. package/translations/nl.json +57 -4
  106. package/translations/pt.json +58 -5
  107. package/translations/sk.json +58 -5
  108. package/material-styles.css +0 -483
  109. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -3

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.