geonetwork-ui 2.2.0-dev.c15a456d → 2.2.0-dev.c9f3c310

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 (399) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +28 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +83 -58
  3. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +6 -4
  4. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.mjs +14 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +20 -17
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +52 -23
  8. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +52 -32
  9. package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +3 -1
  10. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +10 -3
  11. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +14 -5
  12. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +33 -8
  13. package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +13 -26
  14. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  15. package/esm2022/libs/common/domain/src/lib/model/search/aggregation.model.mjs +1 -1
  16. package/esm2022/libs/common/domain/src/lib/model/search/field.model.mjs +2 -0
  17. package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +1 -1
  18. package/esm2022/libs/common/domain/src/lib/model/search/index.mjs +2 -1
  19. package/esm2022/libs/common/domain/src/lib/model/search/search.model.mjs +1 -1
  20. package/esm2022/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.mjs +1 -1
  21. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  22. package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +4 -10
  23. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +4 -15
  24. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +5 -4
  25. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +5 -3
  26. package/esm2022/libs/feature/map/src/index.mjs +2 -1
  27. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +1 -1
  28. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +106 -0
  29. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +64 -0
  30. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +63 -0
  31. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +2 -1
  32. package/esm2022/libs/feature/map/src/lib/constant/projections.mjs +2 -0
  33. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +26 -3
  34. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +93 -0
  35. package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +40 -0
  36. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -3
  37. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +11 -1
  38. package/esm2022/libs/feature/map/src/lib/utils/index.mjs +1 -3
  39. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +60 -29
  40. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +29 -20
  41. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +2 -2
  42. package/esm2022/libs/feature/search/src/index.mjs +4 -1
  43. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +7 -4
  44. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +2 -6
  45. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +1 -1
  46. package/esm2022/libs/feature/search/src/lib/filter-geometry.token.mjs +4 -0
  47. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +7 -3
  48. package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +4 -0
  49. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +3 -3
  50. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +128 -0
  51. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +6 -4
  52. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +3 -2
  53. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +41 -26
  54. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +11 -9
  55. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +4 -4
  56. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +1 -1
  57. package/esm2022/libs/ui/elements/src/index.mjs +4 -1
  58. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +3 -3
  59. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +27 -0
  60. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +17 -0
  61. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +10 -3
  62. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +35 -16
  63. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +3 -4
  64. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +9 -6
  65. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +3 -3
  66. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +7 -3
  67. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +16 -4
  68. package/esm2022/libs/ui/inputs/src/index.mjs +2 -1
  69. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +3 -3
  70. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +3 -3
  71. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +3 -3
  72. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +8 -5
  73. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +46 -0
  74. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +3 -3
  75. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +2 -2
  76. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +3 -3
  77. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +12 -7
  78. package/esm2022/libs/ui/layout/src/index.mjs +3 -1
  79. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +2 -2
  80. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +36 -0
  81. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +37 -0
  82. package/esm2022/libs/ui/search/src/index.mjs +1 -2
  83. package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +1 -1
  84. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +1 -1
  85. package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +1 -1
  86. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +1 -1
  87. package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +1 -1
  88. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +9 -10
  89. package/esm2022/libs/util/i18n/src/index.mjs +2 -2
  90. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +29 -13
  91. package/esm2022/libs/util/shared/src/lib/utils/fuzzy-filter.mjs +27 -0
  92. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +2 -1
  93. package/esm2022/translations/de.json +106 -89
  94. package/esm2022/translations/en.json +42 -25
  95. package/esm2022/translations/es.json +21 -4
  96. package/esm2022/translations/fr.json +26 -9
  97. package/esm2022/translations/it.json +33 -16
  98. package/esm2022/translations/nl.json +21 -4
  99. package/esm2022/translations/pt.json +21 -4
  100. package/fesm2022/geonetwork-ui.mjs +1521 -835
  101. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  102. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +3 -0
  103. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  104. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +0 -1
  105. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  106. package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -1
  107. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +3 -5
  108. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  109. package/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.d.ts +3 -0
  110. package/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.d.ts.map +1 -0
  111. package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -1
  112. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +6 -6
  113. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  114. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +4 -3
  115. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  116. package/libs/api/repository/src/lib/gn4/index.d.ts +2 -0
  117. package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -1
  118. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  119. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +1 -1
  120. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  121. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -2
  122. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  123. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts +4 -5
  124. package/libs/api/repository/src/lib/gn4/selection/selection.service.d.ts.map +1 -1
  125. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +28 -17
  126. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  127. package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts +1 -1
  128. package/libs/common/domain/src/lib/model/search/aggregation.model.d.ts.map +1 -1
  129. package/libs/common/domain/src/lib/model/search/field.model.d.ts +2 -0
  130. package/libs/common/domain/src/lib/model/search/field.model.d.ts.map +1 -0
  131. package/libs/common/domain/src/lib/model/search/filter.model.d.ts +1 -1
  132. package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -1
  133. package/libs/common/domain/src/lib/model/search/index.d.ts +1 -0
  134. package/libs/common/domain/src/lib/model/search/index.d.ts.map +1 -1
  135. package/libs/common/domain/src/lib/model/search/search.model.d.ts +2 -3
  136. package/libs/common/domain/src/lib/model/search/search.model.d.ts.map +1 -1
  137. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts +1 -0
  138. package/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.d.ts.map +1 -1
  139. package/libs/common/domain/src/lib/platform.service.interface.d.ts +1 -1
  140. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  141. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts +0 -1
  142. package/libs/feature/catalog/src/lib/my-org/my-org.service.d.ts.map +1 -1
  143. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +0 -1
  144. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  145. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +15 -2
  146. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  147. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +1 -1
  148. package/libs/feature/map/src/index.d.ts +1 -0
  149. package/libs/feature/map/src/index.d.ts.map +1 -1
  150. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +22 -0
  151. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -0
  152. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +22 -0
  153. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -0
  154. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +22 -0
  155. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -0
  156. package/libs/feature/map/src/lib/constant/index.d.ts +1 -0
  157. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  158. package/libs/feature/map/src/lib/constant/projections.d.ts.map +1 -0
  159. package/libs/feature/map/src/lib/feature-map.module.d.ts +16 -12
  160. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  161. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +25 -0
  162. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -0
  163. package/libs/feature/map/src/lib/geocoding.service.d.ts +18 -0
  164. package/libs/feature/map/src/lib/geocoding.service.d.ts.map +1 -0
  165. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +2 -0
  166. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  167. package/libs/feature/map/src/lib/utils/index.d.ts +0 -2
  168. package/libs/feature/map/src/lib/utils/index.d.ts.map +1 -1
  169. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +13 -11
  170. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  171. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +1 -3
  172. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  173. package/libs/feature/search/src/index.d.ts +3 -0
  174. package/libs/feature/search/src/index.d.ts.map +1 -1
  175. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +5 -4
  176. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  177. package/libs/feature/search/src/lib/feature-search.module.d.ts +0 -4
  178. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  179. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +3 -2
  180. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -1
  181. package/libs/feature/search/src/lib/filter-geometry.token.d.ts +4 -0
  182. package/libs/feature/search/src/lib/filter-geometry.token.d.ts.map +1 -0
  183. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +1 -1
  184. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  185. package/libs/feature/search/src/lib/record-url.token.d.ts +3 -0
  186. package/libs/feature/search/src/lib/record-url.token.d.ts.map +1 -0
  187. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts +33 -0
  188. package/libs/feature/search/src/lib/results-table/results-table.component.d.ts.map +1 -0
  189. package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -1
  190. package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -1
  191. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  192. package/libs/feature/search/src/lib/utils/service/fields.d.ts +21 -8
  193. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  194. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  195. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +1 -1
  196. package/libs/ui/elements/src/index.d.ts +3 -0
  197. package/libs/ui/elements/src/index.d.ts.map +1 -1
  198. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  199. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +10 -0
  200. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +1 -0
  201. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +8 -0
  202. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +1 -0
  203. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -0
  204. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
  205. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +10 -5
  206. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  207. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  208. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +3 -1
  209. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  210. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +3 -2
  211. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  212. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +13 -11
  213. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  214. package/libs/ui/inputs/src/index.d.ts +1 -0
  215. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  216. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  217. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  218. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  219. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +13 -0
  220. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -0
  221. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +1 -1
  222. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  223. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +40 -39
  224. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  225. package/libs/ui/layout/src/index.d.ts +2 -0
  226. package/libs/ui/layout/src/index.d.ts.map +1 -1
  227. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +14 -0
  228. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +1 -0
  229. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +15 -0
  230. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -0
  231. package/libs/ui/search/src/index.d.ts +0 -1
  232. package/libs/ui/search/src/index.d.ts.map +1 -1
  233. package/libs/ui/search/src/lib/ui-search.module.d.ts +15 -15
  234. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  235. package/libs/util/i18n/src/index.d.ts +1 -1
  236. package/libs/util/i18n/src/index.d.ts.map +1 -1
  237. package/libs/util/shared/src/lib/links/link-utils.d.ts +19 -7
  238. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  239. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts +9 -0
  240. package/libs/util/shared/src/lib/utils/fuzzy-filter.d.ts.map +1 -0
  241. package/libs/util/shared/src/lib/utils/index.d.ts +1 -0
  242. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  243. package/package.json +4 -1
  244. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +61 -8
  245. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +55 -9
  246. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +225 -24
  247. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +32 -0
  248. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +123 -73
  249. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +5 -3
  250. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +3 -5
  251. package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.ts +16 -0
  252. package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +24 -21
  253. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +115 -62
  254. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +169 -95
  255. package/src/libs/api/repository/src/lib/gn4/index.ts +2 -0
  256. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +22 -2
  257. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +15 -4
  258. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +47 -8
  259. package/src/libs/api/repository/src/lib/gn4/selection/selection.service.ts +14 -38
  260. package/src/libs/common/domain/src/lib/index.ts +2 -0
  261. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +33 -21
  262. package/src/libs/common/domain/src/lib/model/search/aggregation.model.ts +1 -1
  263. package/src/libs/common/domain/src/lib/model/search/field.model.ts +1 -0
  264. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +1 -1
  265. package/src/libs/common/domain/src/lib/model/search/index.ts +1 -0
  266. package/src/libs/common/domain/src/lib/model/search/search.model.ts +2 -2
  267. package/src/libs/common/domain/src/lib/model/thesaurus/thesaurus.model.ts +1 -0
  268. package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
  269. package/src/libs/common/domain/src/lib/platform.service.interface.ts +1 -4
  270. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +1 -1
  271. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +50 -10
  272. package/src/libs/feature/catalog/src/lib/my-org/my-org.service.ts +4 -16
  273. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +3 -17
  274. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +8 -5
  275. package/src/libs/feature/editor/src/lib/record-form/record-form.component.ts +2 -1
  276. package/src/libs/feature/map/src/index.ts +1 -0
  277. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.css +0 -0
  278. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +21 -0
  279. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +107 -0
  280. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.css +0 -0
  281. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +37 -0
  282. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +64 -0
  283. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.css +0 -0
  284. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +55 -0
  285. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +63 -0
  286. package/src/libs/feature/map/src/lib/constant/index.ts +1 -0
  287. package/src/libs/feature/map/src/lib/feature-map.module.ts +14 -0
  288. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.css +0 -0
  289. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.html +39 -0
  290. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +99 -0
  291. package/src/libs/feature/map/src/lib/geocoding.service.ts +59 -0
  292. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +9 -3
  293. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +16 -0
  294. package/src/libs/feature/map/src/lib/utils/index.ts +0 -2
  295. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +85 -50
  296. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +18 -3
  297. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +1 -1
  298. package/src/libs/feature/search/src/index.ts +3 -0
  299. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +12 -4
  300. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +2 -1
  301. package/src/libs/feature/search/src/lib/feature-search.module.ts +1 -10
  302. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +4 -4
  303. package/src/libs/feature/search/src/lib/filter-geometry.token.ts +7 -0
  304. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +9 -3
  305. package/src/libs/feature/search/src/lib/record-url.token.ts +4 -0
  306. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +1 -1
  307. package/src/libs/feature/search/src/lib/results-table/results-table.component.css +0 -0
  308. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +112 -0
  309. package/src/libs/feature/search/src/lib/results-table/results-table.component.ts +164 -0
  310. package/src/libs/feature/search/src/lib/state/effects.ts +5 -4
  311. package/src/libs/feature/search/src/lib/state/search.facade.ts +2 -1
  312. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +21 -16
  313. package/src/libs/feature/search/src/lib/utils/service/fields.ts +43 -34
  314. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -0
  315. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +1 -1
  316. package/src/libs/ui/elements/src/index.ts +3 -0
  317. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +4 -1
  318. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.css +0 -0
  319. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +30 -0
  320. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +15 -0
  321. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +5 -0
  322. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +39 -0
  323. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +58 -0
  324. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +264 -0
  325. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.html +1 -0
  326. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +17 -0
  327. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +93 -27
  328. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +7 -0
  329. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +4 -0
  330. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +104 -50
  331. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +37 -10
  332. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +2 -3
  333. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +5 -5
  334. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +12 -4
  335. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  336. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +4 -0
  337. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +7 -0
  338. package/src/libs/ui/inputs/src/index.ts +1 -0
  339. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +1 -1
  340. package/src/libs/ui/inputs/src/lib/button/button.component.css +1 -1
  341. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -0
  342. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.html +0 -1
  343. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  344. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +7 -4
  345. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +48 -0
  346. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +3 -0
  347. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +8 -3
  348. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +1 -0
  349. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +1 -0
  350. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +5 -2
  351. package/src/libs/ui/layout/src/index.ts +2 -0
  352. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +1 -1
  353. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.css +0 -0
  354. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.html +1 -0
  355. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +33 -0
  356. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +15 -0
  357. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +54 -0
  358. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +42 -0
  359. package/src/libs/ui/search/src/index.ts +0 -1
  360. package/src/libs/ui/search/src/lib/ui-search.module.ts +2 -3
  361. package/src/libs/util/i18n/src/index.ts +1 -1
  362. package/src/libs/util/shared/src/lib/links/link-utils.ts +34 -11
  363. package/src/libs/util/shared/src/lib/utils/fuzzy-filter.ts +32 -0
  364. package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
  365. package/tailwind.base.css +2 -2
  366. package/translations/de.json +106 -89
  367. package/translations/en.json +42 -25
  368. package/translations/es.json +21 -4
  369. package/translations/fr.json +26 -9
  370. package/translations/it.json +33 -16
  371. package/translations/nl.json +21 -4
  372. package/translations/pt.json +21 -4
  373. package/translations/sk.json +21 -4
  374. package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +0 -55
  375. package/esm2022/libs/feature/map/src/lib/utils/projections.mjs +0 -2
  376. package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +0 -145
  377. package/esm2022/libs/util/i18n/src/lib/testing/test.translate.loader.mjs +0 -24
  378. package/esm2022/libs/util/i18n/src/lib/testing/test.translate.module.mjs +0 -109
  379. package/esm2022/libs/util/i18n/src/lib/testing/translations.model.mjs +0 -6
  380. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +0 -17
  381. package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +0 -1
  382. package/libs/feature/map/src/lib/utils/projections.d.ts.map +0 -1
  383. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +0 -31
  384. package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +0 -1
  385. package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts +0 -17
  386. package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts.map +0 -1
  387. package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts +0 -131
  388. package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts.map +0 -1
  389. package/libs/util/i18n/src/lib/testing/translations.model.d.ts +0 -21
  390. package/libs/util/i18n/src/lib/testing/translations.model.d.ts.map +0 -1
  391. package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +0 -58
  392. package/src/libs/ui/search/src/lib/record-table/record-table.component.css +0 -7
  393. package/src/libs/ui/search/src/lib/record-table/record-table.component.html +0 -215
  394. package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +0 -149
  395. package/src/libs/util/i18n/src/lib/testing/test.translate.loader.ts +0 -26
  396. package/src/libs/util/i18n/src/lib/testing/test.translate.module.ts +0 -235
  397. package/src/libs/util/i18n/src/lib/testing/translations.model.ts +0 -28
  398. /package/libs/feature/map/src/lib/{utils → constant}/projections.d.ts +0 -0
  399. /package/src/libs/feature/map/src/lib/{utils → constant}/projections.ts +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAC7D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAU3C,OAAO,EAIL,QAAQ,EAER,wBAAwB,EAKxB,iBAAiB,EACjB,aAAa,EAad,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,WAAW,EAAqB,MAAM,WAAW,CAAA;AAI1D,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;;AAGlH,qBACa,aAAa;IAMtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IAGvB,OAAO,CAAC,cAAc;IAZxB,eAAe,sCAEF;gBAGH,QAAQ,EAAE,OAAO,EACjB,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,EAC1B,iBAAiB,EAAE,0BAA0B,EAC7C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EAGzC,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,gBAAgB,qFAWf;IAED,OAAO,CAAC,sBAAsB,CAW7B;IAED,kBAAkB,8FAajB;IAED,YAAY,0FA+FX;IAED,yBAAyB,qGA2BvB;yCArLS,aAAa;6CAAb,aAAa;CAsLzB"}
1
+ {"version":3,"file":"effects.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/effects.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAwB,MAAM,eAAe,CAAA;AAC7D,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAU3C,OAAO,EAIL,QAAQ,EAER,wBAAwB,EAKxB,iBAAiB,EACjB,aAAa,EAad,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,WAAW,EAAqB,MAAM,WAAW,CAAA;AAI1D,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AACjI,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,wBAAwB,EAAE,MAAM,yEAAyE,CAAA;;AAGlH,qBACa,aAAa;IAMtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,eAAe;IAGvB,OAAO,CAAC,cAAc;IAZxB,eAAe,sCAEF;gBAGH,QAAQ,EAAE,OAAO,EACjB,MAAM,EAAE,KAAK,CAAC,WAAW,CAAC,EAC1B,iBAAiB,EAAE,0BAA0B,EAC7C,gBAAgB,EAAE,gBAAgB,EAClC,eAAe,EAAE,wBAAwB,EAGzC,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,gBAAgB,qFAWf;IAED,OAAO,CAAC,sBAAsB,CAW7B;IAED,kBAAkB,8FAajB;IAED,YAAY,0FAgGX;IAED,yBAAyB,qGA2BvB;yCAtLS,aAAa;6CAAb,aAAa;CAuLzB"}
@@ -45,7 +45,7 @@ export declare class SearchFacade {
45
45
  scroll(): SearchFacade;
46
46
  setSortBy(sortBy: SortByField): this;
47
47
  setSpatialFilterEnabled(enabled: boolean): this;
48
- resetSearch(): void;
48
+ resetSearch(): this;
49
49
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFacade, [null, { optional: true; }]>;
50
50
  static ɵprov: i0.ɵɵInjectableDeclaration<SearchFacade>;
51
51
  }
@@ -1 +1 @@
1
- {"version":3,"file":"search.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/search.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,EAAQ,UAAU,EAAM,MAAM,MAAM,CAAA;AAsB3C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAmBvE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,SAAS,EACT,WAAW,EACZ,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBACa,YAAY;IAyBrB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,cAAc;IA3BxB,QAAQ,EAAE,UAAU,CAAC,aAAa,EAAE,CAAC,CAAA;IACrC,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC3B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAChC,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC/B,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC/B,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC7B,cAAc,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IACxC,mBAAmB,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAA;IACnD,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IAC9C,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,cAAc,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACnC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAC/B,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1C,iBAAiB,sBAIhB;IAED,QAAQ,EAAE,MAAM,CAAA;gBAGN,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EAGzB,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,IAAI,CAAC,QAAQ,GAAE,MAA2B,GAAG,IAAI;IAgCjD,YAAY,IAAI,YAAY;IAK5B,qBAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKhD,wBAAwB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKnD,sBAAsB,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,YAAY;IAKzD,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKrD,kBAAkB,IAAI,YAAY;IAKlC,wBAAwB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,YAAY;IAOtE,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY;IAK9C,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAK/C,aAAa,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKlD,SAAS,CAAC,MAAM,EAAE,iBAAiB,GAAG,YAAY;IAKlD,gBAAgB,CAAC,aAAa,EAAE,OAAO,GAAG,YAAY;IAKtD,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY;IAOnE,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY;IAKvC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY;IAK1C,MAAM,IAAI,YAAY;IAKtB,SAAS,CAAC,MAAM,EAAE,WAAW;IAK7B,uBAAuB,CAAC,OAAO,EAAE,OAAO;IAKxC,WAAW;yCA7JA,YAAY;6CAAZ,YAAY;CAmKxB"}
1
+ {"version":3,"file":"search.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/search.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,EAAQ,UAAU,EAAM,MAAM,MAAM,CAAA;AAsB3C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAmBvE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,SAAS,EACT,WAAW,EACZ,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBACa,YAAY;IAyBrB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,cAAc;IA3BxB,QAAQ,EAAE,UAAU,CAAC,aAAa,EAAE,CAAC,CAAA;IACrC,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC3B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAChC,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC/B,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC/B,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC7B,cAAc,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IACxC,mBAAmB,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAA;IACnD,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IAC9C,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,cAAc,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACnC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAC/B,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1C,iBAAiB,sBAIhB;IAED,QAAQ,EAAE,MAAM,CAAA;gBAGN,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EAGzB,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,IAAI,CAAC,QAAQ,GAAE,MAA2B,GAAG,IAAI;IAgCjD,YAAY,IAAI,YAAY;IAK5B,qBAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKhD,wBAAwB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKnD,sBAAsB,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,YAAY;IAKzD,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKrD,kBAAkB,IAAI,YAAY;IAKlC,wBAAwB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,YAAY;IAOtE,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY;IAK9C,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAK/C,aAAa,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKlD,SAAS,CAAC,MAAM,EAAE,iBAAiB,GAAG,YAAY;IAKlD,gBAAgB,CAAC,aAAa,EAAE,OAAO,GAAG,YAAY;IAKtD,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY;IAOnE,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY;IAKvC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY;IAK1C,MAAM,IAAI,YAAY;IAKtB,SAAS,CAAC,MAAM,EAAE,WAAW;IAK7B,uBAAuB,CAAC,OAAO,EAAE,OAAO;IAKxC,WAAW;yCA7JA,YAAY;6CAAZ,YAAY;CAoKxB"}
@@ -16,29 +16,42 @@ export declare abstract class AbstractSearchField {
16
16
  }
17
17
  export declare class SimpleSearchField implements AbstractSearchField {
18
18
  protected esFieldName: string;
19
- protected order: 'asc' | 'desc';
20
19
  protected injector: Injector;
20
+ protected order: 'asc' | 'desc';
21
+ protected orderType: 'key' | 'count';
21
22
  protected repository: RecordsRepositoryInterface;
22
23
  protected esService: ElasticsearchService;
23
- constructor(esFieldName: string, order: 'asc' | 'desc', injector: Injector);
24
+ constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
24
25
  protected getAggregations(): AggregationsParams;
25
26
  protected getBucketLabel(bucket: TermBucket): Promise<string>;
26
27
  getAvailableValues(): Observable<FieldAvailableValue[]>;
27
28
  getFiltersForValues(values: FieldValue[]): Observable<FieldFilters>;
28
29
  getValuesForFilter(filters: FieldFilters): Observable<FieldValue[]>;
29
30
  }
30
- export declare class KeySearchField extends SimpleSearchField {
31
+ export declare class TranslatedSearchField extends SimpleSearchField {
32
+ protected esFieldName: string;
33
+ protected injector: Injector;
34
+ protected order: 'asc' | 'desc';
35
+ protected orderType: 'key' | 'count';
31
36
  protected platformService: PlatformServiceInterface;
37
+ constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
32
38
  protected getTranslation(key: string): Promise<string>;
33
39
  protected getBucketLabel(bucket: TermBucket): Promise<string>;
34
40
  getAvailableValues(): Observable<FieldAvailableValue[]>;
35
41
  }
36
- export declare class ThesaurusField extends KeySearchField {
37
- protected thesaurusName: string;
42
+ /**
43
+ * This search field will either target the `.default` field, or a specific `.langxyz` field according
44
+ * to the defined METADATA_LANGUAGE token
45
+ * The provided ES field name should not include any prefix such as `.langeng`
46
+ */
47
+ export declare class MultilingualSearchField extends SimpleSearchField {
48
+ protected esFieldName: string;
49
+ protected injector: Injector;
50
+ protected order: 'asc' | 'desc';
51
+ protected orderType: 'key' | 'count';
38
52
  private langService;
39
- private thesaurus$;
40
- constructor(esFieldName: string, thesaurusName: string, order: 'asc' | 'desc', injector: Injector);
41
- protected getTranslation(key: string): Promise<any>;
53
+ private searchLanguage;
54
+ constructor(esFieldName: string, injector: Injector, order?: 'asc' | 'desc', orderType?: 'key' | 'count');
42
55
  }
43
56
  export declare class FullTextSearchField implements AbstractSearchField {
44
57
  getAvailableValues(): Observable<FieldAvailableValue[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"fields.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.ts"],"names":[],"mappings":"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"}
@@ -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;AAcnE,qBAGa,aAAa;IAqCZ,OAAO,CAAC,QAAQ;IApC5B,OAAO,CAAC,MAAM,CA8B0B;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;yCAxE/D,aAAa;6CAAb,aAAa;CAoFzB"}
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"}
@@ -15,7 +15,7 @@ export declare class ChartComponent implements OnChanges, AfterViewInit {
15
15
  setReady: (v?: unknown) => void;
16
16
  ngAfterViewInit(): void;
17
17
  ngOnChanges(): void;
18
- createChart(): Chart<keyof import("chart.js").ChartTypeRegistry, (number | import("chart.js").Point | [number, number] | import("chart.js").BubbleDataPoint)[], unknown>;
18
+ createChart(): Chart<keyof import("chart.js").ChartTypeRegistry, (number | [number, number] | import("chart.js").Point | import("chart.js").BubbleDataPoint)[], unknown>;
19
19
  getChartData(): ChartData;
20
20
  getOptions(): ChartOptions;
21
21
  truncateString(str: string, truncateLength: number): string;
@@ -18,5 +18,8 @@ export * from './lib/pagination/pagination.component';
18
18
  export * from './lib/related-record-card/related-record-card.component';
19
19
  export * from './lib/search-results-error/search-results-error.component';
20
20
  export * from './lib/user-preview/user-preview.component';
21
+ export * from './lib/max-lines/max-lines.component';
21
22
  export * from './lib/record-api-form/record-api-form.component';
23
+ export * from './lib/markdown-parser/markdown-parser.component';
24
+ export * from './lib/image-overlay-preview/image-overlay-preview.component';
22
25
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAA;AACxC,cAAc,6CAA6C,CAAA;AAC3D,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6DAA6D,CAAA;AAC3E,cAAc,2DAA2D,CAAA;AACzE,cAAc,qCAAqC,CAAA;AACnD,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uDAAuD,CAAA;AACrE,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,yDAAyD,CAAA;AACvE,cAAc,2DAA2D,CAAA;AACzE,cAAc,2CAA2C,CAAA;AACzD,cAAc,iDAAiD,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAA;AACxC,cAAc,6CAA6C,CAAA;AAC3D,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6DAA6D,CAAA;AAC3E,cAAc,2DAA2D,CAAA;AACzE,cAAc,qCAAqC,CAAA;AACnD,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uDAAuD,CAAA;AACrE,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,yDAAyD,CAAA;AACvE,cAAc,2DAA2D,CAAA;AACzE,cAAc,2CAA2C,CAAA;AACzD,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,6DAA6D,CAAA"}
@@ -14,7 +14,7 @@ export declare class DownloadsListComponent {
14
14
  isFilterActive(filter: FilterFormat): boolean;
15
15
  getFilterFormatTitle(format: FilterFormat): any;
16
16
  isLinkOfFormat(link: DatasetDistribution, format: FilterFormat): boolean;
17
- getLinkFormat(link: DatasetDistribution): "json" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "kml" | "gpkg" | "zip" | "jpg";
17
+ getLinkFormat(link: DatasetDistribution): "json" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf";
18
18
  getLinkColor(link: DatasetDistribution): string;
19
19
  isFromWfs(link: DatasetDistribution): boolean;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<DownloadsListComponent, never>;
@@ -0,0 +1,10 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ImageOverlayPreviewComponent {
4
+ imageUrl: string;
5
+ isPlaceholderShown: EventEmitter<boolean>;
6
+ openLightbox(src: string): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageOverlayPreviewComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageOverlayPreviewComponent, "gn-ui-image-overlay-preview", never, { "imageUrl": { "alias": "imageUrl"; "required": false; }; }, { "isPlaceholderShown": "isPlaceholderShown"; }, never, never, false, never>;
9
+ }
10
+ //# sourceMappingURL=image-overlay-preview.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"image-overlay-preview.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAA;;AAGtE,qBAKa,4BAA4B;IAC9B,QAAQ,EAAE,MAAM,CAAA;IACf,kBAAkB,wBAA8B;IAC1D,YAAY,CAAC,GAAG,EAAE,MAAM;yCAHb,4BAA4B;2CAA5B,4BAA4B;CAMxC"}
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class MarkdownParserComponent {
3
+ textContent: string;
4
+ get parsedMarkdown(): string | Promise<string>;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownParserComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownParserComponent, "gn-ui-markdown-parser", never, { "textContent": { "alias": "textContent"; "required": false; }; }, {}, never, never, true, never>;
7
+ }
8
+ //# sourceMappingURL=markdown-parser.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown-parser.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts"],"names":[],"mappings":";AAGA,qBAOa,uBAAuB;IACzB,WAAW,EAAE,MAAM,CAAA;IAE5B,IAAI,cAAc,6BAEjB;yCALU,uBAAuB;2CAAvB,uBAAuB;CAMnC"}
@@ -7,6 +7,7 @@ export declare class MetadataContactComponent {
7
7
  contactClick: EventEmitter<Individual>;
8
8
  get shownOrganization(): Organization;
9
9
  get contacts(): Individual[];
10
+ get address(): string[];
10
11
  onOrganizationClick(): void;
11
12
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataContactComponent, never>;
12
13
  static ɵcmp: i0.ɵɵComponentDeclaration<MetadataContactComponent, "gn-ui-metadata-contact", never, { "metadata": { "alias": "metadata"; "required": false; }; }, { "organizationClick": "organizationClick"; "contactClick": "contactClick"; }, never, never, false, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"metadata-contact.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,aAAa,EACb,UAAU,EACV,YAAY,EACb,MAAM,2DAA2D,CAAA;;AAElE,qBAMa,wBAAwB;IAC1B,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAC/B,iBAAiB,6BAAmC;IACpD,YAAY,2BAAiC;IAEvD,IAAI,iBAAiB,iBAEpB;IAED,IAAI,QAAQ,iBAMX;IAED,mBAAmB;yCAjBR,wBAAwB;2CAAxB,wBAAwB;CAoBpC"}
1
+ {"version":3,"file":"metadata-contact.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,aAAa,EACb,UAAU,EACV,YAAY,EACb,MAAM,2DAA2D,CAAA;;AAElE,qBAMa,wBAAwB;IAC1B,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAC/B,iBAAiB,6BAAmC;IACpD,YAAY,2BAAiC;IAEvD,IAAI,iBAAiB,iBAEpB;IAED,IAAI,QAAQ,iBAMX;IAED,IAAI,OAAO,aAKV;IAED,mBAAmB;yCAxBR,wBAAwB;2CAAxB,wBAAwB;CA2BpC"}
@@ -1,16 +1,21 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { DatasetRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
2
+ import { DatasetRecord, Keyword } from '../../../../../../libs/common/domain/src/lib/model/record';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class MetadataInfoComponent {
5
5
  metadata: Partial<DatasetRecord>;
6
6
  incomplete: boolean;
7
- keyword: EventEmitter<string>;
7
+ keyword: EventEmitter<Keyword>;
8
8
  updatedTimes: number;
9
- get hasUsage(): number | true;
10
- get usages(): string[];
9
+ get hasUsage(): boolean;
10
+ get legalConstraints(): any[];
11
+ get otherConstraints(): any[];
12
+ get licenses(): {
13
+ text: string;
14
+ url: string;
15
+ }[];
11
16
  get updateFrequency(): string;
12
17
  fieldReady(propName: string): boolean;
13
- onKeywordClick(keyword: string): void;
18
+ onKeywordClick(keyword: Keyword): void;
14
19
  static ɵfac: i0.ɵɵFactoryDeclaration<MetadataInfoComponent, never>;
15
20
  static ɵcmp: i0.ɵɵComponentDeclaration<MetadataInfoComponent, "gn-ui-metadata-info", never, { "metadata": { "alias": "metadata"; "required": false; }; "incomplete": { "alias": "incomplete"; "required": false; }; }, { "keyword": "keyword"; }, never, never, false, never>;
16
21
  }
@@ -1 +1 @@
1
- {"version":3,"file":"metadata-info.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,qBAAqB;IACvB,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,UAAU,EAAE,OAAO,CAAA;IAClB,OAAO,uBAA6B;IAC9C,YAAY,EAAE,MAAM,CAAA;IAEpB,IAAI,QAAQ,kBAMX;IAED,IAAI,MAAM,IAAI,MAAM,EAAE,CASrB;IAED,IAAI,eAAe,IAAI,MAAM,CAS5B;IAED,UAAU,CAAC,QAAQ,EAAE,MAAM;IAI3B,cAAc,CAAC,OAAO,EAAE,MAAM;yCAxCnB,qBAAqB;2CAArB,qBAAqB;CA2CjC"}
1
+ {"version":3,"file":"metadata-info.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,aAAa,EACb,OAAO,EACR,MAAM,2DAA2D,CAAA;;AAElE,qBAMa,qBAAqB;IACvB,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,UAAU,EAAE,OAAO,CAAA;IAClB,OAAO,wBAA8B;IAC/C,YAAY,EAAE,MAAM,CAAA;IAEpB,IAAI,QAAQ,YASX;IAED,IAAI,gBAAgB,UAQnB;IAED,IAAI,gBAAgB,UAQnB;IAED,IAAI,QAAQ,IAAI;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,EAAE,CAU9C;IAED,IAAI,eAAe,IAAI,MAAM,CAS5B;IAED,UAAU,CAAC,QAAQ,EAAE,MAAM;IAI3B,cAAc,CAAC,OAAO,EAAE,OAAO;yCAhEpB,qBAAqB;2CAArB,qBAAqB;CAmEjC"}
@@ -1 +1 @@
1
- {"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAC9F,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,wBAAyB,YAAW,SAAS;IAC/C,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,OAAO,UAAQ;IACf,sBAAsB,EAAE,OAAO,CAAA;IAExC,KAAK,EAAE,mBAAmB,EAAE,CAAK;IAEjC,WAAW,UAAQ;IAEnB,IAAI,YAAY,WAKf;IAED,IAAI,sBAAsB,IAAI,MAAM,CAKnC;IAED,QAAQ;IAIR,QAAQ;IAIR,OAAO,CAAC,GAAG;IAMX,UAAU;IAaV,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAlD9B,wBAAwB;2CAAxB,wBAAwB;CAuDpC"}
1
+ {"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAC9F,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,wBAAyB,YAAW,SAAS;IAC/C,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,OAAO,UAAQ;IACf,sBAAsB,EAAE,OAAO,CAAA;IAExC,KAAK,EAAE,mBAAmB,EAAE,CAAK;IAEjC,WAAW,UAAQ;IAEnB,IAAI,YAAY,WAKf;IAED,IAAI,sBAAsB,IAAI,MAAM,CAInC;IAED,QAAQ;IAIR,QAAQ;IAIR,OAAO,CAAC,GAAG;IAMX,UAAU;IAaV,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAjD9B,wBAAwB;2CAAxB,wBAAwB;CAsDpC"}
@@ -12,9 +12,11 @@ export declare class RecordApiFormComponent {
12
12
  value: string;
13
13
  }[];
14
14
  apiQueryUrl$: import("rxjs").Observable<any>;
15
+ noLimitChecked$: import("rxjs").Observable<boolean>;
16
+ displayLimit$: import("rxjs").Observable<string>;
15
17
  setOffset(value: string): void;
16
18
  setLimit(value: string): void;
17
- setFormat(value: string): void;
19
+ setFormat(value: string | unknown): void;
18
20
  resetUrl(): void;
19
21
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordApiFormComponent, never>;
20
22
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordApiFormComponent, "gn-ui-record-api-form", never, { "apiLink": { "alias": "apiLink"; "required": false; }; }, {}, never, never, false, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAO1D,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAGrD;IACD,OAAO,0BAA0B;IACjC,MAAM,0BAA0B;IAChC,OAAO,0BAA0B;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW;;;QAGV;IACD,YAAY,iCAiBX;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAItB,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ;yCA5CG,sBAAsB;2CAAtB,sBAAsB;CAiDlC"}
1
+ {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAO1D,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAGrD;IACD,OAAO,0BAA0B;IACjC,MAAM,0BAA0B;IAChC,OAAO,0BAA0B;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW;;;QAGV;IACD,YAAY,iCAiBX;IACD,eAAe,qCAEd;IAED,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAKtB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;yCApDG,sBAAsB;2CAAtB,sBAAsB;CAyDlC"}
@@ -1,4 +1,4 @@
1
- import { ElementRef, InjectionToken, OnChanges, OnInit, SimpleChanges } from '@angular/core';
1
+ import { ElementRef, InjectionToken, OnChanges, OnInit, SimpleChanges, EventEmitter } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare const THUMBNAIL_PLACEHOLDER: InjectionToken<string>;
4
4
  type FitOptions = 'cover' | 'contain' | 'scale-down';
@@ -8,6 +8,7 @@ export declare class ThumbnailComponent implements OnInit, OnChanges {
8
8
  fit: FitOptions | FitOptions[];
9
9
  imgElement: ElementRef<HTMLImageElement>;
10
10
  containerElement: ElementRef<HTMLDivElement>;
11
+ placeholderShown: EventEmitter<boolean>;
11
12
  imgUrl: string;
12
13
  imgFit: FitOptions;
13
14
  placeholderUrl: string;
@@ -22,7 +23,7 @@ export declare class ThumbnailComponent implements OnInit, OnChanges {
22
23
  useFallback(): void;
23
24
  setObjectFit(): void;
24
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ThumbnailComponent, [{ optional: true; }]>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailComponent, "gn-ui-thumbnail", never, { "thumbnailUrl": { "alias": "thumbnailUrl"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; }, {}, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailComponent, "gn-ui-thumbnail", never, { "thumbnailUrl": { "alias": "thumbnailUrl"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; }, { "placeholderShown": "placeholderShown"; }, never, never, false, never>;
26
27
  }
27
28
  export {};
28
29
  //# sourceMappingURL=thumbnail.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"thumbnail.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAEV,cAAc,EAEd,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAA;;AAEtB,eAAO,MAAM,qBAAqB,wBAEjC,CAAA;AAUD,KAAK,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,YAAY,CAAA;AAEpD,qBAKa,kBAAmB,YAAW,MAAM,EAAE,SAAS;IAgBxD,OAAO,CAAC,sBAAsB;IAfvB,YAAY,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B,GAAG,EAAE,UAAU,GAAG,UAAU,EAAE,CAAU;IACtB,UAAU,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IACpC,gBAAgB,EAAE,UAAU,CAAC,cAAc,CAAC,CAAA;IAC3E,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,UAAU,CAAA;IAClB,cAAc,SAAqD;IACnE,IAAI,aAAa,YAEhB;IACD,OAAO,CAAC,MAAM,CAA6B;gBAKjC,sBAAsB,EAAE,MAAM;IAGxC,QAAQ;IAIR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,OAAO,CAAC,eAAe;IAqBvB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,cAAc;IAItB,WAAW;IASX,YAAY;yCArED,kBAAkB;2CAAlB,kBAAkB;CA+E9B"}
1
+ {"version":3,"file":"thumbnail.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAEV,cAAc,EAEd,SAAS,EACT,MAAM,EAEN,aAAa,EAGb,YAAY,EACb,MAAM,eAAe,CAAA;;AAEtB,eAAO,MAAM,qBAAqB,wBAEjC,CAAA;AAUD,KAAK,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,YAAY,CAAA;AAEpD,qBAKa,kBAAmB,YAAW,MAAM,EAAE,SAAS;IAiBxD,OAAO,CAAC,sBAAsB;IAhBvB,YAAY,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B,GAAG,EAAE,UAAU,GAAG,UAAU,EAAE,CAAU;IACtB,UAAU,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IACpC,gBAAgB,EAAE,UAAU,CAAC,cAAc,CAAC,CAAA;IACjE,gBAAgB,wBAA8B;IACxD,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,UAAU,CAAA;IAClB,cAAc,SAAqD;IACnE,IAAI,aAAa,YAEhB;IACD,OAAO,CAAC,MAAM,CAA6B;gBAKjC,sBAAsB,EAAE,MAAM;IAGxC,QAAQ;IAIR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,OAAO,CAAC,eAAe;IAqBvB,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,cAAc;IAItB,WAAW;IASX,YAAY;yCAvED,kBAAkB;2CAAlB,kBAAkB;CAiF9B"}
@@ -19,19 +19,21 @@ import * as i17 from "./metadata-info/linkify.directive";
19
19
  import * as i18 from "./pagination-buttons/pagination-buttons.component";
20
20
  import * as i19 from "./max-lines/max-lines.component";
21
21
  import * as i20 from "./record-api-form/record-api-form.component";
22
- import * as i21 from "@angular/common";
23
- import * as i22 from "@angular/material/icon";
24
- import * as i23 from "@angular/material/tooltip";
25
- import * as i24 from "../../../widgets/src/lib/ui-widgets.module";
26
- import * as i25 from "../../../layout/src/lib/ui-layout.module";
27
- import * as i26 from "@ngx-translate/core";
28
- import * as i27 from "../../../../util/shared/src/lib/util-shared.module";
29
- import * as i28 from "@angular/router";
30
- import * as i29 from "../../../inputs/src/lib/ui-inputs.module";
31
- import * as i30 from "@angular/forms";
22
+ import * as i21 from "./image-overlay-preview/image-overlay-preview.component";
23
+ import * as i22 from "@angular/common";
24
+ import * as i23 from "@angular/material/icon";
25
+ import * as i24 from "@angular/material/tooltip";
26
+ import * as i25 from "../../../widgets/src/lib/ui-widgets.module";
27
+ import * as i26 from "../../../layout/src/lib/ui-layout.module";
28
+ import * as i27 from "@ngx-translate/core";
29
+ import * as i28 from "../../../../util/shared/src/lib/util-shared.module";
30
+ import * as i29 from "@angular/router";
31
+ import * as i30 from "../../../inputs/src/lib/ui-inputs.module";
32
+ import * as i31 from "@angular/forms";
33
+ import * as i32 from "./markdown-parser/markdown-parser.component";
32
34
  export declare class UiElementsModule {
33
35
  static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
34
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i17.GnUiLinkifyDirective, typeof i18.PaginationButtonsComponent, typeof i19.MaxLinesComponent, typeof i20.RecordApiFormComponent], [typeof i21.CommonModule, typeof i22.MatIconModule, typeof i23.MatTooltipModule, typeof i24.UiWidgetsModule, typeof i25.UiLayoutModule, typeof i26.TranslateModule, typeof i27.UtilSharedModule, typeof i28.RouterModule, typeof i29.UiInputsModule, typeof i30.FormsModule, typeof i21.NgOptimizedImage], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i18.PaginationButtonsComponent, typeof i20.RecordApiFormComponent]>;
36
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i17.GnUiLinkifyDirective, typeof i18.PaginationButtonsComponent, typeof i19.MaxLinesComponent, typeof i20.RecordApiFormComponent, typeof i21.ImageOverlayPreviewComponent], [typeof i22.CommonModule, typeof i23.MatIconModule, typeof i24.MatTooltipModule, typeof i25.UiWidgetsModule, typeof i26.UiLayoutModule, typeof i27.TranslateModule, typeof i28.UtilSharedModule, typeof i29.RouterModule, typeof i30.UiInputsModule, typeof i31.FormsModule, typeof i22.NgOptimizedImage, typeof i32.MarkdownParserComponent], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i18.PaginationButtonsComponent, typeof i19.MaxLinesComponent, typeof i20.RecordApiFormComponent, typeof i32.MarkdownParserComponent, typeof i21.ImageOverlayPreviewComponent]>;
35
37
  static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
36
38
  }
37
39
  //# sourceMappingURL=ui-elements.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgCA,qBAyDa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
1
+ {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA,qBA8Da,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -19,4 +19,5 @@ export * from './lib/viewport-intersector/viewport-intersector.component';
19
19
  export * from './lib/checkbox/checkbox.component';
20
20
  export * from './lib/search-input/search-input.component';
21
21
  export * from './lib/date-range-picker/date-range-picker.component';
22
+ export * from './lib/editable-label/editable-label.directive';
22
23
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2DAA2D,CAAA;AACzE,cAAc,2CAA2C,CAAA;AACzD,cAAc,wBAAwB,CAAA;AACtC,cAAc,kBAAkB,CAAA;AAChC,cAAc,mDAAmD,CAAA;AACjE,cAAc,mEAAmE,CAAA;AACjF,cAAc,qDAAqD,CAAA;AACnE,cAAc,2DAA2D,CAAA;AACzE,cAAc,mCAAmC,CAAA;AACjD,cAAc,2CAA2C,CAAA;AACzD,cAAc,qDAAqD,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2DAA2D,CAAA;AACzE,cAAc,2CAA2C,CAAA;AACzD,cAAc,wBAAwB,CAAA;AACtC,cAAc,kBAAkB,CAAA;AAChC,cAAc,mDAAmD,CAAA;AACjE,cAAc,mEAAmE,CAAA;AACjF,cAAc,qDAAqD,CAAA;AACnE,cAAc,2DAA2D,CAAA;AACzE,cAAc,mCAAmC,CAAA;AACjD,cAAc,2CAA2C,CAAA;AACzD,cAAc,qDAAqD,CAAA;AACnE,cAAc,+CAA+C,CAAA"}
@@ -9,6 +9,6 @@ export declare class ButtonComponent {
9
9
  get classList(): string;
10
10
  handleClick(event: Event): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "gn-ui-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "gn-ui-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], true, never>;
13
13
  }
14
14
  //# sourceMappingURL=button.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAMa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAQ;IAGxB,IAAa,IAAI,CACf,KAAK,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,EAmBjE;IAEQ,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACd,WAAW,qBAA2B;IAEhD,IAAI,SAAS,WAEZ;IAED,WAAW,CAAC,KAAK,EAAE,KAAK;yCAlCb,eAAe;2CAAf,eAAe;CAuC3B"}
1
+ {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAOa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAQ;IAGxB,IAAa,IAAI,CACf,KAAK,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,EAmBjE;IAEQ,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACd,WAAW,qBAA2B;IAEhD,IAAI,SAAS,WAEZ;IAED,WAAW,CAAC,KAAK,EAAE,KAAK;yCAlCb,eAAe;2CAAf,eAAe;CAuC3B"}
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown-multiselect.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,EAGZ,SAAS,EAGV,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACtB,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAA;;AAGrD,qBAMa,4BAA4B;IA8D3B,OAAO,CAAC,gBAAgB;IA7D3B,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,EAAE,OAAO,EAAE,CAAK;IACxB,WAAW,UAAO;IAClB,OAAO,EAAE,MAAM,CAAA;IACf,gBAAgB,SAAK;IACpB,YAAY,0BAAgC;IAC1B,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAE5D,gBAAgB,EAAE,UAAU,CAAA;IAE5B,gBAAgB,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IAE9C,UAAU,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IACjC,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IACD,cAAc,0DAAqC;IACnD,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,EAAE,SAA8D;IAEhE,IAAI,kBAAkB,YAErB;IAED,IAAI,eAAe,aAIlB;IAED,IAAI,qBAAqB,aAIxB;IAED,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;gBAEmB,gBAAgB,EAAE,qBAAqB;IAE3D,OAAO,CAAC,QAAQ;IAMhB,WAAW;IAiBX,YAAY;IAIN,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAqB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAgBzC,cAAc;IAId,aAAa;IAIb,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,UAAU,CAAC,MAAM,EAAE,MAAM;IAIzB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO;IAOxC,MAAM,CAAC,MAAM,EAAE,MAAM;IAIrB,cAAc,CAAC,KAAK,EAAE,KAAK;IAK3B,qBAAqB,CAAC,KAAK,EAAE,KAAK;yCArKvB,4BAA4B;2CAA5B,4BAA4B;CA0KxC"}
1
+ {"version":3,"file":"dropdown-multiselect.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,EAGZ,SAAS,EAGV,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACtB,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAA;;AAMrD,qBAMa,4BAA4B;IA8D3B,OAAO,CAAC,gBAAgB;IA7D3B,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,QAAQ,EAAE,OAAO,EAAE,CAAK;IACxB,WAAW,UAAO;IAClB,OAAO,EAAE,MAAM,CAAA;IACf,gBAAgB,SAAK;IACpB,YAAY,0BAAgC;IAC1B,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAE5D,gBAAgB,EAAE,UAAU,CAAA;IAE5B,gBAAgB,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IAE9C,UAAU,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IACjC,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IACD,cAAc,0DAAqC;IACnD,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,EAAE,SAA8D;IAEhE,IAAI,kBAAkB,YAErB;IAED,IAAI,eAAe,aAIlB;IAED,IAAI,qBAAqB,aAIxB;IAED,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;gBAEmB,gBAAgB,EAAE,qBAAqB;IAE3D,OAAO,CAAC,QAAQ;IAMhB,WAAW;IAiBX,YAAY;IAIN,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAqB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAgBzC,cAAc;IAId,aAAa;IAIb,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,UAAU,CAAC,MAAM,EAAE,MAAM;IAIzB,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,OAAO;IAOxC,MAAM,CAAC,MAAM,EAAE,MAAM;IAIrB,cAAc,CAAC,KAAK,EAAE,KAAK;IAK3B,qBAAqB,CAAC,KAAK,EAAE,KAAK;yCArKvB,4BAA4B;2CAA5B,4BAA4B;CA0KxC"}
@@ -0,0 +1,13 @@
1
+ import { ElementRef, Renderer2, AfterViewInit, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class EditableLabelDirective implements AfterViewInit {
4
+ private el;
5
+ private renderer;
6
+ editableLabelChanged: EventEmitter<string>;
7
+ gnUiEditableLabel?: boolean;
8
+ constructor(el: ElementRef, renderer: Renderer2);
9
+ ngAfterViewInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditableLabelDirective, never>;
11
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EditableLabelDirective, "[gnUiEditableLabel]", never, { "gnUiEditableLabel": { "alias": "gnUiEditableLabel"; "required": false; }; }, { "editableLabelChanged": "editableLabelChanged"; }, never, never, true, never>;
12
+ }
13
+ //# sourceMappingURL=editable-label.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"editable-label.directive.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,SAAS,EACT,aAAa,EACb,YAAY,EAGb,MAAM,eAAe,CAAA;;AAEtB,qBAIa,sBAAuB,YAAW,aAAa;IAI9C,OAAO,CAAC,EAAE;IAAc,OAAO,CAAC,QAAQ;IAH1C,oBAAoB,uBAA6B;IAClD,iBAAiB,CAAC,EAAE,OAAO,CAAA;gBAEhB,EAAE,EAAE,UAAU,EAAU,QAAQ,EAAE,SAAS;IAE/D,eAAe;yCANJ,sBAAsB;2CAAtB,sBAAsB;CAiClC"}
@@ -12,6 +12,6 @@ export declare class TextAreaComponent implements AfterViewInit {
12
12
  checkRequired(value: any): void;
13
13
  handleChange($event: any): void;
14
14
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "gn-ui-text-area", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "gn-ui-text-area", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
16
16
  }
17
17
  //# sourceMappingURL=text-area.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAKa,iBAAkB,YAAW,aAAa;IAC5C,KAAK,SAAK;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCArBR,iBAAiB;2CAAjB,iBAAiB;CA0B7B"}
1
+ {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAMa,iBAAkB,YAAW,aAAa;IAC5C,KAAK,SAAK;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCArBR,iBAAiB;2CAAjB,iBAAiB;CA0B7B"}
@@ -1,47 +1,48 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./dropdown-selector/dropdown-selector.component";
3
3
  import * as i2 from "./autocomplete/autocomplete.component";
4
- import * as i3 from "./button/button.component";
5
- import * as i4 from "./text-input/text-input.component";
6
- import * as i5 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
7
- import * as i6 from "./text-area/text-area.component";
8
- import * as i7 from "./chips-input/chips-input.component";
9
- import * as i8 from "./navigation-button/navigation-button.component";
10
- import * as i9 from "./star-toggle/star-toggle.component";
11
- import * as i10 from "./dropdown-multiselect/dropdown-multiselect.component";
12
- import * as i11 from "./viewport-intersector/viewport-intersector.component";
13
- import * as i12 from "./form-field/form-field.component";
14
- import * as i13 from "./form-field/form-field-simple/form-field-simple.component";
15
- import * as i14 from "./form-field/form-field-array/form-field-array.component";
16
- import * as i15 from "./form-field/form-field-object/form-field-object.component";
17
- import * as i16 from "./form-field/form-field-rich/form-field-rich.component";
18
- import * as i17 from "./form-field/form-field-file/form-field-file.component";
19
- import * as i18 from "./form-field/form-field-spatial-extent/form-field-spatial-extent.component";
20
- import * as i19 from "./form-field/form-field-temporal-extent/form-field-temporal-extent.component";
21
- import * as i20 from "./check-toggle/check-toggle.component";
22
- import * as i21 from "./copy-text-button/copy-text-button.component";
23
- import * as i22 from "./checkbox/checkbox.component";
24
- import * as i23 from "./search-input/search-input.component";
25
- import * as i24 from "./date-range-picker/date-range-picker.component";
26
- import * as i25 from "@angular/common";
27
- import * as i26 from "@ngx-translate/core";
28
- import * as i27 from "ngx-dropzone";
29
- import * as i28 from "@angular/forms";
30
- import * as i29 from "ngx-chips";
31
- import * as i30 from "../../../../util/shared/src/lib/util-shared.module";
32
- import * as i31 from "@angular/material/autocomplete";
33
- import * as i32 from "@angular/material/icon";
34
- import * as i33 from "../../../widgets/src/lib/ui-widgets.module";
35
- import * as i34 from "@angular/cdk/overlay";
36
- import * as i35 from "@angular/material/checkbox";
37
- import * as i36 from "@angular/material/tooltip";
38
- import * as i37 from "@angular/material/form-field";
39
- import * as i38 from "@angular/material/input";
40
- import * as i39 from "@angular/material/datepicker";
41
- import * as i40 from "@angular/material/core";
4
+ import * as i3 from "./text-input/text-input.component";
5
+ import * as i4 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
6
+ import * as i5 from "./chips-input/chips-input.component";
7
+ import * as i6 from "./navigation-button/navigation-button.component";
8
+ import * as i7 from "./star-toggle/star-toggle.component";
9
+ import * as i8 from "./dropdown-multiselect/dropdown-multiselect.component";
10
+ import * as i9 from "./viewport-intersector/viewport-intersector.component";
11
+ import * as i10 from "./form-field/form-field.component";
12
+ import * as i11 from "./form-field/form-field-simple/form-field-simple.component";
13
+ import * as i12 from "./form-field/form-field-array/form-field-array.component";
14
+ import * as i13 from "./form-field/form-field-object/form-field-object.component";
15
+ import * as i14 from "./form-field/form-field-rich/form-field-rich.component";
16
+ import * as i15 from "./form-field/form-field-file/form-field-file.component";
17
+ import * as i16 from "./form-field/form-field-spatial-extent/form-field-spatial-extent.component";
18
+ import * as i17 from "./form-field/form-field-temporal-extent/form-field-temporal-extent.component";
19
+ import * as i18 from "./check-toggle/check-toggle.component";
20
+ import * as i19 from "./copy-text-button/copy-text-button.component";
21
+ import * as i20 from "./checkbox/checkbox.component";
22
+ import * as i21 from "./search-input/search-input.component";
23
+ import * as i22 from "./date-range-picker/date-range-picker.component";
24
+ import * as i23 from "@angular/common";
25
+ import * as i24 from "@ngx-translate/core";
26
+ import * as i25 from "ngx-dropzone";
27
+ import * as i26 from "@angular/forms";
28
+ import * as i27 from "ngx-chips";
29
+ import * as i28 from "../../../../util/shared/src/lib/util-shared.module";
30
+ import * as i29 from "@angular/material/autocomplete";
31
+ import * as i30 from "@angular/material/icon";
32
+ import * as i31 from "../../../widgets/src/lib/ui-widgets.module";
33
+ import * as i32 from "@angular/cdk/overlay";
34
+ import * as i33 from "@angular/material/checkbox";
35
+ import * as i34 from "@angular/material/tooltip";
36
+ import * as i35 from "@angular/material/form-field";
37
+ import * as i36 from "@angular/material/input";
38
+ import * as i37 from "@angular/material/datepicker";
39
+ import * as i38 from "@angular/material/core";
40
+ import * as i39 from "./editable-label/editable-label.directive";
41
+ import * as i40 from "./text-area/text-area.component";
42
+ import * as i41 from "./button/button.component";
42
43
  export declare class UiInputsModule {
43
44
  static ɵfac: i0.ɵɵFactoryDeclaration<UiInputsModule, never>;
44
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DropdownSelectorComponent, typeof i2.AutocompleteComponent, typeof i3.ButtonComponent, typeof i4.TextInputComponent, typeof i5.DragAndDropFileInputComponent, typeof i6.TextAreaComponent, typeof i7.ChipsInputComponent, typeof i8.NavigationButtonComponent, typeof i9.StarToggleComponent, typeof i10.DropdownMultiselectComponent, typeof i11.ViewportIntersectorComponent, typeof i12.FormFieldComponent, typeof i13.FormFieldSimpleComponent, typeof i14.FormFieldArrayComponent, typeof i15.FormFieldObjectComponent, typeof i16.FormFieldRichComponent, typeof i17.FormFieldFileComponent, typeof i18.FormFieldSpatialExtentComponent, typeof i19.FormFieldTemporalExtentComponent, typeof i20.CheckToggleComponent, typeof i21.CopyTextButtonComponent, typeof i22.CheckboxComponent, typeof i23.SearchInputComponent, typeof i24.DateRangePickerComponent], [typeof i25.CommonModule, typeof i26.TranslateModule, typeof i27.NgxDropzoneModule, typeof i28.FormsModule, typeof i28.ReactiveFormsModule, typeof i29.TagInputModule, typeof i30.UtilSharedModule, typeof i31.MatAutocompleteModule, typeof i32.MatIconModule, typeof i33.UiWidgetsModule, typeof i34.OverlayModule, typeof i35.MatCheckboxModule, typeof i36.MatTooltipModule, typeof i37.MatFormFieldModule, typeof i38.MatInputModule, typeof i39.MatDatepickerModule, typeof i40.MatNativeDateModule], [typeof i1.DropdownSelectorComponent, typeof i2.AutocompleteComponent, typeof i3.ButtonComponent, typeof i4.TextInputComponent, typeof i5.DragAndDropFileInputComponent, typeof i6.TextAreaComponent, typeof i7.ChipsInputComponent, typeof i8.NavigationButtonComponent, typeof i9.StarToggleComponent, typeof i10.DropdownMultiselectComponent, typeof i11.ViewportIntersectorComponent, typeof i12.FormFieldComponent, typeof i20.CheckToggleComponent, typeof i21.CopyTextButtonComponent, typeof i22.CheckboxComponent, typeof i23.SearchInputComponent, typeof i24.DateRangePickerComponent]>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DropdownSelectorComponent, typeof i2.AutocompleteComponent, typeof i3.TextInputComponent, typeof i4.DragAndDropFileInputComponent, typeof i5.ChipsInputComponent, typeof i6.NavigationButtonComponent, typeof i7.StarToggleComponent, typeof i8.DropdownMultiselectComponent, typeof i9.ViewportIntersectorComponent, typeof i10.FormFieldComponent, typeof i11.FormFieldSimpleComponent, typeof i12.FormFieldArrayComponent, typeof i13.FormFieldObjectComponent, typeof i14.FormFieldRichComponent, typeof i15.FormFieldFileComponent, typeof i16.FormFieldSpatialExtentComponent, typeof i17.FormFieldTemporalExtentComponent, typeof i18.CheckToggleComponent, typeof i19.CopyTextButtonComponent, typeof i20.CheckboxComponent, typeof i21.SearchInputComponent, typeof i22.DateRangePickerComponent], [typeof i23.CommonModule, typeof i24.TranslateModule, typeof i25.NgxDropzoneModule, typeof i26.FormsModule, typeof i26.ReactiveFormsModule, typeof i27.TagInputModule, typeof i28.UtilSharedModule, typeof i29.MatAutocompleteModule, typeof i30.MatIconModule, typeof i31.UiWidgetsModule, typeof i32.OverlayModule, typeof i33.MatCheckboxModule, typeof i34.MatTooltipModule, typeof i35.MatFormFieldModule, typeof i36.MatInputModule, typeof i37.MatDatepickerModule, typeof i38.MatNativeDateModule, typeof i39.EditableLabelDirective, typeof i40.TextAreaComponent, typeof i41.ButtonComponent], [typeof i1.DropdownSelectorComponent, typeof i2.AutocompleteComponent, typeof i41.ButtonComponent, typeof i3.TextInputComponent, typeof i4.DragAndDropFileInputComponent, typeof i40.TextAreaComponent, typeof i5.ChipsInputComponent, typeof i6.NavigationButtonComponent, typeof i7.StarToggleComponent, typeof i8.DropdownMultiselectComponent, typeof i9.ViewportIntersectorComponent, typeof i10.FormFieldComponent, typeof i18.CheckToggleComponent, typeof i19.CopyTextButtonComponent, typeof i20.CheckboxComponent, typeof i21.SearchInputComponent, typeof i22.DateRangePickerComponent, typeof i39.EditableLabelDirective]>;
45
46
  static ɵinj: i0.ɵɵInjectorDeclaration<UiInputsModule>;
46
47
  }
47
48
  //# sourceMappingURL=ui-inputs.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4CA,qBAkEa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
1
+ {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6CA,qBAoEa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -4,4 +4,6 @@ export * from './lib/carousel/carousel.component';
4
4
  export * from './lib/expandable-panel/expandable-panel.component';
5
5
  export * from './lib/sticky-header/sticky-header.component';
6
6
  export * from './lib/expandable-panel-button/expandable-panel-button.component';
7
+ export * from './lib/interactive-table/interactive-table.component';
8
+ export * from './lib/interactive-table/interactive-table-column/interactive-table-column.component';
7
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,iEAAiE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA;AACtC,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,iEAAiE,CAAA;AAC/E,cAAc,qDAAqD,CAAA;AACnE,cAAc,qFAAqF,CAAA"}
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class InteractiveTableColumnComponent {
4
+ header: TemplateRef<unknown>;
5
+ cell: TemplateRef<unknown>;
6
+ grow: boolean;
7
+ sortable: boolean;
8
+ activeSort: 'asc' | 'desc' | null;
9
+ sortChange: EventEmitter<"asc" | "desc">;
10
+ handleSortChange(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableColumnComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableColumnComponent, "gn-ui-interactive-table-column", never, { "grow": { "alias": "grow"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "activeSort": { "alias": "activeSort"; "required": false; }; }, { "sortChange": "sortChange"; }, ["header", "cell"], never, true, never>;
13
+ }
14
+ //# sourceMappingURL=interactive-table-column.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"interactive-table-column.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,YAAY,EAGZ,WAAW,EACZ,MAAM,eAAe,CAAA;;AAGtB,qBAQa,+BAA+B;IAClB,MAAM,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAC9B,IAAI,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAEvC,IAAI,UAAQ;IACZ,QAAQ,UAAQ;IAChB,UAAU,EAAE,KAAK,GAAG,MAAM,GAAG,IAAI,CAAO;IACvC,UAAU,+BAAqC;IAEzD,gBAAgB;yCATL,+BAA+B;2CAA/B,+BAA+B;CAa3C"}
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, QueryList } from '@angular/core';
2
+ import { InteractiveTableColumnComponent } from './interactive-table-column/interactive-table-column.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class InteractiveTableComponent {
5
+ columns: QueryList<InteractiveTableColumnComponent>;
6
+ items: unknown[];
7
+ itemClick: EventEmitter<unknown>;
8
+ get gridStyle(): {
9
+ 'grid-template-columns': string;
10
+ };
11
+ handleRowClick(item: unknown): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableComponent, "gn-ui-interactive-table", never, { "items": { "alias": "items"; "required": false; }; }, { "itemClick": "itemClick"; }, ["columns"], never, true, never>;
14
+ }
15
+ //# sourceMappingURL=interactive-table.component.d.ts.map