geonetwork-ui 2.5.0-dev.d91908296 → 2.5.0-dev.e41adefdb

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 (150) hide show
  1. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +50 -32
  2. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +2 -2
  3. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +18 -16
  4. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +17 -7
  5. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +12 -17
  6. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +3 -3
  7. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +2 -1
  8. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +2 -2
  9. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +11 -11
  10. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +2 -2
  11. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +3 -3
  12. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +6 -7
  13. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +46 -1
  14. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +3 -2
  15. package/esm2022/libs/ui/dataviz/src/index.mjs +3 -3
  16. package/esm2022/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.mjs +51 -0
  17. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +133 -0
  18. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.data.source.mjs +24 -0
  19. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.mjs +82 -0
  20. package/esm2022/libs/ui/elements/src/index.mjs +2 -1
  21. package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +78 -0
  22. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +18 -10
  23. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +2 -1
  24. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +10 -4
  25. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +7 -2
  26. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +14 -12
  27. package/esm2022/libs/util/data-fetcher/src/index.mjs +3 -1
  28. package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +7 -3
  29. package/esm2022/libs/util/data-fetcher/src/lib/readers/wfs.mjs +20 -2
  30. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +3 -3
  31. package/esm2022/libs/util/shared/src/lib/services/date.service.mjs +41 -0
  32. package/esm2022/libs/util/shared/src/lib/services/index.mjs +2 -1
  33. package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +4 -4
  34. package/esm2022/translations/de.json +9 -3
  35. package/esm2022/translations/en.json +9 -3
  36. package/esm2022/translations/es.json +9 -3
  37. package/esm2022/translations/fr.json +11 -5
  38. package/esm2022/translations/it.json +9 -3
  39. package/esm2022/translations/nl.json +9 -3
  40. package/esm2022/translations/pt.json +9 -3
  41. package/fesm2022/geonetwork-ui.mjs +867 -432
  42. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  43. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +3 -1
  44. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  45. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  46. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +7 -9
  47. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  48. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  49. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -6
  50. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  51. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  52. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  53. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +3 -3
  54. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +1 -1
  55. package/libs/feature/record/src/lib/feature-record.module.d.ts +2 -2
  56. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  57. package/libs/feature/search/src/lib/utils/service/fields.d.ts +10 -0
  58. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  59. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  60. package/libs/ui/dataviz/src/index.d.ts +2 -2
  61. package/libs/ui/dataviz/src/index.d.ts.map +1 -1
  62. package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts +14 -0
  63. package/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.d.ts.map +1 -0
  64. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +45 -0
  65. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -0
  66. package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts +12 -0
  67. package/libs/ui/dataviz/src/lib/data-table/data-table.data.source.d.ts.map +1 -0
  68. package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts +10 -0
  69. package/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.d.ts.map +1 -0
  70. package/libs/ui/elements/src/index.d.ts +1 -0
  71. package/libs/ui/elements/src/index.d.ts.map +1 -1
  72. package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts +16 -0
  73. package/libs/ui/elements/src/lib/application-banner/application-banner.component.d.ts.map +1 -0
  74. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +5 -0
  75. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  76. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  77. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +2 -1
  78. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  79. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  80. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +3 -2
  81. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  82. package/libs/util/data-fetcher/src/index.d.ts +3 -1
  83. package/libs/util/data-fetcher/src/index.d.ts.map +1 -1
  84. package/libs/util/data-fetcher/src/lib/model.d.ts +1 -1
  85. package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -1
  86. package/libs/util/data-fetcher/src/lib/readers/wfs.d.ts.map +1 -1
  87. package/libs/util/shared/src/lib/services/date.service.d.ts +13 -0
  88. package/libs/util/shared/src/lib/services/date.service.d.ts.map +1 -0
  89. package/libs/util/shared/src/lib/services/index.d.ts +1 -0
  90. package/libs/util/shared/src/lib/services/index.d.ts.map +1 -1
  91. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +2 -1
  92. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +1 -1
  93. package/package.json +1 -1
  94. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +55 -32
  95. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +1 -5
  96. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +3 -3
  97. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +17 -15
  98. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +21 -11
  99. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +4 -3
  100. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +9 -18
  101. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +1 -1
  102. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +1 -0
  103. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +1 -1
  104. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +3 -4
  105. package/src/libs/feature/editor/src/lib/fields.config.ts +1 -1
  106. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +1 -1
  107. package/src/libs/feature/record/src/lib/feature-record.module.ts +6 -4
  108. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +2 -0
  109. package/src/libs/feature/search/src/lib/utils/service/fields.ts +55 -0
  110. package/src/libs/ui/dataviz/src/index.ts +2 -2
  111. package/src/libs/ui/dataviz/src/lib/data-table/custom.mat.paginator.intl.ts +52 -0
  112. package/src/libs/ui/dataviz/src/lib/{table/table.component.css → data-table/data-table.component.css} +4 -0
  113. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +67 -0
  114. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +173 -0
  115. package/src/libs/ui/dataviz/src/lib/data-table/data-table.data.source.ts +33 -0
  116. package/src/libs/ui/dataviz/src/lib/data-table/data-table.fixtures.ts +84 -0
  117. package/src/libs/ui/elements/src/index.ts +1 -0
  118. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.css +0 -0
  119. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +25 -0
  120. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +70 -0
  121. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +3 -3
  122. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +12 -2
  123. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +2 -0
  124. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +3 -0
  125. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -0
  126. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +4 -2
  127. package/src/libs/util/data-fetcher/src/index.ts +3 -0
  128. package/src/libs/util/data-fetcher/src/lib/model.ts +6 -2
  129. package/src/libs/util/data-fetcher/src/lib/readers/wfs.ts +23 -1
  130. package/src/libs/util/data-fetcher/src/lib/utils.ts +2 -2
  131. package/src/libs/util/shared/src/lib/services/date.service.ts +45 -0
  132. package/src/libs/util/shared/src/lib/services/index.ts +1 -0
  133. package/src/libs/util/shared/src/lib/utils/temporal-extent-union.ts +6 -3
  134. package/translations/de.json +9 -3
  135. package/translations/en.json +9 -3
  136. package/translations/es.json +9 -3
  137. package/translations/fr.json +11 -5
  138. package/translations/it.json +9 -3
  139. package/translations/nl.json +9 -3
  140. package/translations/pt.json +9 -3
  141. package/translations/sk.json +9 -3
  142. package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +0 -61
  143. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +0 -40
  144. package/libs/ui/dataviz/src/lib/table/table.component.d.ts +0 -29
  145. package/libs/ui/dataviz/src/lib/table/table.component.d.ts.map +0 -1
  146. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +0 -11
  147. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +0 -1
  148. package/src/libs/ui/dataviz/src/lib/table/table.component.html +0 -40
  149. package/src/libs/ui/dataviz/src/lib/table/table.component.ts +0 -80
  150. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +0 -40

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.