geonetwork-ui 2.3.0-dev.c3722986 → 2.3.0-dev.cc25794c

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 (418) hide show
  1. package/esm2022/index.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +6 -2
  3. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +2 -2
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +2 -2
  5. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
  6. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
  7. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
  8. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +21 -7
  9. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  10. package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
  11. package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
  12. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  13. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  14. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +35 -2
  15. package/esm2022/libs/feature/editor/src/index.mjs +2 -2
  16. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  17. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
  18. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +64 -0
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +15 -0
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +104 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +126 -0
  28. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  29. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  30. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
  31. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  32. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  33. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +23 -1
  34. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  35. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  36. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +73 -20
  37. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  38. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  39. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +1 -1
  40. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +58 -17
  41. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +6 -2
  42. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  43. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  44. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  45. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  46. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  47. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  48. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
  49. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +7 -4
  50. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
  51. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
  52. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
  53. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +50 -17
  54. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
  55. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  56. package/esm2022/libs/feature/search/src/index.mjs +2 -1
  57. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +1 -1
  58. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  59. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +1 -1
  60. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +1 -1
  61. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +1 -1
  62. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  63. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +1 -1
  64. package/esm2022/libs/ui/elements/src/index.mjs +15 -15
  65. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -2
  66. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +2 -2
  67. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  68. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +16 -3
  69. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  70. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  71. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +98 -36
  72. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +10 -7
  73. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
  74. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +60 -0
  75. package/esm2022/libs/ui/inputs/src/index.mjs +16 -16
  76. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +4 -3
  77. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +22 -0
  78. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +7 -5
  79. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +19 -8
  80. package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +29 -0
  81. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
  82. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +21 -3
  83. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +14 -30
  84. package/esm2022/libs/ui/layout/src/index.mjs +7 -5
  85. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +76 -0
  86. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +42 -18
  87. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  88. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +3 -8
  89. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +3 -1
  90. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
  91. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  92. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +2 -2
  93. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +22 -1
  94. package/esm2022/translations/de.json +31 -0
  95. package/esm2022/translations/en.json +31 -0
  96. package/esm2022/translations/es.json +31 -0
  97. package/esm2022/translations/fr.json +31 -0
  98. package/esm2022/translations/it.json +31 -0
  99. package/esm2022/translations/nl.json +31 -0
  100. package/esm2022/translations/pt.json +31 -0
  101. package/fesm2022/geonetwork-ui.mjs +3099 -1806
  102. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  103. package/index.d.ts +1 -0
  104. package/index.d.ts.map +1 -1
  105. package/index.ts +1 -0
  106. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  107. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  108. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
  109. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  110. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
  111. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  112. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
  113. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  114. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
  115. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  116. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  117. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  118. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
  119. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
  120. package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
  121. package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
  122. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
  123. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  124. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
  125. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  126. package/libs/feature/editor/src/index.d.ts +1 -1
  127. package/libs/feature/editor/src/index.d.ts.map +1 -1
  128. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  129. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  130. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.d.ts +1 -1
  131. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  132. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.d.ts +1 -1
  133. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  134. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +39 -0
  135. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -0
  136. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.d.ts +1 -1
  137. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  138. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +8 -0
  139. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -0
  140. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  141. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  142. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.d.ts +2 -2
  143. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  144. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +1 -1
  145. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
  146. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +1 -1
  147. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
  148. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +21 -0
  149. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -0
  150. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +13 -4
  151. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  152. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  153. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  154. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  155. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  156. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  157. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  158. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  159. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  160. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +10 -5
  161. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  162. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +7 -0
  163. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  164. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +1 -1
  165. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  166. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  167. package/libs/feature/notifications/src/index.d.ts +4 -0
  168. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  169. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  170. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  171. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  172. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  173. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  174. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  175. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  176. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  177. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  178. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  179. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
  180. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  181. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
  182. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  183. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
  184. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  185. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
  186. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  187. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
  188. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  189. package/libs/feature/search/src/index.d.ts +1 -0
  190. package/libs/feature/search/src/index.d.ts.map +1 -1
  191. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +3 -3
  192. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  193. package/libs/ui/elements/src/index.d.ts +14 -14
  194. package/libs/ui/elements/src/index.d.ts.map +1 -1
  195. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  196. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  197. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +3 -1
  198. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  199. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  200. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  201. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  202. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  203. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +24 -4
  204. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  205. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +16 -15
  206. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  207. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
  208. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
  209. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +21 -0
  210. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
  211. package/libs/ui/inputs/src/index.d.ts +15 -15
  212. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  213. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +1 -1
  214. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
  215. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +9 -0
  216. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -0
  217. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +1 -1
  218. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  219. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +2 -1
  220. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
  221. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +12 -0
  222. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
  223. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
  224. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  225. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +5 -1
  226. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  227. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +35 -43
  228. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  229. package/libs/ui/layout/src/index.d.ts +6 -4
  230. package/libs/ui/layout/src/index.d.ts.map +1 -1
  231. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +25 -0
  232. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -0
  233. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +13 -6
  234. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
  235. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  236. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  237. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +4 -5
  238. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  239. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  240. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  241. package/libs/util/app-config/src/lib/model.d.ts +1 -0
  242. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  243. package/libs/util/shared/src/lib/links/link-utils.d.ts +18 -0
  244. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  245. package/package.json +2 -2
  246. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
  247. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +1 -1
  248. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +1 -4
  249. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
  250. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
  251. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
  252. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +40 -7
  253. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  254. package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
  255. package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
  256. package/src/libs/common/fixtures/src/index.ts +8 -6
  257. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +8 -0
  258. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +3 -3
  259. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
  260. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +51 -1
  261. package/src/libs/feature/editor/src/index.ts +1 -1
  262. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  263. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.ts +1 -0
  264. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.ts +4 -1
  265. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +8 -0
  266. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +64 -0
  267. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.ts +1 -0
  268. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +4 -0
  269. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +15 -0
  270. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  271. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  272. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.ts +4 -1
  273. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +1 -0
  274. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +1 -0
  275. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +0 -0
  276. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +14 -0
  277. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +143 -0
  278. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -0
  279. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +97 -0
  280. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +142 -0
  281. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
  282. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  283. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
  284. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  285. package/src/libs/feature/editor/src/lib/fields.config.ts +22 -0
  286. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  287. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  288. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +7 -0
  289. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +32 -18
  290. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +72 -17
  291. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +7 -0
  292. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +57 -17
  293. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +5 -1
  294. package/src/libs/feature/notifications/src/index.ts +3 -0
  295. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  296. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  297. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  298. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  299. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  300. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  301. package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
  302. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +6 -5
  303. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
  304. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
  305. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +48 -8
  306. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +79 -24
  307. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
  308. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  309. package/src/libs/feature/search/src/index.ts +1 -0
  310. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  311. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +2 -2
  312. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  313. package/src/libs/ui/elements/src/index.ts +14 -14
  314. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +2 -1
  315. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
  316. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  317. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +38 -20
  318. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
  319. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  320. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  321. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  322. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  323. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  324. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  325. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +27 -11
  326. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +125 -30
  327. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +5 -2
  328. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
  329. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
  330. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
  331. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +62 -0
  332. package/src/libs/ui/inputs/src/index.ts +15 -15
  333. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -0
  334. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +3 -0
  335. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +11 -0
  336. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +16 -0
  337. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +8 -1
  338. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -0
  339. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +14 -0
  340. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.css +6 -0
  341. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +26 -0
  342. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +32 -0
  343. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  344. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
  345. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +2 -1
  346. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +17 -1
  347. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +3 -22
  348. package/src/libs/ui/layout/src/index.ts +6 -4
  349. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +23 -0
  350. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +20 -0
  351. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +84 -0
  352. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +8 -4
  353. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -4
  354. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +45 -15
  355. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
  356. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  357. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  358. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -2
  359. package/src/libs/util/app-config/src/lib/app-config.ts +2 -0
  360. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  361. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  362. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +1 -1
  363. package/src/libs/util/shared/src/lib/links/link-utils.ts +21 -0
  364. package/tailwind.base.css +36 -0
  365. package/translations/de.json +31 -0
  366. package/translations/en.json +31 -0
  367. package/translations/es.json +31 -0
  368. package/translations/fr.json +31 -0
  369. package/translations/it.json +31 -0
  370. package/translations/nl.json +31 -0
  371. package/translations/pt.json +31 -0
  372. package/translations/sk.json +31 -0
  373. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  374. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  375. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  376. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  377. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  378. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  379. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  380. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  381. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  382. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  383. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  384. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  385. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  386. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  387. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  388. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  389. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  390. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  391. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  392. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  393. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  394. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  395. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  396. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  397. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  398. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +0 -68
  399. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
  400. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  401. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  402. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.css +0 -0
  403. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.html +0 -0
  404. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.css +0 -0
  405. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.html +0 -0
  406. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/record-form/form-field/form-field-license/form-field-license.component.css} +0 -0
  407. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.css +0 -0
  408. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.html +0 -0
  409. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css} +0 -0
  410. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css} +0 -0
  411. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.css} +0 -0
  412. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.html +0 -0
  413. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css} +0 -0
  414. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -0
  415. /package/src/libs/{ui/inputs/src/lib/form-field/form-field.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css} +0 -0
  416. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +0 -0
  417. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  418. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
@@ -17,6 +17,6 @@ export declare class FeatureEditorModule {
17
17
  static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureEditorModule, [typeof i1.WizardComponent, typeof i2.WizardFieldComponent, typeof i3.WizardSummarizeComponent], [typeof i4.CommonModule, typeof i5.UiInputsModule, typeof i6.UiWidgetsModule, typeof i7.TranslateModule, typeof i8.MatDatepickerModule, typeof i9.MatNativeDateModule, typeof i10.MatFormFieldModule, typeof i11.HttpClientModule, typeof i11.HttpClientXsrfModule, typeof i12.StoreFeatureModule, typeof i13.EffectsFeatureModule], [typeof i1.WizardComponent, typeof i3.WizardSummarizeComponent]>;
18
18
  static ɵinj: i0.ɵɵInjectorDeclaration<FeatureEditorModule>;
19
19
  }
20
- export * from './services/wizard.service';
21
20
  export * from './models/index';
21
+ export * from './services/wizard.service';
22
22
  //# sourceMappingURL=feature-editor.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-editor.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/feature-editor.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAkBA,qBAyBa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG;AACnC,cAAc,2BAA2B,CAAA;AACzC,cAAc,gBAAgB,CAAA"}
1
+ {"version":3,"file":"feature-editor.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/feature-editor.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAkBA,qBAyBa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,2BAA2B,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"fields.config.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/fields.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAE1D,eAAO,MAAM,cAAc,EAAE,kBAgC5B,CAAA"}
1
+ {"version":3,"file":"fields.config.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/editor/src/lib/fields.config.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA;AAE1D,eAAO,MAAM,cAAc,EAAE,kBAqD5B,CAAA"}
@@ -1,4 +1,4 @@
1
- import { FormFieldConfig } from '../../../../../../libs/ui/inputs/src';
1
+ import { FormFieldConfig } from '../components/record-form/form-field';
2
2
  export type EditorFieldExpression = `$\{${string}}`;
3
3
  export interface EditorFieldConfig {
4
4
  formFieldConfig?: FormFieldConfig;
@@ -1,6 +1,6 @@
1
1
  import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
2
- import { OgcApiEndpoint } from '@camptocamp/ogc-client';
3
2
  import { Subject } from 'rxjs';
3
+ import { DropdownChoice } from '../../../../../../libs/ui/inputs/src';
4
4
  import { MapLayer } from '../+state/map.models';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class AddLayerFromOgcApiComponent implements OnInit {
@@ -8,15 +8,20 @@ export declare class AddLayerFromOgcApiComponent implements OnInit {
8
8
  ogcUrl: string;
9
9
  layerAdded: EventEmitter<MapLayer>;
10
10
  urlChange: Subject<string>;
11
- layerUrl: string;
12
11
  loading: boolean;
13
- layers: string[];
14
- ogcEndpoint: OgcApiEndpoint;
12
+ layers: any[];
15
13
  errorMessage: string | null;
14
+ selectedLayerTypes: {
15
+ [key: string]: DropdownChoice['value'];
16
+ };
16
17
  constructor(changeDetectorRef: ChangeDetectorRef);
17
18
  ngOnInit(): void;
18
19
  loadLayers(): Promise<void>;
19
- addLayer(layer: string): Promise<void>;
20
+ setDefaultLayerTypes(): void;
21
+ getLayerChoices(layer: any): any[];
22
+ shouldDisplayLayer(layer: any): any;
23
+ onLayerTypeSelect(layerName: string, selectedType: any): void;
24
+ addLayer(layer: string, layerType: any): Promise<void>;
20
25
  static ɵfac: i0.ɵɵFactoryDeclaration<AddLayerFromOgcApiComponent, never>;
21
26
  static ɵcmp: i0.ɵɵComponentDeclaration<AddLayerFromOgcApiComponent, "gn-ui-add-layer-from-ogc-api", never, { "ogcUrl": { "alias": "ogcUrl"; "required": false; }; }, { "layerAdded": "layerAdded"; }, never, never, true, never>;
22
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,MAAM,EAEN,YAAY,EAGZ,iBAAiB,EAClB,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAA;AACvD,OAAO,EAAE,OAAO,EAAgB,MAAM,MAAM,CAAA;AAQ5C,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;;AAE/C,qBAOa,2BAA4B,YAAW,MAAM;IAW5C,OAAO,CAAC,iBAAiB;IAV5B,MAAM,EAAE,MAAM,CAAA;IACb,UAAU,yBAA+B;IAEnD,SAAS,kBAAwB;IACjC,QAAQ,SAAK;IACb,OAAO,UAAQ;IACf,MAAM,EAAE,MAAM,EAAE,CAAK;IACrB,WAAW,EAAE,cAAc,CAAO;IAClC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;gBAEd,iBAAiB,EAAE,iBAAiB;IAExD,QAAQ;IAOF,UAAU;IAsBV,QAAQ,CAAC,KAAK,EAAE,MAAM;yCA1CjB,2BAA2B;2CAA3B,2BAA2B;CAoDvC"}
1
+ {"version":3,"file":"add-layer-from-ogc-api.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,MAAM,EAEN,YAAY,EAGZ,iBAAiB,EAClB,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,OAAO,EAAgB,MAAM,MAAM,CAAA;AAM5C,OAAO,EAAE,cAAc,EAAkB,MAAM,sCAAsC,CAAA;AAErF,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;;AAE/C,qBAOa,2BAA4B,YAAW,MAAM;IAU5C,OAAO,CAAC,iBAAiB;IAT5B,MAAM,EAAE,MAAM,CAAA;IACb,UAAU,yBAA+B;IAEnD,SAAS,kBAAwB;IACjC,OAAO,UAAQ;IACf,MAAM,EAAE,GAAG,EAAE,CAAK;IAClB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAO;IAClC,kBAAkB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAC,OAAO,CAAC,CAAA;KAAE,CAAK;gBAE/C,iBAAiB,EAAE,iBAAiB;IAExD,QAAQ;IAMF,UAAU;IAqBhB,oBAAoB;IASpB,eAAe,CAAC,KAAK,EAAE,GAAG;IAiB1B,kBAAkB,CAAC,KAAK,EAAE,GAAG;IAS7B,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG;IAMhD,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG;yCAhFjC,2BAA2B;2CAA3B,2BAA2B;CA2GvC"}
@@ -17,25 +17,31 @@ export interface MapContextLayerWmsModel {
17
17
  type: 'wms';
18
18
  url: string;
19
19
  name: string;
20
+ attributions?: string;
20
21
  }
21
22
  export interface MapContextLayerWmtsModel {
22
23
  type: 'wmts';
23
24
  url: string;
24
25
  name: string;
26
+ attributions?: string;
25
27
  }
26
28
  interface MapContextLayerWfsModel {
27
29
  type: 'wfs';
28
30
  url: string;
29
31
  name: string;
32
+ attributions?: string;
30
33
  }
31
34
  export interface MapContextLayerOgcapiModel {
32
35
  type: 'ogcapi';
33
36
  url: string;
34
37
  name: string;
38
+ layerType: 'feature' | 'vectorTiles' | 'mapTiles' | 'record';
39
+ attributions?: string;
35
40
  }
36
41
  interface LayerXyzModel {
37
42
  type: 'xyz';
38
43
  name?: string;
44
+ attributions?: string;
39
45
  }
40
46
  interface LayerXyzModelWithUrl extends LayerXyzModel {
41
47
  url: string;
@@ -48,6 +54,7 @@ interface LayerXyzModelWithUrls extends LayerXyzModel {
48
54
  export type MapContextLayerXyzModel = LayerXyzModelWithUrl | LayerXyzModelWithUrls;
49
55
  interface LayerGeojson {
50
56
  type: 'geojson';
57
+ attributions?: string;
51
58
  }
52
59
  interface LayerGeojsonWithUrl extends LayerGeojson {
53
60
  url: string;
@@ -1 +1 @@
1
- {"version":3,"file":"map-context.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAEvC,oBAAY,uBAAuB;IACjC,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,MAAM,WAAW;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,oBAAoB,EAAE,CAAA;IAC9B,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,uBAAuB;IAC/B,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb;AAED,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,QAAQ,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,aAAa;IACrB,IAAI,EAAE,KAAK,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AACD,UAAU,oBAAqB,SAAQ,aAAa;IAClD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,qBAAsB,SAAQ,aAAa;IACnD,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,uBAAuB,GAC/B,oBAAoB,GACpB,qBAAqB,CAAA;AAEzB,UAAU,YAAY;IACpB,IAAI,EAAE,SAAS,CAAA;CAChB;AACD,UAAU,mBAAoB,SAAQ,YAAY;IAChD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,oBAAqB,SAAQ,YAAY;IACjD,IAAI,EAAE,iBAAiB,GAAG,MAAM,CAAA;IAChC,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,2BAA2B,GACnC,mBAAmB,GACnB,oBAAoB,CAAA;AAExB,MAAM,MAAM,oBAAoB,GAC5B,uBAAuB,GACvB,wBAAwB,GACxB,uBAAuB,GACvB,uBAAuB,GACvB,2BAA2B,GAC3B,0BAA0B,CAAA;AAE9B,MAAM,WAAW,mBAAmB;IAClC,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB"}
1
+ {"version":3,"file":"map-context.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.model.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAEvC,oBAAY,uBAAuB;IACjC,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,OAAO,YAAY;IACnB,MAAM,WAAW;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,EAAE,oBAAoB,EAAE,CAAA;IAC9B,IAAI,CAAC,EAAE,mBAAmB,CAAA;CAC3B;AAED,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,WAAW,wBAAwB;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,UAAU,uBAAuB;IAC/B,IAAI,EAAE,KAAK,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,MAAM,WAAW,0BAA0B;IACzC,IAAI,EAAE,QAAQ,CAAA;IACd,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,SAAS,GAAG,aAAa,GAAG,UAAU,GAAG,QAAQ,CAAA;IAC5D,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AAED,UAAU,aAAa;IACrB,IAAI,EAAE,KAAK,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AACD,UAAU,oBAAqB,SAAQ,aAAa;IAClD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,qBAAsB,SAAQ,aAAa;IACnD,IAAI,EAAE,MAAM,EAAE,CAAA;IACd,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,uBAAuB,GAC/B,oBAAoB,GACpB,qBAAqB,CAAA;AAEzB,UAAU,YAAY;IACpB,IAAI,EAAE,SAAS,CAAA;IACf,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB;AACD,UAAU,mBAAoB,SAAQ,YAAY;IAChD,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,KAAK,CAAA;CACb;AACD,UAAU,oBAAqB,SAAQ,YAAY;IACjD,IAAI,EAAE,iBAAiB,GAAG,MAAM,CAAA;IAChC,GAAG,CAAC,EAAE,KAAK,CAAA;CACZ;AACD,MAAM,MAAM,2BAA2B,GACnC,mBAAmB,GACnB,oBAAoB,CAAA;AAExB,MAAM,MAAM,oBAAoB,GAC5B,uBAAuB,GACvB,wBAAwB,GACxB,uBAAuB,GACvB,uBAAuB,GACvB,2BAA2B,GAC3B,0BAA0B,CAAA;AAE9B,MAAM,WAAW,mBAAmB;IAClC,MAAM,CAAC,EAAE,UAAU,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB"}
@@ -14,7 +14,7 @@ export declare class MapContextService {
14
14
  private styleService;
15
15
  constructor(mapUtils: MapUtilsService, styleService: MapStyleService);
16
16
  resetMapFromContext(map: Map, mapContext: MapContextModel, mapConfig?: MapConfig): Map;
17
- createLayer(layerModel: MapContextLayerModel): Layer;
17
+ createLayer(layerModel: MapContextLayerModel, mapConfig?: MapConfig): Layer;
18
18
  createView(viewModel: MapContextViewModel, map?: Map): View;
19
19
  addDefaultBaselayerContext(layers: MapContextLayerModel[]): MapContextLayerModel[];
20
20
  mergeMapConfigWithContext(mapContext: MapContextModel, mapConfig: MapConfig): MapContextModel;
@@ -1 +1 @@
1
- {"version":3,"file":"map-context.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EACL,oBAAoB,EAEpB,uBAAuB,EACvB,eAAe,EACf,mBAAmB,EACpB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,GAAG,MAAM,QAAQ,CAAA;AACxB,OAAO,IAAI,MAAM,SAAS,CAAA;AAC1B,OAAO,KAAK,MAAM,eAAe,CAAA;AAOjC,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAA;;AAQnF,eAAO,MAAM,yBAAyB,EAAE,uBAOvC,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,mBAG1B,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAQ,CAAA;AAErC,qBAGa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,YAAY;gBADZ,QAAQ,EAAE,eAAe,EACzB,YAAY,EAAE,eAAe;IAGvC,mBAAmB,CACjB,GAAG,EAAE,GAAG,EACR,UAAU,EAAE,eAAe,EAC3B,SAAS,CAAC,EAAE,SAAS,GACpB,GAAG;IAkBN,WAAW,CAAC,UAAU,EAAE,oBAAoB,GAAG,KAAK;IAmHpD,UAAU,CAAC,SAAS,EAAE,mBAAmB,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI;IAqB3D,0BAA0B,CACxB,MAAM,EAAE,oBAAoB,EAAE,GAC7B,oBAAoB,EAAE;IAMzB,yBAAyB,CACvB,UAAU,EAAE,eAAe,EAC3B,SAAS,EAAE,SAAS,GACnB,eAAe;IAsBlB,eAAe,CAAC,SAAS,EAAE,SAAS,GAAG,mBAAmB;IAM1D,yBAAyB,CAAC,MAAM,EAAE,WAAW,GAAG,oBAAoB;yCA3MzD,iBAAiB;6CAAjB,iBAAiB;CAsO7B"}
1
+ {"version":3,"file":"map-context.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/map-context/map-context.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EACL,oBAAoB,EAEpB,uBAAuB,EACvB,eAAe,EACf,mBAAmB,EACpB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,GAAG,MAAM,QAAQ,CAAA;AACxB,OAAO,IAAI,MAAM,SAAS,CAAA;AAC1B,OAAO,KAAK,MAAM,eAAe,CAAA;AAOjC,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,4CAA4C,CAAA;;AAcnF,eAAO,MAAM,yBAAyB,EAAE,uBAQvC,CAAA;AAED,eAAO,MAAM,YAAY,EAAE,mBAG1B,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAQ,CAAA;AAErC,qBAGa,iBAAiB;IAE1B,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,YAAY;gBADZ,QAAQ,EAAE,eAAe,EACzB,YAAY,EAAE,eAAe;IAGvC,mBAAmB,CACjB,GAAG,EAAE,GAAG,EACR,UAAU,EAAE,eAAe,EAC3B,SAAS,CAAC,EAAE,SAAS,GACpB,GAAG;IAoBN,WAAW,CAAC,UAAU,EAAE,oBAAoB,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,KAAK;IAkJ3E,UAAU,CAAC,SAAS,EAAE,mBAAmB,EAAE,GAAG,CAAC,EAAE,GAAG,GAAG,IAAI;IAqB3D,0BAA0B,CACxB,MAAM,EAAE,oBAAoB,EAAE,GAC7B,oBAAoB,EAAE;IAMzB,yBAAyB,CACvB,UAAU,EAAE,eAAe,EAC3B,SAAS,EAAE,SAAS,GACnB,eAAe;IAsBlB,eAAe,CAAC,SAAS,EAAE,SAAS,GAAG,mBAAmB;IAM1D,yBAAyB,CAAC,MAAM,EAAE,WAAW,GAAG,oBAAoB;yCA5OzD,iBAAiB;6CAAjB,iBAAiB;CAuQ7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"map-utils.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/utils/map-utils.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAAU,MAAM,EAAW,MAAM,WAAW,CAAA;AACnD,OAAO,OAAO,MAAM,YAAY,CAAA;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,KAAK,MAAM,gBAAgB,CAAA;AAClC,OAAO,GAAG,MAAM,QAAQ,CAAA;AAExB,OAAO,MAAM,MAAM,kBAAkB,CAAA;AAIrC,OAAO,EAAY,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAO/E,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,OAAO,EACL,oBAAoB,EACpB,uBAAuB,EACxB,MAAM,kCAAkC,CAAA;AACzC,OAAO,UAAU,MAAM,eAAe,CAAA;AACtC,OAAO,eAAe,MAAM,oBAAoB,CAAA;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;;AAWrE,qBAGa,eAAe;IACd,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,KAAK;gBAA/B,IAAI,EAAE,UAAU,EAAU,KAAK,EAAE,YAAY;IAEjE,cAAc,IAAI,GAAG;IAOrB,qBAAqB,sBACA,iBAAiB,0DAGnC,QAAQ,QAAQ,CAAC,EAAE,CAKrB;IAED,UAAU,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,OAAO;IAOzC,SAAS,CAAC,KAAK,KAAA,EAAE,GAAG,KAAA,EAAE,UAAU,KAAA,GAAG,MAAM;IAYzC,0BAA0B,CAAC,KAAK,KAAA,EAAE,KAAK,KAAA,GAAG,OAAO,CAAC,QAAQ,CAAC,EAAE;IAe7D,kCAAkC,CAChC,KAAK,EAAE,GAAG,EACV,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,GACnC,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;IAoBpC;;OAEG;IACG,cAAc,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAuCnE,iBAAiB,CACrB,KAAK,EAAE,uBAAuB,GAC7B,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAyBzB,oBAAoB,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC;IAuB1D,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,MAAM;yCA1K5C,eAAe;6CAAf,eAAe;CAwL3B;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,EACb,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,WAQrC;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,cAAc,EACpB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,WAMhC"}
1
+ {"version":3,"file":"map-utils.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/map/src/lib/utils/map-utils.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AAEjD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,SAAS,CAAA;AAChD,OAAO,EAAU,MAAM,EAAW,MAAM,WAAW,CAAA;AACnD,OAAO,OAAO,MAAM,YAAY,CAAA;AAEhC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAClC,OAAO,KAAK,MAAM,gBAAgB,CAAA;AAClC,OAAO,GAAG,MAAM,QAAQ,CAAA;AAExB,OAAO,MAAM,MAAM,kBAAkB,CAAA;AAIrC,OAAO,EAAY,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAO/E,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;AAEjC,OAAO,EACL,oBAAoB,EACpB,uBAAuB,EACxB,MAAM,kCAAkC,CAAA;AACzC,OAAO,UAAU,MAAM,eAAe,CAAA;AAEtC,OAAO,eAAe,MAAM,oBAAoB,CAAA;AAChD,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAA;;AAWrE,qBAGa,eAAe;IACd,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,KAAK;gBAA/B,IAAI,EAAE,UAAU,EAAU,KAAK,EAAE,YAAY;IAEjE,cAAc,IAAI,GAAG;IAUrB,qBAAqB,sBACA,iBAAiB,0DAGnC,QAAQ,QAAQ,CAAC,EAAE,CAKrB;IAED,UAAU,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,OAAO;IAOzC,SAAS,CAAC,KAAK,KAAA,EAAE,GAAG,KAAA,EAAE,UAAU,KAAA,GAAG,MAAM;IAYzC,0BAA0B,CAAC,KAAK,KAAA,EAAE,KAAK,KAAA,GAAG,OAAO,CAAC,QAAQ,CAAC,EAAE;IAe7D,kCAAkC,CAChC,KAAK,EAAE,GAAG,EACV,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,GACnC,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC,EAAE;IAoBpC;;OAEG;IACG,cAAc,CAAC,KAAK,EAAE,oBAAoB,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAuCnE,iBAAiB,CACrB,KAAK,EAAE,uBAAuB,GAC7B,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAyBzB,oBAAoB,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC;IAuB1D,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,aAAa,CAAC,GAAG,MAAM;yCA7K5C,eAAe;6CAAf,eAAe;CA2L3B;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,EACb,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,WAQrC;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,cAAc,EACpB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,WAMhC"}
@@ -0,0 +1,4 @@
1
+ export * from './lib/feature-notifications.module';
2
+ export * from './lib/notifications.service';
3
+ export * from './lib/notifications-container/notifications-container.component';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/notifications/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA;AAClD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,iEAAiE,CAAA"}
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FeatureNotificationsModule {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureNotificationsModule, never>;
4
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FeatureNotificationsModule, never, never, never>;
5
+ static ɵinj: i0.ɵɵInjectorDeclaration<FeatureNotificationsModule>;
6
+ }
7
+ //# sourceMappingURL=feature-notifications.module.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"feature-notifications.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/feature-notifications.module.ts"],"names":[],"mappings":";AAGA,qBAMa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
@@ -0,0 +1,7 @@
1
+ export interface NotificationContent {
2
+ type: 'info' | 'warning' | 'error' | 'success';
3
+ title: string;
4
+ text: string;
5
+ closeMessage?: string;
6
+ }
7
+ //# sourceMappingURL=notification.model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification.model.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/notification.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAA;IAC9C,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;CACtB"}
@@ -0,0 +1,12 @@
1
+ import { NotificationsService } from '../notifications.service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NotificationsContainerComponent {
4
+ protected notificationsService: NotificationsService;
5
+ constructor(notificationsService: NotificationsService);
6
+ trackById(index: number, notification: {
7
+ id: number;
8
+ }): number;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsContainerComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsContainerComponent, "gn-ui-notifications-container", never, {}, {}, never, never, true, never>;
11
+ }
12
+ //# sourceMappingURL=notifications-container.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notifications-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAA;;AAU/D,qBAyBa,+BAA+B;IAC9B,SAAS,CAAC,oBAAoB,EAAE,oBAAoB;gBAA1C,oBAAoB,EAAE,oBAAoB;IAEhE,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,EAAE;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE;yCAH1C,+BAA+B;2CAA/B,+BAA+B;CAM3C"}
@@ -0,0 +1,15 @@
1
+ import { NotificationContent } from './notification.model';
2
+ import { BehaviorSubject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ type NotificationWithIdentity = NotificationContent & {
5
+ id: number;
6
+ };
7
+ export declare class NotificationsService {
8
+ notifications$: BehaviorSubject<NotificationWithIdentity[]>;
9
+ showNotification(content: NotificationContent, timeoutMs?: number): void;
10
+ removeNotificationById(id: number): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsService, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationsService>;
13
+ }
14
+ export {};
15
+ //# sourceMappingURL=notifications.service.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notifications.service.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/notifications/src/lib/notifications.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAA;;AAEtC,KAAK,wBAAwB,GAAG,mBAAmB,GAAG;IAAE,EAAE,EAAE,MAAM,CAAA;CAAE,CAAA;AAEpE,qBAGa,oBAAoB;IAC/B,cAAc,8CAAsD;IAEpE,gBAAgB,CAAC,OAAO,EAAE,mBAAmB,EAAE,SAAS,CAAC,EAAE,MAAM;IASjE,sBAAsB,CAAC,EAAE,EAAE,MAAM;yCAZtB,oBAAoB;6CAApB,oBAAoB;CAiBhC"}
@@ -1 +1 @@
1
- {"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AA0BA,qBAmCa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
1
+ {"version":3,"file":"feature-record.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/feature-record.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AA6BA,qBAmCa,mBAAmB;yCAAnB,mBAAmB;0CAAnB,mBAAmB;0CAAnB,mBAAmB;CAAG"}
@@ -1 +1 @@
1
- {"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EAEpB,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EAChB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAwB,SAAS,EAAE,MAAM,4CAA4C,CAAA;AAE5F,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,eAAe,EAIf,UAAU,EAMX,MAAM,MAAM,CAAA;AASb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,qBAMa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IAsFtD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IA3FtB,SAAS,EAAE,SAAS,CAAyB;IAC7C,SAAS,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAC5B,OAAO,CAAC,YAAY,CAAqB;IACzC,OAAO,CAAC,cAAc,CAAW;IAEjC,mBAAmB,oCAKlB;IAED,gBAAgB;;;SASf;IACD,kBAAkB,0BAAyB;IAE3C,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,aAAa,kCAGiC;IAE9C,cAAc,oBAiBb;IAED,WAAW,8BA+BV;gBAGS,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,iBAAiB,EAC7B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,WAAW,EAAE,kBAAkB,EAC/B,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,eAAe;IAGvC,WAAW,IAAI,IAAI;IAInB,QAAQ,IAAI,IAAI;IAWhB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,GAAG,IAAI;IASvD,cAAc,IAAI,IAAI;IAOtB,gBAAgB,CACd,IAAI,EAAE,mBAAmB,GACxB,UAAU,CAAC,oBAAoB,CAAC;IAgCnC,mBAAmB,CAAC,IAAI,EAAE,MAAM;yCAhKrB,gBAAgB;2CAAhB,gBAAgB;CAmK5B"}
1
+ {"version":3,"file":"map-view.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/map-view/map-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,SAAS,EACT,MAAM,EACP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,kBAAkB,EAClB,oBAAoB,EAEpB,eAAe,EACf,iBAAiB,EACjB,eAAe,EACf,eAAe,EAChB,MAAM,wCAAwC,CAAA;AAC/C,OAAO,EAAwB,SAAS,EAAE,MAAM,4CAA4C,CAAA;AAE5F,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,eAAe,EAGf,UAAU,EAKX,MAAM,MAAM,CAAA;AASb,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,4CAA4C,CAAA;AACxE,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,qBAMa,gBAAiB,YAAW,MAAM,EAAE,SAAS;IAwFtD,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,UAAU;IAClB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,WAAW;IACnB,OAAO,CAAC,SAAS;IACjB,OAAO,CAAC,YAAY;IA7FtB,SAAS,EAAE,SAAS,CAAyB;IAC7C,SAAS,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAC5B,OAAO,CAAC,YAAY,CAAqB;IACzC,OAAO,CAAC,cAAc,CAAW;IAEjC,mBAAmB,oCAKlB;IAED,gBAAgB;;;SASf;IACD,kBAAkB,0BAAyB;IAE3C,OAAO,UAAQ;IACf,KAAK,MAAO;IAEZ,aAAa,kCAGiC;IAE9C,cAAc,oBAiBb;IAED,WAAW,8BAiCV;gBAGS,YAAY,EAAE,YAAY,EAC1B,UAAU,EAAE,iBAAiB,EAC7B,QAAQ,EAAE,eAAe,EACzB,WAAW,EAAE,WAAW,EACxB,WAAW,EAAE,kBAAkB,EAC/B,SAAS,EAAE,iBAAiB,EAC5B,YAAY,EAAE,eAAe;IAGvC,WAAW,IAAI,IAAI;IAInB,QAAQ,IAAI,IAAI;IAWhB,kBAAkB,CAAC,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,EAAE,GAAG,IAAI;IASvD,cAAc,IAAI,IAAI;IAOtB,gBAAgB,CACd,IAAI,EAAE,mBAAmB,GACxB,UAAU,CAAC,oBAAoB,CAAC;IAiCnC,mBAAmB,CAAC,IAAI,EAAE,MAAM;yCAnKrB,gBAAgB;2CAAhB,gBAAgB;CAsK5B"}
@@ -1,5 +1,5 @@
1
1
  import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
2
- import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
2
+ import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
3
3
  export declare const loadFullMetadata: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata", (props: {
4
4
  uuid: string;
5
5
  }) => {
@@ -10,18 +10,19 @@ export declare const setIncompleteMetadata: import("@ngrx/store").ActionCreator<
10
10
  }) => {
11
11
  incomplete: Partial<CatalogRecord>;
12
12
  } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set incomplete metadata">>;
13
- export declare const loadFullSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Load full success", (props: {
13
+ export declare const loadFullMetadataSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata success", (props: {
14
14
  full: CatalogRecord;
15
15
  }) => {
16
16
  full: CatalogRecord;
17
- } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full success">>;
18
- export declare const loadFullFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Load full failure", (props: {
17
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata success">>;
18
+ export declare const loadFullMetadataFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Load full metadata failure", (props: {
19
19
  otherError?: string;
20
20
  notFound?: boolean;
21
21
  }) => {
22
22
  otherError?: string;
23
23
  notFound?: boolean;
24
- } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full failure">>;
24
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata failure">>;
25
+ export declare const closeMetadata: import("@ngrx/store").ActionCreator<"[Metadata view] close", () => import("@ngrx/store/src/models").TypedAction<"[Metadata view] close">>;
25
26
  export declare const setRelated: import("@ngrx/store").ActionCreator<"[Metadata view] Set related records", (props: {
26
27
  related: CatalogRecord[];
27
28
  }) => {
@@ -32,5 +33,38 @@ export declare const setChartConfig: import("@ngrx/store").ActionCreator<"[Metad
32
33
  }) => {
33
34
  chartConfig: DatavizConfigurationModel;
34
35
  } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set chart config">>;
35
- export declare const close: import("@ngrx/store").ActionCreator<"[Metadata view] close", () => import("@ngrx/store/src/models").TypedAction<"[Metadata view] close">>;
36
+ export declare const addUserFeedback: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback", (props: {
37
+ userFeedback: UserFeedback;
38
+ }) => {
39
+ userFeedback: UserFeedback;
40
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback">>;
41
+ export declare const addUserFeedbackSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback Success", (props: {
42
+ datasetUuid: string;
43
+ }) => {
44
+ datasetUuid: string;
45
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Success">>;
46
+ export declare const addUserFeedbackFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Add UserFeedback Failure", (props: {
47
+ otherError?: string;
48
+ notFound?: boolean;
49
+ }) => {
50
+ otherError?: string;
51
+ notFound?: boolean;
52
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Failure">>;
53
+ export declare const loadUserFeedbacks: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks", (props: {
54
+ datasetUuid: string;
55
+ }) => {
56
+ datasetUuid: string;
57
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks">>;
58
+ export declare const loadUserFeedbacksSuccess: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks Success", (props: {
59
+ userFeedbacks: UserFeedback[];
60
+ }) => {
61
+ userFeedbacks: UserFeedback[];
62
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">>;
63
+ export declare const loadUserFeedbacksFailure: import("@ngrx/store").ActionCreator<"[Metadata view] Load UserFeedbacks Failure", (props: {
64
+ otherError?: string;
65
+ notFound?: boolean;
66
+ }) => {
67
+ otherError?: string;
68
+ notFound?: boolean;
69
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">>;
36
70
  //# sourceMappingURL=mdview.actions.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AAEzF,eAAO,MAAM,gBAAgB;UAEb,MAAM;;UAAN,MAAM;uFACrB,CAAA;AAED,eAAO,MAAM,qBAAqB;gBAEZ,QAAQ,aAAa,CAAC;;gBAAtB,QAAQ,aAAa,CAAC;4FAC3C,CAAA;AAED,eAAO,MAAM,eAAe;UAEZ,aAAa;;UAAb,aAAa;sFAC5B,CAAA;AAED,eAAO,MAAM,eAAe;iBAEL,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;sFAChD,CAAA;AAED,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;wFACjC,CAAA;AAED,eAAO,MAAM,cAAc;iBAEJ,yBAAyB;;iBAAzB,yBAAyB;qFAC/C,CAAA;AAED,eAAO,MAAM,KAAK,2IAAwC,CAAA"}
1
+ {"version":3,"file":"mdview.actions.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAElI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAKlE,eAAO,MAAM,gBAAgB;UAEb,MAAM;;UAAN,MAAM;uFACrB,CAAA;AAED,eAAO,MAAM,qBAAqB;gBAEZ,QAAQ,aAAa,CAAC;;gBAAtB,QAAQ,aAAa,CAAC;4FAC3C,CAAA;AAED,eAAO,MAAM,uBAAuB;UAEpB,aAAa;;UAAb,aAAa;+FAC5B,CAAA;AAED,eAAO,MAAM,uBAAuB;iBAEb,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+FAChD,CAAA;AAED,eAAO,MAAM,aAAa,2IAAwC,CAAA;AAKlE,eAAO,MAAM,UAAU;aAEJ,aAAa,EAAE;;aAAf,aAAa,EAAE;wFACjC,CAAA;AAKD,eAAO,MAAM,cAAc;iBAEJ,yBAAyB;;iBAAzB,yBAAyB;qFAC/C,CAAA;AAKD,eAAO,MAAM,eAAe;kBAEJ,YAAY;;kBAAZ,YAAY;qFACnC,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;;iBAAN,MAAM;6FAC5B,CAAA;AAED,eAAO,MAAM,sBAAsB;iBAEZ,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;6FAChD,CAAA;AAED,eAAO,MAAM,iBAAiB;iBAEP,MAAM;;iBAAN,MAAM;uFAC5B,CAAA;AAED,eAAO,MAAM,wBAAwB;mBAEZ,YAAY,EAAE;;mBAAd,YAAY,EAAE;+FACtC,CAAA;AAED,eAAO,MAAM,wBAAwB;iBAEd,MAAM;eAAa,OAAO;;iBAA1B,MAAM;eAAa,OAAO;+FAChD,CAAA"}
@@ -1,19 +1,39 @@
1
1
  import { Actions } from '@ngrx/effects';
2
2
  import { RecordsRepositoryInterface } from '../../../../../../libs/common/domain/src/lib/repository/records-repository.interface';
3
+ import { PlatformServiceInterface } from '../../../../../../libs/common/domain/src/lib/platform.service.interface';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class MdViewEffects {
5
6
  private actions$;
6
7
  private recordsRepository;
7
- constructor(actions$: Actions, recordsRepository: RecordsRepositoryInterface);
8
- loadFull$: import("rxjs").Observable<({
8
+ private platformServiceInterface;
9
+ constructor(actions$: Actions, recordsRepository: RecordsRepositoryInterface, platformServiceInterface: PlatformServiceInterface);
10
+ loadFullMetadata$: import("rxjs").Observable<({
9
11
  full: import("../../../../../common/domain/src/lib/model/record").CatalogRecord;
10
- } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full success">) | ({
12
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata success">) | ({
11
13
  otherError?: string;
12
14
  notFound?: boolean;
13
- } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full failure">)> & import("@ngrx/effects").CreateEffectMetadata;
15
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load full metadata failure">)> & import("@ngrx/effects").CreateEffectMetadata;
14
16
  loadRelatedRecords$: import("rxjs").Observable<{
15
17
  related: import("../../../../../common/domain/src/lib/model/record").CatalogRecord[];
16
18
  } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Set related records">> & import("@ngrx/effects").CreateEffectMetadata;
19
+ loadUserFeedbacks$: import("rxjs").Observable<({
20
+ userFeedbacks: import("../../../../../common/domain/src/lib/model/record").UserFeedback[];
21
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">) | ({
22
+ otherError?: string;
23
+ notFound?: boolean;
24
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
25
+ reloadUserFeedbacks$: import("rxjs").Observable<({
26
+ userFeedbacks: import("../../../../../common/domain/src/lib/model/record").UserFeedback[];
27
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Success">) | ({
28
+ otherError?: string;
29
+ notFound?: boolean;
30
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Load UserFeedbacks Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
31
+ addUserFeedback$: import("rxjs").Observable<({
32
+ datasetUuid: string;
33
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Success">) | ({
34
+ otherError?: string;
35
+ notFound?: boolean;
36
+ } & import("@ngrx/store/src/models").TypedAction<"[Metadata view] Add UserFeedback Failure">)> & import("@ngrx/effects").CreateEffectMetadata;
17
37
  static ɵfac: i0.ɵɵFactoryDeclaration<MdViewEffects, never>;
18
38
  static ɵprov: i0.ɵɵInjectableDeclaration<MdViewEffects>;
19
39
  }
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;;AAEjI,qBACa,aAAa;IAEtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,iBAAiB;gBADjB,QAAQ,EAAE,OAAO,EACjB,iBAAiB,EAAE,0BAA0B;IAGvD,SAAS;;;;;2IAgBR;IAED,mBAAmB;;4IASlB;yCAjCU,aAAa;6CAAb,aAAa;CAkCzB"}
1
+ {"version":3,"file":"mdview.effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAI7D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;;AAElH,qBACa,aAAa;IAEtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,wBAAwB;gBAFxB,QAAQ,EAAE,OAAO,EACjB,iBAAiB,EAAE,0BAA0B,EAC7C,wBAAwB,EAAE,wBAAwB;IAM5D,iBAAiB;;;;;oJAgBhB;IAKD,mBAAmB;;4IASlB;IAKD,kBAAkB;;;;;oJAkBjB;IAED,oBAAoB;;;;;oJAkBnB;IAED,gBAAgB;;;;;kJAsBf;yCA3GU,aAAa;6CAAb,aAAa;CA4GzB"}
@@ -1,13 +1,16 @@
1
1
  import { Store } from '@ngrx/store';
2
2
  import { LinkClassifierService } from '../../../../../../libs/util/shared/src';
3
3
  import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
4
- import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
4
+ import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
5
+ import { AvatarServiceInterface } from '../../../../../../libs/api/repository/src';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class MdViewFacade {
7
8
  private store;
8
9
  private linkClassifier;
10
+ private avatarService;
11
+ constructor(store: Store, linkClassifier: LinkClassifierService, avatarService: AvatarServiceInterface);
9
12
  isPresent$: import("rxjs").Observable<boolean>;
10
- isLoading$: import("rxjs").Observable<boolean>;
13
+ isMetadataLoading$: import("rxjs").Observable<boolean>;
11
14
  metadata$: import("rxjs").Observable<Partial<CatalogRecord>>;
12
15
  isIncomplete$: import("rxjs").Observable<boolean>;
13
16
  error$: import("rxjs").Observable<{
@@ -24,7 +27,9 @@ export declare class MdViewFacade {
24
27
  geoDataLinks$: import("rxjs").Observable<import("../../../../../common/domain/src/lib/model/record/metadata.model").DatasetDistribution[]>;
25
28
  landingPageLinks$: import("rxjs").Observable<URL[]>;
26
29
  otherLinks$: import("rxjs").Observable<import("../../../../../common/domain/src/lib/model/record/metadata.model").DatasetDistribution[]>;
27
- constructor(store: Store, linkClassifier: LinkClassifierService);
30
+ userFeedbacks$: import("rxjs").Observable<UserFeedback[]>;
31
+ isAllUserFeedbackLoading$: import("rxjs").Observable<boolean>;
32
+ isAddUserFeedbackLoading$: import("rxjs").Observable<boolean>;
28
33
  /**
29
34
  * This will show an incomplete record (e.g. from a search result) as a preview
30
35
  * Note: the full record will not be loaded automatically; use the `loadFull` method for that
@@ -34,8 +39,13 @@ export declare class MdViewFacade {
34
39
  * This will trigger the load of a full metadata record
35
40
  */
36
41
  loadFull(uuid: string): void;
37
- close(): void;
42
+ closeMetadata(): void;
38
43
  setChartConfig(chartConfig: DatavizConfigurationModel): void;
44
+ /**
45
+ * UserFeedbacks
46
+ */
47
+ addUserFeedback(userFeedback: UserFeedback): void;
48
+ loadUserFeedbacks(datasetUuid: string): void;
39
49
  static ɵfac: i0.ɵɵFactoryDeclaration<MdViewFacade, never>;
40
50
  static ɵprov: i0.ɵɵInjectableDeclaration<MdViewFacade>;
41
51
  }
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAI3C,OAAO,EAAE,qBAAqB,EAAa,MAAM,wCAAwC,CAAA;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAOa,YAAY;IAkErB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,cAAc;IAlExB,UAAU,qCAGT;IACD,UAAU,qCAAgE;IAC1E,SAAS,oDAGR;IACD,aAAa,qCAGZ;IACD,MAAM;;;OAA4D;IAElE,QAAQ,6CAAsD;IAE9D,YAAY,uDAA0D;IAEtE,SAAS,8HAER;IACD,SAAS,8HAIR;IACD,YAAY,8HAMX;IACD,cAAc,8HAMb;IACD,UAAU,8HAIT;IACD,aAAa,8HAMZ;IACD,iBAAiB,mCAEhB;IACD,WAAW,8HAMV;gBAGS,KAAK,EAAE,KAAK,EACZ,cAAc,EAAE,qBAAqB;IAG/C;;;OAGG;IACH,qBAAqB,CAAC,UAAU,EAAE,aAAa;IAG/C;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM;IAGrB,KAAK;IAGL,cAAc,CAAC,WAAW,EAAE,yBAAyB;yCAtF1C,YAAY;6CAAZ,YAAY;CAyFxB"}
1
+ {"version":3,"file":"mdview.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAI3C,OAAO,EAAE,qBAAqB,EAAa,MAAM,wCAAwC,CAAA;AACzF,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAA;;AAElF,qBAOa,YAAY;IAErB,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,aAAa;gBAFb,KAAK,EAAE,KAAK,EACZ,cAAc,EAAE,qBAAqB,EACrC,aAAa,EAAE,sBAAsB;IAG/C,UAAU,qCAGT;IAED,kBAAkB,qCAEjB;IAED,SAAS,oDAGR;IAED,aAAa,qCAGZ;IAED,MAAM;;;OAA4D;IAElE,QAAQ,6CAAsD;IAE9D,YAAY,uDAA0D;IAEtE,SAAS,8HAER;IAED,SAAS,8HAIR;IAED,YAAY,8HAMX;IAED,cAAc,8HAMb;IAED,UAAU,8HAIT;IAED,aAAa,8HAMZ;IAED,iBAAiB,mCAEhB;IAED,WAAW,8HAMV;IAED,cAAc,4CAA4D;IAC1E,yBAAyB,qCAExB;IACD,yBAAyB,qCAExB;IAED;;;OAGG;IACH,qBAAqB,CAAC,UAAU,EAAE,aAAa;IAI/C;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM;IAIrB,aAAa;IAIb,cAAc,CAAC,WAAW,EAAE,yBAAyB;IAIrD;;OAEG;IACH,eAAe,CAAC,YAAY,EAAE,YAAY;IAI1C,iBAAiB,CAAC,WAAW,EAAE,MAAM;yCA1H1B,YAAY;6CAAZ,YAAY;CA6HxB"}
@@ -1,8 +1,8 @@
1
1
  import { Action } from '@ngrx/store';
2
2
  import { DatavizConfigurationModel } from '../../../../../../libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model';
3
- import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
4
- export declare const MD_VIEW_FEATURE_STATE_KEY = "mdView";
5
- export interface MdViewState {
3
+ import { CatalogRecord, UserFeedback } from '../../../../../../libs/common/domain/src/lib/model/record';
4
+ export declare const METADATA_VIEW_FEATURE_STATE_KEY = "metadataView";
5
+ export interface MetadataViewState {
6
6
  loadingFull: boolean;
7
7
  error: {
8
8
  notFound?: boolean;
@@ -10,8 +10,11 @@ export interface MdViewState {
10
10
  } | null;
11
11
  metadata?: Partial<CatalogRecord>;
12
12
  related?: CatalogRecord[];
13
+ userFeedbacks?: UserFeedback[];
14
+ allUserFeedbacksLoading: boolean;
15
+ addUserFeedbackLoading: boolean;
13
16
  chartConfig?: DatavizConfigurationModel;
14
17
  }
15
- export declare const initialMdviewState: MdViewState;
16
- export declare function reducer(state: MdViewState | undefined, action: Action): MdViewState;
18
+ export declare const initialMetadataViewState: MetadataViewState;
19
+ export declare function reducer(metadataViewState: MetadataViewState | undefined, action: Action): MetadataViewState;
17
20
  //# sourceMappingURL=mdview.reducer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;AAEvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AAEzF,eAAO,MAAM,yBAAyB,WAAW,CAAA;AAEjD,MAAM,WAAW,WAAW;IAC1B,WAAW,EAAE,OAAO,CAAA;IACpB,KAAK,EAAE;QAAE,QAAQ,CAAC,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;IACzD,QAAQ,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IACjC,OAAO,CAAC,EAAE,aAAa,EAAE,CAAA;IACzB,WAAW,CAAC,EAAE,yBAAyB,CAAA;CACxC;AAED,eAAO,MAAM,kBAAkB,EAAE,WAGhC,CAAA;AAwCD,wBAAgB,OAAO,CAAC,KAAK,EAAE,WAAW,GAAG,SAAS,EAAE,MAAM,EAAE,MAAM,eAErE"}
1
+ {"version":3,"file":"mdview.reducer.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.reducer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAqB,MAAM,aAAa,CAAA;AAEvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,wFAAwF,CAAA;AAClI,OAAO,EACL,aAAa,EACb,YAAY,EACb,MAAM,2DAA2D,CAAA;AAElE,eAAO,MAAM,+BAA+B,iBAAiB,CAAA;AAE7D,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,OAAO,CAAA;IACpB,KAAK,EAAE;QAAE,QAAQ,CAAC,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;IACzD,QAAQ,CAAC,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IACjC,OAAO,CAAC,EAAE,aAAa,EAAE,CAAA;IACzB,aAAa,CAAC,EAAE,YAAY,EAAE,CAAA;IAC9B,uBAAuB,EAAE,OAAO,CAAA;IAChC,sBAAsB,EAAE,OAAO,CAAA;IAC/B,WAAW,CAAC,EAAE,yBAAyB,CAAA;CACxC;AAED,eAAO,MAAM,wBAAwB,EAAE,iBAKtC,CAAA;AAoFD,wBAAgB,OAAO,CACrB,iBAAiB,EAAE,iBAAiB,GAAG,SAAS,EAChD,MAAM,EAAE,MAAM,qBAGf"}
@@ -1,16 +1,19 @@
1
- import { MdViewState } from './mdview.reducer';
2
- export declare const getMdViewState: import("@ngrx/store").MemoizedSelector<object, MdViewState, import("@ngrx/store").DefaultProjectorFn<MdViewState>>;
3
- export declare const getMetadataUuid: import("@ngrx/store").MemoizedSelector<object, string, (s1: MdViewState) => string>;
4
- export declare const getMetadata: import("@ngrx/store").MemoizedSelector<object, Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>, (s1: MdViewState) => Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>>;
5
- export declare const getMetadataIsIncomplete: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MdViewState) => boolean>;
6
- export declare const getMetadataIsLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MdViewState) => boolean>;
1
+ import { MetadataViewState } from './mdview.reducer';
2
+ export declare const getMdViewState: import("@ngrx/store").MemoizedSelector<object, MetadataViewState, import("@ngrx/store").DefaultProjectorFn<MetadataViewState>>;
3
+ export declare const getMetadataUuid: import("@ngrx/store").MemoizedSelector<object, string, (s1: MetadataViewState) => string>;
4
+ export declare const getMetadata: import("@ngrx/store").MemoizedSelector<object, Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>, (s1: MetadataViewState) => Partial<import("../../../../../common/domain/src/lib/model/record").CatalogRecord>>;
5
+ export declare const getMetadataIsIncomplete: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
6
+ export declare const getMetadataIsLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
7
7
  export declare const getMetadataError: import("@ngrx/store").MemoizedSelector<object, {
8
8
  notFound?: boolean;
9
9
  otherError?: string;
10
- }, (s1: MdViewState) => {
10
+ }, (s1: MetadataViewState) => {
11
11
  notFound?: boolean;
12
12
  otherError?: string;
13
13
  }>;
14
- export declare const getRelated: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").CatalogRecord[], (s1: MdViewState) => import("../../../../../common/domain/src/lib/model/record").CatalogRecord[]>;
15
- export declare const getChartConfig: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel, (s1: MdViewState) => import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel>;
14
+ export declare const getRelated: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").CatalogRecord[], (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/record").CatalogRecord[]>;
15
+ export declare const getChartConfig: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel, (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/dataviz/dataviz-configuration.model").DatavizConfigurationModel>;
16
+ export declare const getUserFeedbacks: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/record").UserFeedback[], (s1: MetadataViewState) => import("../../../../../common/domain/src/lib/model/record").UserFeedback[]>;
17
+ export declare const getAllUserFeedbacksLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
18
+ export declare const getAddUserFeedbacksLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: MetadataViewState) => boolean>;
16
19
  //# sourceMappingURL=mdview.selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mdview.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAA6B,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAEzE,eAAO,MAAM,cAAc,oHAE1B,CAAA;AAED,eAAO,MAAM,eAAe,qFAI3B,CAAA;AACD,eAAO,MAAM,WAAW,6OAGvB,CAAA;AACD,eAAO,MAAM,uBAAuB,uFAGnC,CAAA;AACD,eAAO,MAAM,oBAAoB,uFAGhC,CAAA;AACD,eAAO,MAAM,gBAAgB;;;;;;EAG5B,CAAA;AACD,eAAO,MAAM,UAAU,+NAGtB,CAAA;AACD,eAAO,MAAM,cAAc,6SAG1B,CAAA"}
1
+ {"version":3,"file":"mdview.selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/record/src/lib/state/mdview.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAClB,MAAM,kBAAkB,CAAA;AAEzB,eAAO,MAAM,cAAc,gIAE1B,CAAA;AAKD,eAAO,MAAM,eAAe,2FAI3B,CAAA;AACD,eAAO,MAAM,WAAW,mPAGvB,CAAA;AACD,eAAO,MAAM,uBAAuB,6FAGnC,CAAA;AACD,eAAO,MAAM,oBAAoB,6FAGhC,CAAA;AACD,eAAO,MAAM,gBAAgB;;;;;;EAG5B,CAAA;AAKD,eAAO,MAAM,UAAU,qOAGtB,CAAA;AAKD,eAAO,MAAM,cAAc,mTAG1B,CAAA;AAKD,eAAO,MAAM,gBAAgB,mOAG5B,CAAA;AACD,eAAO,MAAM,0BAA0B,6FAGtC,CAAA;AACD,eAAO,MAAM,0BAA0B,6FAGtC,CAAA"}
@@ -8,6 +8,7 @@ export * from './lib/state/effects';
8
8
  export * from './lib/state/reducer';
9
9
  export * from './lib/utils/service/search.service';
10
10
  export * from './lib/utils/service/fields.service';
11
+ export * from './lib/utils/service/fields';
11
12
  export * from './lib/results-list/results-list.container.component';
12
13
  export * from './lib/filter-dropdown/filter-dropdown.component';
13
14
  export * from './lib/constants';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/search/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA;AAC3C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,oCAAoC,CAAA;AAClD,cAAc,oCAAoC,CAAA;AAClD,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iBAAiB,CAAA;AAC/B,cAAc,2CAA2C,CAAA;AACzD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,0DAA0D,CAAA;AACxE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,uDAAuD,CAAA;AACrE,cAAc,4DAA4D,CAAA;AAC1E,cAAc,+CAA+C,CAAA;AAC7D,cAAc,iCAAiC,CAAA;AAC/C,cAAc,wDAAwD,CAAA;AACtE,cAAc,6CAA6C,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/feature/search/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAA;AAC3C,cAAc,6BAA6B,CAAA;AAC3C,cAAc,wBAAwB,CAAA;AACtC,cAAc,qBAAqB,CAAA;AACnC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,oCAAoC,CAAA;AAClD,cAAc,oCAAoC,CAAA;AAClD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iBAAiB,CAAA;AAC/B,cAAc,2CAA2C,CAAA;AACzD,cAAc,4BAA4B,CAAA;AAC1C,cAAc,0DAA0D,CAAA;AACxE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,uDAAuD,CAAA;AACrE,cAAc,4DAA4D,CAAA;AAC1E,cAAc,+CAA+C,CAAA;AAC7D,cAAc,iCAAiC,CAAA;AAC/C,cAAc,wDAAwD,CAAA;AACtE,cAAc,6CAA6C,CAAA"}
@@ -1,12 +1,12 @@
1
1
  import { Injector } from '@angular/core';
2
- import { FieldValue } from './fields';
2
+ import { AbstractSearchField, FieldValue } from './fields';
3
3
  import { Observable } from 'rxjs';
4
4
  import { FieldFilters } from '../../../../../../../libs/common/domain/src/lib/model/search';
5
5
  import * as i0 from "@angular/core";
6
6
  export type FieldValues = Record<string, FieldValue[] | FieldValue>;
7
7
  export declare class FieldsService {
8
- private injector;
9
- private fields;
8
+ protected injector: Injector;
9
+ protected fields: Record<string, AbstractSearchField>;
10
10
  get supportedFields(): string[];
11
11
  constructor(injector: Injector);
12
12
  getAvailableValues(fieldName: string): Observable<import("./fields").FieldAvailableValue[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EAEL,UAAU,EASX,MAAM,UAAU,CAAA;AACjB,OAAO,EAAY,UAAU,EAAM,MAAM,MAAM,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;;AAI3F,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,CAAA;AAenE,qBAGa,aAAa;IAyCZ,OAAO,CAAC,QAAQ;IAxC5B,OAAO,CAAC,MAAM,CAkC0B;IAExC,IAAI,eAAe,aAElB;gBAEmB,QAAQ,EAAE,QAAQ;IAEtC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,OAAO,CAAC,mBAAmB;IAG3B,OAAO,CAAC,mBAAmB;IAI3B,2BAA2B,CACzB,WAAW,EAAE,WAAW,GACvB,UAAU,CAAC,YAAY,CAAC;IAkB3B,0BAA0B,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC;yCA5E/D,aAAa;6CAAb,aAAa;CAwFzB"}
1
+ {"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EACL,mBAAmB,EACnB,UAAU,EASX,MAAM,UAAU,CAAA;AACjB,OAAO,EAAY,UAAU,EAAM,MAAM,MAAM,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;;AAI3F,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,CAAA;AAenE,qBAGa,aAAa;IAyCZ,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAxCxC,SAAS,CAAC,MAAM,sCAkCwB;IAExC,IAAI,eAAe,aAElB;gBAEqB,QAAQ,EAAE,QAAQ;IAExC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,OAAO,CAAC,mBAAmB;IAG3B,OAAO,CAAC,mBAAmB;IAI3B,2BAA2B,CACzB,WAAW,EAAE,WAAW,GACvB,UAAU,CAAC,YAAY,CAAC;IAkB3B,0BAA0B,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC;yCA5E/D,aAAa;6CAAb,aAAa;CAwFzB"}