geonetwork-ui 2.2.0-dev.auto-publish-npm-package → 2.2.0-dev.f866474c

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 (80) hide show
  1. package/esm2022/libs/api/repository/src/index.mjs +2 -1
  2. package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +2 -2
  3. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +2 -2
  4. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +4 -15
  5. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +63 -0
  6. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +5 -2
  7. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +4 -3
  8. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +3 -3
  9. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +2 -2
  10. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +3 -3
  11. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +2 -2
  12. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +10 -3
  13. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +22 -3
  14. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +6 -3
  15. package/esm2022/libs/util/i18n/src/index.mjs +2 -1
  16. package/esm2022/libs/util/shared/src/lib/utils/fuzzy-filter.mjs +27 -0
  17. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +2 -1
  18. package/esm2022/translations/de.json +4 -0
  19. package/esm2022/translations/en.json +4 -0
  20. package/esm2022/translations/es.json +4 -0
  21. package/esm2022/translations/fr.json +4 -0
  22. package/esm2022/translations/it.json +4 -0
  23. package/esm2022/translations/nl.json +4 -0
  24. package/esm2022/translations/pt.json +4 -0
  25. package/fesm2022/geonetwork-ui.mjs +147 -23
  26. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  27. package/libs/api/repository/src/index.d.ts +1 -0
  28. package/libs/api/repository/src/index.d.ts.map +1 -1
  29. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +0 -1
  30. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  31. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +22 -0
  32. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -0
  33. package/libs/feature/map/src/lib/feature-map.module.d.ts +13 -12
  34. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  35. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +1 -1
  36. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  37. package/libs/feature/search/src/lib/state/effects.d.ts +1 -1
  38. package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -1
  39. package/libs/feature/search/src/lib/utils/service/fields.d.ts +1 -1
  40. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  41. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -0
  42. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
  43. package/libs/ui/inputs/src/lib/button/button.component.d.ts +2 -1
  44. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  45. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  46. package/libs/util/i18n/src/index.d.ts +1 -0
  47. package/libs/util/i18n/src/index.d.ts.map +1 -1
  48. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts +9 -0
  49. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts.map +1 -0
  50. package/libs/util/shared/src/lib/utils/index.d.ts +1 -0
  51. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  52. package/package.json +8 -6
  53. package/src/libs/api/repository/src/index.ts +1 -0
  54. package/src/libs/feature/auth/src/lib/feature-auth.module.ts +1 -1
  55. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +1 -1
  56. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +3 -17
  57. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.css +0 -0
  58. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +55 -0
  59. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +63 -0
  60. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -0
  61. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +3 -1
  62. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +1 -4
  63. package/src/libs/feature/search/src/lib/feature-search.module.ts +1 -1
  64. package/src/libs/feature/search/src/lib/state/effects.ts +1 -1
  65. package/src/libs/feature/search/src/lib/utils/service/fields.ts +1 -1
  66. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +93 -27
  67. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +7 -0
  68. package/src/libs/ui/inputs/src/lib/button/button.component.ts +26 -3
  69. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +7 -4
  70. package/src/libs/util/i18n/src/index.ts +1 -0
  71. package/src/libs/util/shared/src/lib/utils/fuzzy-filter.ts +32 -0
  72. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  73. package/translations/de.json +4 -0
  74. package/translations/en.json +4 -0
  75. package/translations/es.json +4 -0
  76. package/translations/fr.json +4 -0
  77. package/translations/it.json +4 -0
  78. package/translations/nl.json +4 -0
  79. package/translations/pt.json +4 -0
  80. 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.