geonetwork-ui 2.3.0-dev.b46332e6 → 2.3.0-dev.c22cb78a

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 (83) hide show
  1. package/esm2022/index.mjs +2 -1
  2. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  3. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +3 -3
  4. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +24 -10
  5. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -13
  6. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  7. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  8. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  9. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  10. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  11. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  12. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  13. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  14. package/esm2022/libs/ui/elements/src/index.mjs +2 -1
  15. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  16. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  17. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +3 -3
  18. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
  19. package/esm2022/translations/de.json +8 -0
  20. package/esm2022/translations/en.json +8 -0
  21. package/esm2022/translations/es.json +8 -0
  22. package/esm2022/translations/fr.json +8 -0
  23. package/esm2022/translations/it.json +8 -0
  24. package/esm2022/translations/nl.json +8 -0
  25. package/esm2022/translations/pt.json +8 -0
  26. package/fesm2022/geonetwork-ui.mjs +202 -33
  27. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  28. package/index.d.ts +1 -0
  29. package/index.d.ts.map +1 -1
  30. package/index.ts +1 -0
  31. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  32. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  33. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +4 -0
  34. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  35. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  36. package/libs/feature/notifications/src/index.d.ts +4 -0
  37. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  38. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  39. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  40. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  41. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  42. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  43. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  44. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  45. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  46. package/libs/ui/elements/src/index.d.ts +1 -0
  47. package/libs/ui/elements/src/index.d.ts.map +1 -1
  48. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  49. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  50. package/package.json +1 -1
  51. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  52. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css +0 -5
  53. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +1 -1
  54. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +24 -0
  55. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +19 -4
  56. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -21
  57. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  58. package/src/libs/feature/notifications/src/index.ts +3 -0
  59. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  60. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  61. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  62. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  63. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  64. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  65. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  66. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  67. package/src/libs/ui/elements/src/index.ts +1 -0
  68. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  69. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  70. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  71. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  72. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  73. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -5
  74. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
  75. package/tailwind.base.css +36 -0
  76. package/translations/de.json +8 -0
  77. package/translations/en.json +8 -0
  78. package/translations/es.json +8 -0
  79. package/translations/fr.json +8 -0
  80. package/translations/it.json +8 -0
  81. package/translations/nl.json +8 -0
  82. package/translations/pt.json +8 -0
  83. package/translations/sk.json +8 -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.