geonetwork-ui 2.4.0-dev.a2f3bb9f → 2.4.0-dev.cd525aa1

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 (79) hide show
  1. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +57 -9
  2. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  3. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -2
  4. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +1 -1
  5. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +11 -3
  6. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +5 -3
  7. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +6 -2
  8. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +3 -1
  9. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +20 -40
  10. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +2 -2
  11. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +18 -10
  12. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +7 -7
  13. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +7 -4
  14. package/esm2022/libs/ui/widgets/src/lib/badge/badge.component.mjs +4 -3
  15. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +1 -6
  16. package/esm2022/translations/de.json +5 -1
  17. package/esm2022/translations/en.json +5 -1
  18. package/esm2022/translations/es.json +5 -1
  19. package/esm2022/translations/fr.json +5 -1
  20. package/esm2022/translations/it.json +5 -1
  21. package/esm2022/translations/nl.json +5 -1
  22. package/esm2022/translations/pt.json +5 -1
  23. package/fesm2022/geonetwork-ui.mjs +156 -77
  24. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  25. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +15 -3
  26. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  27. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +24 -1
  28. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  29. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +6 -6
  30. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  31. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +4 -0
  32. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  33. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  34. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  35. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +9 -8
  36. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  37. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +10 -0
  38. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  39. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +2 -0
  40. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  41. package/libs/feature/editor/src/lib/services/editor.service.d.ts +6 -9
  42. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  43. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  44. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts +4 -1
  45. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  46. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +2 -1
  47. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  48. package/libs/ui/widgets/src/lib/badge/badge.component.d.ts +2 -2
  49. package/libs/ui/widgets/src/lib/badge/badge.component.d.ts.map +1 -1
  50. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +10 -11
  51. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -1
  52. package/package.json +1 -1
  53. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +145 -7
  54. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +36 -3
  55. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +203 -0
  56. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +9 -9
  57. package/src/libs/data-access/gn4/src/spec.yaml +4 -5
  58. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +5 -1
  59. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +31 -3
  60. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -3
  61. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +22 -5
  62. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +10 -0
  63. package/src/libs/feature/editor/src/lib/services/editor.service.ts +17 -52
  64. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +1 -3
  65. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +12 -1
  66. package/src/libs/feature/search/src/lib/results-table/results-table.component.ts +9 -1
  67. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +2 -1
  68. package/src/libs/ui/widgets/src/lib/badge/badge.component.html +1 -1
  69. package/src/libs/ui/widgets/src/lib/badge/badge.component.ts +4 -1
  70. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -3
  71. package/tailwind.base.css +21 -1
  72. package/translations/de.json +5 -1
  73. package/translations/en.json +5 -1
  74. package/translations/es.json +5 -1
  75. package/translations/fr.json +5 -1
  76. package/translations/it.json +5 -1
  77. package/translations/nl.json +5 -1
  78. package/translations/pt.json +5 -1
  79. package/translations/sk.json +5 -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.