geonetwork-ui 2.10.0-dev.f143bfdfa → 2.10.0-dev.f1c00d5fe

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 (142) hide show
  1. package/fesm2022/geonetwork-ui.mjs +1331 -6228
  2. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  3. package/index.d.ts +186 -170
  4. package/index.d.ts.map +1 -1
  5. package/package.json +23 -33
  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 +6 -5
  23. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +2 -2
  24. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  25. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -0
  26. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +13 -0
  27. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +45 -1
  28. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +13 -1
  29. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +40 -0
  30. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +47 -1
  31. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -4
  32. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +2 -2
  33. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +12 -8
  34. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -1
  35. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +1 -1
  36. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +11 -22
  37. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +12 -5
  38. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +2 -1
  39. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +2 -1
  40. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +57 -0
  41. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +5 -2
  42. package/src/libs/feature/editor/src/index.ts +1 -0
  43. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +4 -1
  44. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +26 -19
  45. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +5 -1
  46. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +0 -2
  47. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +7 -6
  48. package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +10 -8
  49. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +5 -14
  50. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +3 -28
  51. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +5 -5
  52. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +2 -1
  53. package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +4 -1
  54. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +7 -7
  55. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +1 -1
  56. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +12 -5
  57. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +4 -4
  58. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +7 -0
  59. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-topics/form-field-topics.component.ts +2 -2
  60. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +6 -2
  61. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +3 -1
  62. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -34
  63. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +27 -16
  64. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +11 -0
  65. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +35 -0
  66. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +18 -5
  67. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +76 -19
  68. package/src/libs/feature/editor/src/lib/expressions.ts +380 -8
  69. package/src/libs/feature/editor/src/lib/fields.config.ts +354 -337
  70. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +6 -3
  71. package/src/libs/feature/editor/src/lib/services/editor.service.ts +8 -12
  72. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +33 -0
  73. package/src/libs/feature/notify-reuse/src/index.ts +1 -0
  74. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.css +0 -0
  75. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.html +23 -0
  76. package/src/libs/feature/notify-reuse/src/lib/edit-delete-reuse-buttons/edit-delete-reuse-buttons.component.ts +114 -0
  77. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +111 -1
  78. package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +221 -8
  79. package/src/libs/feature/notify-reuse/src/lib/utils/url.ts +16 -0
  80. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +9 -1
  81. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +10 -5
  82. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +2 -2
  83. package/src/libs/ui/dataviz/src/index.ts +0 -1
  84. package/src/libs/ui/elements/src/index.ts +1 -0
  85. package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +48 -56
  86. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.html +2 -1
  87. package/src/libs/ui/elements/src/lib/external-link-card/external-link-card.component.ts +2 -2
  88. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +13 -0
  89. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +13 -3
  90. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +43 -6
  91. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.html +14 -0
  92. package/src/libs/ui/elements/src/lib/keyword-badge/keyword-badge.component.ts +85 -0
  93. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +2 -2
  94. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +5 -0
  95. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +4 -7
  96. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +2 -2
  97. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +4 -5
  98. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +4 -0
  99. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +33 -26
  100. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +9 -0
  101. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +2 -2
  102. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  103. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +3 -3
  104. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +0 -3
  105. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -7
  106. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +56 -30
  107. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +5 -5
  108. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +9 -1
  109. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -1
  110. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +3 -8
  111. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +7 -7
  112. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +14 -1
  113. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +4 -54
  114. package/src/libs/ui/map/src/lib/map-utils.ts +48 -0
  115. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +1 -1
  116. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +12 -8
  117. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +3 -1
  118. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +1 -0
  119. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +7 -1
  120. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +1 -1
  121. package/src/libs/util/app-config/src/lib/app-config.ts +21 -9
  122. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -2
  123. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +6 -3
  124. package/src/libs/util/i18n/src/index.ts +0 -1
  125. package/src/libs/util/i18n/src/lib/i18n.constants.ts +17 -11
  126. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +2 -2
  127. package/src/libs/util/i18n/src/lib/i18n.providers.ts +14 -17
  128. package/src/libs/util/i18n/src/lib/test.translate.loader.ts +48 -0
  129. package/src/libs/util/shared/src/lib/links/link-utils.ts +22 -0
  130. package/src/libs/util/shared/src/lib/services/date.service.ts +3 -3
  131. package/src/libs/util/shared/src/lib/utils/geojson.ts +58 -1
  132. package/style.css +0 -1
  133. package/tailwind.base.css +9 -0
  134. package/translations/de.json +102 -49
  135. package/translations/en.json +112 -59
  136. package/translations/es.json +76 -23
  137. package/translations/fr.json +109 -56
  138. package/translations/it.json +103 -50
  139. package/translations/nl.json +75 -22
  140. package/translations/pt.json +76 -23
  141. package/translations/sk.json +76 -23
  142. 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.