geonetwork-ui 2.6.0-dev.502fa026d → 2.6.0-dev.5257edce4

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 (848) hide show
  1. package/README.md +2 -3
  2. package/esm2022/libs/api/metadata-converter/src/index.mjs +2 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +17 -15
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +11 -2
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +3 -3
  8. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +59 -15
  9. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +3 -3
  10. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +6 -6
  12. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +3 -3
  13. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +14 -6
  14. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +7 -7
  15. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +8 -8
  16. package/esm2022/libs/api/metadata-converter/src/lib/translate-utils.mjs +17 -0
  17. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +4 -4
  18. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +5 -2
  19. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +21 -27
  20. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +79 -16
  21. package/esm2022/libs/api/repository/src/lib/gn4/gn4.provider.mjs +7 -1
  22. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +8 -8
  23. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +14 -11
  24. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +23 -13
  25. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +2 -1
  26. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  27. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  28. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -31
  29. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +9 -8
  30. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +51 -11
  31. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +4 -5
  32. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +2 -2
  33. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +35 -3
  34. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +31 -8
  35. package/esm2022/libs/feature/editor/src/index.mjs +2 -4
  36. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +2 -1
  37. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +13 -7
  38. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +4 -1
  39. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +5 -1
  40. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +5 -7
  41. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +8 -13
  42. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +5 -6
  43. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +275 -0
  44. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +5 -15
  45. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +5 -5
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +5 -8
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +4 -5
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -10
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +8 -14
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +4 -15
  51. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +4 -4
  52. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +4 -4
  53. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +4 -4
  54. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +7 -7
  55. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +4 -4
  56. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +4 -4
  57. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +6 -17
  58. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +4 -5
  59. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +12 -30
  60. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +1 -3
  61. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +5 -6
  62. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +11 -8
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +11 -8
  64. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +11 -6
  65. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +10 -5
  66. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +3 -36
  67. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -11
  68. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +6 -6
  69. package/esm2022/libs/feature/record/src/index.mjs +2 -4
  70. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +20 -19
  71. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +10 -15
  72. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +5 -6
  73. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +12 -17
  74. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +7 -4
  75. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +8 -22
  76. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +5 -5
  77. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +15 -7
  78. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +101 -21
  79. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +1 -1
  80. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +3 -1
  81. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +14 -5
  82. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +13 -15
  83. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +7 -1
  84. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +3 -1
  85. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +3 -1
  86. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  87. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +10 -2
  88. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -3
  89. package/esm2022/libs/feature/search/src/index.mjs +2 -2
  90. package/esm2022/libs/feature/search/src/lib/constants.mjs +4 -2
  91. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +12 -8
  92. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +33 -42
  93. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +3 -3
  94. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +8 -6
  95. package/esm2022/libs/feature/search/src/lib/record-url.token.mjs +4 -2
  96. package/esm2022/libs/feature/search/src/lib/results-hits/results-hits.container.component.mjs +41 -0
  97. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +35 -15
  98. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +13 -10
  99. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +5 -7
  100. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +4 -4
  101. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +74 -4
  102. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +4 -3
  103. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +3 -3
  104. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +4 -5
  105. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +4 -5
  106. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +4 -5
  107. package/esm2022/libs/ui/dataviz/src/index.mjs +1 -2
  108. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +5 -3
  109. package/esm2022/libs/ui/dataviz/src/lib/data-table/data-table.component.mjs +13 -8
  110. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -5
  111. package/esm2022/libs/ui/elements/src/index.mjs +6 -3
  112. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +31 -10
  113. package/esm2022/libs/ui/elements/src/lib/application-banner/application-banner.component.mjs +5 -5
  114. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +4 -3
  115. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -3
  116. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +24 -9
  117. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +20 -9
  118. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +4 -5
  119. package/esm2022/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.mjs +54 -0
  120. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +4 -5
  121. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +3 -3
  122. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +120 -0
  123. package/esm2022/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.mjs +58 -0
  124. package/esm2022/libs/ui/elements/src/lib/kind-badge/kind-badge.component.mjs +65 -0
  125. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +28 -7
  126. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +3 -6
  127. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +4 -5
  128. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +5 -6
  129. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +10 -8
  130. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +40 -17
  131. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +8 -5
  132. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +9 -6
  133. package/esm2022/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.mjs +71 -0
  134. package/esm2022/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.mjs +170 -0
  135. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +4 -5
  136. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -4
  137. package/esm2022/libs/ui/inputs/src/index.mjs +3 -3
  138. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +10 -13
  139. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -2
  140. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +4 -3
  141. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +7 -6
  142. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +29 -7
  143. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +5 -6
  144. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +5 -7
  145. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.mjs +43 -0
  146. package/esm2022/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.mjs +2 -0
  147. package/esm2022/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.mjs +73 -0
  148. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -3
  149. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +4 -5
  150. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +3 -3
  151. package/esm2022/libs/ui/layout/src/index.mjs +3 -2
  152. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +44 -3
  153. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +48 -11
  154. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +3 -3
  155. package/esm2022/libs/ui/layout/src/lib/cell-popin/cell-popin.component.mjs +110 -0
  156. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +34 -13
  157. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +4 -5
  158. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +26 -5
  159. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +4 -5
  160. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +4 -5
  161. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +6 -6
  162. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +4 -3
  163. package/esm2022/libs/ui/layout/src/lib/truncated-text/truncated-text.component.mjs +71 -0
  164. package/esm2022/libs/ui/map/src/index.mjs +2 -1
  165. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +29 -4
  166. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +4 -5
  167. package/esm2022/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.mjs +80 -0
  168. package/esm2022/libs/ui/search/src/index.mjs +3 -1
  169. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +6 -6
  170. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +4 -8
  171. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  172. package/esm2022/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.mjs +53 -0
  173. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +2 -2
  174. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  175. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +24 -17
  176. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +45 -20
  177. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +39 -26
  178. package/esm2022/libs/ui/widgets/src/index.mjs +1 -2
  179. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  180. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +3 -3
  181. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +2 -3
  182. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
  183. package/esm2022/libs/util/i18n/src/index.mjs +2 -3
  184. package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +3 -2
  185. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +36 -28
  186. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +10 -9
  187. package/esm2022/libs/util/i18n/src/lib/i18n.providers.mjs +41 -0
  188. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +63 -3
  189. package/esm2022/libs/util/shared/src/index.mjs +3 -2
  190. package/esm2022/libs/util/shared/src/lib/gn-ui-version.mjs +6 -0
  191. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +3 -2
  192. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +5 -1
  193. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +36 -24
  194. package/esm2022/libs/util/shared/src/lib/record.util.mjs +56 -0
  195. package/esm2022/translations/de.json +86 -24
  196. package/esm2022/translations/en.json +87 -25
  197. package/esm2022/translations/es.json +85 -23
  198. package/esm2022/translations/fr.json +87 -25
  199. package/esm2022/translations/it.json +85 -24
  200. package/esm2022/translations/nl.json +85 -23
  201. package/esm2022/translations/pt.json +85 -23
  202. package/esm2022/translations/sk.json +603 -0
  203. package/fesm2022/geonetwork-ui.mjs +12040 -9776
  204. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  205. package/libs/api/metadata-converter/src/index.d.ts +1 -0
  206. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  207. package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +1 -1
  208. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  209. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +21 -0
  210. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -1
  211. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
  212. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +4 -4
  213. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  214. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +0 -1
  215. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  216. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +1 -0
  217. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  218. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  219. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  220. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  221. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts +2 -0
  222. package/libs/api/metadata-converter/src/lib/translate-utils.d.ts.map +1 -0
  223. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  224. package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -1
  225. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +9 -7
  226. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  227. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +14 -3
  228. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  229. package/libs/api/repository/src/lib/gn4/gn4.provider.d.ts.map +1 -1
  230. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +1 -0
  231. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  232. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +4 -4
  233. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  234. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +6 -3
  235. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  236. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +1 -0
  237. package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -1
  238. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +27 -17
  239. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  240. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +7 -1
  241. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  242. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +4 -8
  243. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  244. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +3 -3
  245. package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -1
  246. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +12 -8
  247. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  248. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  249. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +1 -0
  250. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  251. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +6 -3
  252. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  253. package/libs/feature/editor/src/index.d.ts +1 -3
  254. package/libs/feature/editor/src/index.d.ts.map +1 -1
  255. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +8 -1
  256. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  257. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +10 -12
  258. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  259. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +2 -1
  260. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  261. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  262. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +1 -1
  263. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  264. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -1
  265. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
  266. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
  267. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts +52 -0
  268. package/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.d.ts.map +1 -0
  269. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
  270. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +6 -6
  271. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  272. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -1
  273. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -1
  274. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  275. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  276. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -1
  277. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
  278. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  279. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  280. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  281. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  282. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  283. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +10 -17
  284. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  285. package/libs/feature/editor/src/lib/models/index.d.ts +0 -2
  286. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  287. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  288. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  289. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  290. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  291. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  292. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -11
  293. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  294. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  295. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  296. package/libs/feature/record/src/index.d.ts +1 -3
  297. package/libs/feature/record/src/index.d.ts.map +1 -1
  298. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +15 -4
  299. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  300. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +2 -3
  301. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  302. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -2
  303. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  304. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -1
  305. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  306. package/libs/feature/record/src/lib/feature-record.module.d.ts +8 -12
  307. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  308. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -1
  309. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -1
  310. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +13 -6
  311. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  312. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +2 -2
  313. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +10 -0
  314. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  315. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -1
  316. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  317. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +28 -21
  318. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  319. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +2 -0
  320. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  321. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +2 -0
  322. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  323. package/libs/feature/router/src/lib/default/constants.d.ts +2 -0
  324. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  325. package/libs/feature/router/src/lib/default/router.config.d.ts +2 -0
  326. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  327. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  328. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +5 -0
  329. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  330. package/libs/feature/search/src/index.d.ts +1 -1
  331. package/libs/feature/search/src/index.d.ts.map +1 -1
  332. package/libs/feature/search/src/lib/constants.d.ts.map +1 -1
  333. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +2 -1
  334. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  335. package/libs/feature/search/src/lib/feature-search.module.d.ts +24 -22
  336. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  337. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +2 -1
  338. package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -1
  339. package/libs/feature/search/src/lib/record-url.token.d.ts +3 -1
  340. package/libs/feature/search/src/lib/record-url.token.d.ts.map +1 -1
  341. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts +21 -0
  342. package/libs/feature/search/src/lib/results-hits/results-hits.container.component.d.ts.map +1 -0
  343. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +5 -3
  344. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  345. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +6 -5
  346. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  347. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +1 -2
  348. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -1
  349. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -1
  350. package/libs/feature/search/src/lib/utils/service/fields.d.ts +22 -2
  351. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  352. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  353. package/libs/ui/dataviz/src/index.d.ts +0 -1
  354. package/libs/ui/dataviz/src/index.d.ts.map +1 -1
  355. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +2 -1
  356. package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -1
  357. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts +6 -1
  358. package/libs/ui/dataviz/src/lib/data-table/data-table.component.d.ts.map +1 -1
  359. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -1
  360. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  361. package/libs/ui/elements/src/index.d.ts +5 -2
  362. package/libs/ui/elements/src/index.d.ts.map +1 -1
  363. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +9 -1
  364. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  365. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +1 -1
  366. package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -1
  367. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +2 -0
  368. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -1
  369. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +8 -1
  370. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  371. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -1
  372. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  373. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts +15 -0
  374. package/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.d.ts.map +1 -0
  375. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts +36 -0
  376. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -0
  377. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts +14 -0
  378. package/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.d.ts.map +1 -0
  379. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts +13 -0
  380. package/libs/ui/elements/src/lib/kind-badge/kind-badge.component.d.ts.map +1 -0
  381. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +10 -2
  382. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  383. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  384. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +2 -2
  385. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  386. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +3 -0
  387. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  388. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  389. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  390. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts +27 -0
  391. package/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.d.ts.map +1 -0
  392. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts +31 -0
  393. package/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.d.ts.map +1 -0
  394. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +1 -1
  395. package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -1
  396. package/libs/ui/inputs/src/index.d.ts +2 -2
  397. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  398. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +1 -2
  399. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  400. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  401. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  402. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts +1 -1
  403. package/libs/ui/inputs/src/lib/checkbox/checkbox.component.d.ts.map +1 -1
  404. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +1 -1
  405. package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -1
  406. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +1 -1
  407. package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -1
  408. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
  409. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts +14 -0
  410. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.d.ts.map +1 -0
  411. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts +6 -0
  412. package/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.d.ts.map +1 -0
  413. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts +17 -0
  414. package/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.d.ts.map +1 -0
  415. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +2 -1
  416. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
  417. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +1 -1
  418. package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -1
  419. package/libs/ui/layout/src/index.d.ts +2 -1
  420. package/libs/ui/layout/src/index.d.ts.map +1 -1
  421. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +10 -3
  422. package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -1
  423. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +9 -2
  424. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  425. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts +28 -0
  426. package/libs/ui/layout/src/lib/cell-popin/cell-popin.component.d.ts.map +1 -0
  427. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +15 -8
  428. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  429. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +5 -1
  430. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  431. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +1 -1
  432. package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -1
  433. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts +22 -0
  434. package/libs/ui/layout/src/lib/truncated-text/truncated-text.component.d.ts.map +1 -0
  435. package/libs/ui/map/src/index.d.ts +1 -0
  436. package/libs/ui/map/src/index.d.ts.map +1 -1
  437. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +6 -2
  438. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  439. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts +15 -0
  440. package/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.d.ts.map +1 -0
  441. package/libs/ui/search/src/index.d.ts +2 -0
  442. package/libs/ui/search/src/index.d.ts.map +1 -1
  443. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts +17 -0
  444. package/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.d.ts.map +1 -0
  445. package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -1
  446. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +4 -3
  447. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  448. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
  449. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  450. package/libs/ui/search/src/lib/ui-search.module.d.ts +22 -19
  451. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  452. package/libs/ui/widgets/src/index.d.ts +0 -1
  453. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  454. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +1 -1
  455. package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -1
  456. package/libs/util/app-config/src/lib/app-config.d.ts +0 -1
  457. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  458. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  459. package/libs/util/i18n/src/index.d.ts +1 -2
  460. package/libs/util/i18n/src/index.d.ts.map +1 -1
  461. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +1 -1
  462. package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -1
  463. package/libs/util/i18n/src/lib/i18n.constants.d.ts +6 -15
  464. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  465. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +5 -5
  466. package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -1
  467. package/libs/util/i18n/src/lib/i18n.providers.d.ts +4 -0
  468. package/libs/util/i18n/src/lib/i18n.providers.d.ts.map +1 -0
  469. package/libs/util/i18n/src/lib/language-codes.d.ts +15 -19
  470. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -1
  471. package/libs/util/shared/src/index.d.ts +2 -1
  472. package/libs/util/shared/src/index.d.ts.map +1 -1
  473. package/libs/util/shared/src/lib/gn-ui-version.d.ts +3 -0
  474. package/libs/util/shared/src/lib/gn-ui-version.d.ts.map +1 -0
  475. package/libs/util/shared/src/lib/image-fallback.directive.d.ts +1 -1
  476. package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -1
  477. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  478. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  479. package/libs/util/shared/src/lib/links/link-utils.d.ts +30 -23
  480. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  481. package/libs/util/shared/src/lib/record.util.d.ts +3 -0
  482. package/libs/util/shared/src/lib/record.util.d.ts.map +1 -0
  483. package/package.json +4 -4
  484. package/src/libs/api/metadata-converter/src/index.ts +1 -0
  485. package/src/libs/api/metadata-converter/src/lib/base.converter.ts +1 -4
  486. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  487. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +29 -15
  488. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +10 -1
  489. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +2 -2
  490. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +2 -2
  491. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +3 -3
  492. package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +4196 -0
  493. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +2 -2
  494. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +2 -2
  495. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +81 -11
  496. package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +4 -4
  497. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +0 -1
  498. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +11 -5
  499. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +2 -2
  500. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +14 -8
  501. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +12 -8
  502. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +8 -7
  503. package/src/libs/api/metadata-converter/src/lib/translate-utils.ts +17 -0
  504. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +3 -6
  505. package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +4 -1
  506. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +17 -17
  507. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +119 -16
  508. package/src/libs/api/repository/src/lib/gn4/gn4.provider.ts +6 -0
  509. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +8 -7
  510. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +13 -6
  511. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +24 -20
  512. package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +3 -0
  513. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +28 -11
  514. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +11 -1
  515. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +36 -26
  516. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +16 -2
  517. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +5 -5
  518. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +114 -1
  519. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -17
  520. package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +7 -3
  521. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +12 -9
  522. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +60 -12
  523. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +2 -2
  524. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +40 -1
  525. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -0
  526. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +33 -3
  527. package/src/libs/feature/editor/src/index.ts +1 -3
  528. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +9 -1
  529. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +23 -12
  530. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  531. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +9 -1
  532. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +3 -4
  533. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +5 -16
  534. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +7 -5
  535. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +120 -0
  536. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.ts +331 -0
  537. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +3 -12
  538. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +5 -4
  539. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +3 -4
  540. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +2 -2
  541. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +4 -11
  542. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +5 -9
  543. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +2 -17
  544. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +2 -2
  545. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +2 -2
  546. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +2 -2
  547. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +2 -2
  548. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +2 -2
  549. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +4 -4
  550. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +2 -2
  551. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +2 -2
  552. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +2 -15
  553. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +2 -2
  554. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +4 -17
  555. package/src/libs/feature/editor/src/lib/models/index.ts +0 -2
  556. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +2 -1
  557. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +8 -3
  558. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -3
  559. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +8 -2
  560. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +8 -2
  561. package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -17
  562. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +3 -8
  563. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +3 -2
  564. package/src/libs/feature/record/src/index.ts +1 -3
  565. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +17 -11
  566. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +22 -19
  567. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +4 -5
  568. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +1 -1
  569. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +2 -2
  570. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +6 -7
  571. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +2 -2
  572. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +3 -2
  573. package/src/libs/feature/record/src/lib/feature-record.module.ts +4 -13
  574. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +4 -3
  575. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +10 -4
  576. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +38 -11
  577. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +140 -21
  578. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +2 -2
  579. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +10 -0
  580. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +27 -3
  581. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +21 -17
  582. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +12 -0
  583. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +9 -0
  584. package/src/libs/feature/router/src/lib/default/constants.ts +2 -0
  585. package/src/libs/feature/router/src/lib/default/router.config.ts +2 -0
  586. package/src/libs/feature/router/src/lib/default/router.service.ts +10 -0
  587. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +10 -1
  588. package/src/libs/feature/search/src/index.ts +1 -1
  589. package/src/libs/feature/search/src/lib/constants.ts +3 -1
  590. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +2 -7
  591. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +16 -7
  592. package/src/libs/feature/search/src/lib/feature-search.module.ts +17 -23
  593. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  594. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +5 -0
  595. package/src/libs/feature/search/src/lib/record-url.token.ts +10 -1
  596. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.html +16 -0
  597. package/src/libs/feature/search/src/lib/results-hits/results-hits.container.component.ts +59 -0
  598. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +6 -0
  599. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -0
  600. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +26 -5
  601. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +1 -0
  602. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +13 -3
  603. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +10 -4
  604. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +2 -2
  605. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +4 -5
  606. package/src/libs/feature/search/src/lib/utils/service/fields.ts +103 -3
  607. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
  608. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  609. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +2 -2
  610. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +2 -2
  611. package/src/libs/ui/dataviz/src/index.ts +0 -1
  612. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +2 -1
  613. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.html +6 -3
  614. package/src/libs/ui/dataviz/src/lib/data-table/data-table.component.ts +7 -6
  615. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +0 -1
  616. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +4 -0
  617. package/src/libs/ui/elements/src/index.ts +5 -2
  618. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +64 -38
  619. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +29 -4
  620. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.html +6 -6
  621. package/src/libs/ui/elements/src/lib/application-banner/application-banner.component.ts +2 -2
  622. package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +3 -0
  623. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +6 -2
  624. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +5 -1
  625. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +21 -18
  626. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +22 -4
  627. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +42 -10
  628. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +28 -4
  629. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -2
  630. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.css +4 -0
  631. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.html +13 -0
  632. package/src/libs/ui/elements/src/lib/geo-data-badge/geo-data-badge.component.ts +54 -0
  633. package/src/libs/ui/elements/src/lib/image-input/image-input.component.ts +2 -2
  634. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  635. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.css +0 -0
  636. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +83 -0
  637. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +129 -0
  638. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.html +69 -0
  639. package/src/libs/ui/elements/src/lib/internal-link-card-contact/internal-link-card-contact.component.ts +61 -0
  640. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.css +6 -0
  641. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.html +11 -0
  642. package/src/libs/ui/elements/src/lib/kind-badge/kind-badge.component.ts +69 -0
  643. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +30 -29
  644. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +28 -2
  645. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -4
  646. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +3 -5
  647. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +2 -2
  648. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +12 -9
  649. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -2
  650. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
  651. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +24 -7
  652. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +11 -6
  653. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +3 -2
  654. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +51 -13
  655. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +6 -2
  656. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +6 -3
  657. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.html +107 -0
  658. package/src/libs/ui/elements/src/lib/record-feature-catalog/feature-catalog-list/feature-catalog-list.component.ts +83 -0
  659. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.css +0 -0
  660. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.html +110 -0
  661. package/src/libs/ui/elements/src/lib/service-capabilities/service-capabilities.component.ts +196 -0
  662. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +2 -2
  663. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +4 -0
  664. package/src/libs/ui/inputs/src/index.ts +2 -2
  665. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +3 -3
  666. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +6 -9
  667. package/src/libs/ui/inputs/src/lib/button/button.component.ts +2 -2
  668. package/src/libs/ui/inputs/src/lib/checkbox/checkbox.component.ts +3 -0
  669. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +1 -1
  670. package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +4 -0
  671. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +1 -1
  672. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +27 -0
  673. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -1
  674. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +2 -2
  675. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +3 -4
  676. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.html +23 -0
  677. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.component.ts +47 -0
  678. package/src/libs/ui/inputs/src/lib/inline-filter/inline-filter.model.ts +5 -0
  679. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.css +0 -0
  680. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.html +43 -0
  681. package/src/libs/ui/inputs/src/lib/search-feature-catalog/search-feature-catalog.component.ts +83 -0
  682. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -1
  683. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +11 -8
  684. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +4 -1
  685. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +2 -2
  686. package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +1 -0
  687. package/src/libs/ui/layout/src/index.ts +2 -1
  688. package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +47 -2
  689. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +22 -0
  690. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +2 -2
  691. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +43 -5
  692. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -5
  693. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +1 -1
  694. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.html +40 -0
  695. package/src/libs/ui/layout/src/lib/cell-popin/cell-popin.component.ts +141 -0
  696. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -8
  697. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +36 -10
  698. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
  699. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +4 -7
  700. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +22 -2
  701. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
  702. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.ts +2 -2
  703. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +2 -2
  704. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +17 -5
  705. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +3 -3
  706. package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +3 -0
  707. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.html +27 -0
  708. package/src/libs/ui/layout/src/lib/truncated-text/truncated-text.component.ts +84 -0
  709. package/src/libs/ui/map/src/index.ts +1 -0
  710. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +3 -3
  711. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +27 -3
  712. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -2
  713. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.css +0 -0
  714. package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.html +4 -0
  715. package/src/libs/{feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts → ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts} +8 -8
  716. package/src/libs/ui/search/src/index.ts +2 -0
  717. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +4 -1
  718. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +9 -81
  719. package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +1 -1
  720. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.html +25 -0
  721. package/src/libs/ui/search/src/lib/results-hits-search-kind/results-hits-search-kind.component.ts +53 -0
  722. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +2 -2
  723. package/src/libs/ui/search/src/lib/results-list/results-list.component.html +1 -0
  724. package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +0 -1
  725. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +16 -6
  726. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +18 -15
  727. package/src/libs/ui/search/src/lib/results-table/results-table.component.css +4 -0
  728. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +29 -24
  729. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +49 -17
  730. package/src/libs/ui/search/src/lib/ui-search.module.ts +19 -10
  731. package/src/libs/ui/widgets/src/index.ts +0 -1
  732. package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +1 -0
  733. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +4 -3
  734. package/src/libs/util/app-config/src/lib/app-config.ts +1 -2
  735. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  736. package/src/libs/util/i18n/src/index.ts +1 -2
  737. package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +4 -3
  738. package/src/libs/util/i18n/src/lib/i18n.constants.ts +39 -29
  739. package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +11 -9
  740. package/src/libs/util/i18n/src/lib/i18n.providers.ts +68 -0
  741. package/src/libs/util/i18n/src/lib/language-codes.ts +67 -2
  742. package/src/libs/util/shared/src/index.ts +2 -1
  743. package/src/libs/util/shared/src/lib/gn-ui-version.ts +8 -0
  744. package/src/libs/util/shared/src/lib/image-fallback.directive.ts +1 -0
  745. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +15 -3
  746. package/src/libs/util/shared/src/lib/links/link-utils.ts +53 -30
  747. package/src/libs/util/shared/src/lib/record.util.ts +114 -0
  748. package/tailwind.base.config.js +3 -0
  749. package/tailwind.base.css +39 -13
  750. package/translations/de.json +86 -24
  751. package/translations/en.json +87 -25
  752. package/translations/es.json +85 -23
  753. package/translations/fr.json +87 -25
  754. package/translations/it.json +85 -24
  755. package/translations/nl.json +85 -23
  756. package/translations/pt.json +85 -23
  757. package/translations/sk.json +85 -23
  758. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +0 -79
  759. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +0 -44
  760. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +0 -75
  761. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +0 -160
  762. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +0 -53
  763. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +0 -2
  764. package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +0 -8
  765. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +0 -87
  766. package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +0 -3
  767. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +0 -18
  768. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +0 -47
  769. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +0 -46
  770. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +0 -106
  771. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +0 -16
  772. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +0 -161
  773. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +0 -31
  774. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +0 -46
  775. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +0 -31
  776. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +0 -37
  777. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +0 -18
  778. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +0 -15
  779. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +0 -1
  780. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +0 -14
  781. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +0 -1
  782. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +0 -31
  783. package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +0 -1
  784. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +0 -43
  785. package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +0 -1
  786. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +0 -17
  787. package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +0 -1
  788. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +0 -10
  789. package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +0 -1
  790. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +0 -7
  791. package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +0 -1
  792. package/libs/feature/editor/src/lib/services/wizard.service.d.ts +0 -33
  793. package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +0 -1
  794. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +0 -3
  795. package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +0 -1
  796. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +0 -9
  797. package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +0 -1
  798. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +0 -11
  799. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +0 -1
  800. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +0 -12
  801. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +0 -1
  802. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +0 -27
  803. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +0 -1
  804. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +0 -8
  805. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +0 -1
  806. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +0 -34
  807. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +0 -1
  808. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +0 -12
  809. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +0 -1
  810. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +0 -15
  811. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +0 -1
  812. package/libs/util/i18n/src/lib/lang.service.d.ts +0 -13
  813. package/libs/util/i18n/src/lib/lang.service.d.ts.map +0 -1
  814. package/libs/util/i18n/src/lib/util-i18n.module.d.ts +0 -12
  815. package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +0 -1
  816. package/libs/util/shared/src/lib/util-shared.module.d.ts +0 -9
  817. package/libs/util/shared/src/lib/util-shared.module.d.ts.map +0 -1
  818. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +0 -1
  819. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +0 -5
  820. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +0 -22
  821. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +0 -93
  822. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +0 -31
  823. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +0 -62
  824. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +0 -206
  825. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +0 -3
  826. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +0 -21
  827. package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +0 -58
  828. package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +0 -10
  829. package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +0 -6
  830. package/src/libs/feature/editor/src/lib/services/wizard.service.ts +0 -105
  831. package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +0 -3
  832. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +0 -4
  833. package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +0 -10
  834. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +0 -27
  835. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +0 -30
  836. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +0 -48
  837. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +0 -61
  838. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -3
  839. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +0 -9
  840. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +0 -15
  841. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -96
  842. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -18
  843. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +0 -25
  844. package/src/libs/util/i18n/src/lib/lang.service.ts +0 -23
  845. package/src/libs/util/i18n/src/lib/util-i18n.module.ts +0 -26
  846. package/src/libs/util/shared/src/lib/util-shared.module.ts +0 -10
  847. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-map-container/form-field-map-container.component.css → multilingual-panel/multilingual-panel.component.css} +0 -0
  848. /package/src/libs/{ui/elements/src/lib/related-record-card/related-record-card.component.css → feature/search/src/lib/results-hits/results-hits.container.component.css} +0 -0
@@ -1,46 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { UtilSharedModule } from '../../../../../libs/util/shared/src';
3
- import { TranslateModule } from '@ngx-translate/core';
4
- import { NgxDropzoneModule } from 'ngx-dropzone';
5
- import { ColorScaleComponent } from './color-scale/color-scale.component';
6
- import { TagInputModule } from 'ngx-chips';
7
- import { FormsModule, ReactiveFormsModule } from '@angular/forms';
8
- import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
9
- import { CommonModule } from '@angular/common';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "@ngx-translate/core";
12
- export class UiWidgetsModule {
13
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiWidgetsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
14
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UiWidgetsModule, declarations: [ColorScaleComponent], imports: [CommonModule, i1.TranslateModule, NgxDropzoneModule,
15
- FormsModule,
16
- ReactiveFormsModule,
17
- TagInputModule,
18
- UtilSharedModule,
19
- MatProgressSpinnerModule] }); }
20
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiWidgetsModule, imports: [CommonModule,
21
- TranslateModule.forChild(),
22
- NgxDropzoneModule,
23
- FormsModule,
24
- ReactiveFormsModule,
25
- TagInputModule,
26
- UtilSharedModule,
27
- MatProgressSpinnerModule] }); }
28
- }
29
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiWidgetsModule, decorators: [{
30
- type: NgModule,
31
- args: [{
32
- declarations: [ColorScaleComponent],
33
- imports: [
34
- CommonModule,
35
- TranslateModule.forChild(),
36
- NgxDropzoneModule,
37
- FormsModule,
38
- ReactiveFormsModule,
39
- TagInputModule,
40
- UtilSharedModule,
41
- MatProgressSpinnerModule,
42
- ],
43
- exports: [],
44
- }]
45
- }] });
46
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidWktd2lkZ2V0cy5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL3dpZGdldHMvc3JjL2xpYi91aS13aWRnZXRzLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFDQUFxQyxDQUFBO0FBQ3RFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUNyRCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxjQUFjLENBQUE7QUFDaEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0scUNBQXFDLENBQUE7QUFDekUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLFdBQVcsQ0FBQTtBQUMxQyxPQUFPLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUE7QUFDakUsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sb0NBQW9DLENBQUE7QUFDN0UsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFBOzs7QUFnQjlDLE1BQU0sT0FBTyxlQUFlOytHQUFmLGVBQWU7Z0hBQWYsZUFBZSxpQkFiWCxtQkFBbUIsYUFFaEMsWUFBWSxzQkFFWixpQkFBaUI7WUFDakIsV0FBVztZQUNYLG1CQUFtQjtZQUNuQixjQUFjO1lBQ2QsZ0JBQWdCO1lBQ2hCLHdCQUF3QjtnSEFJZixlQUFlLFlBWHhCLFlBQVk7WUFDWixlQUFlLENBQUMsUUFBUSxFQUFFO1lBQzFCLGlCQUFpQjtZQUNqQixXQUFXO1lBQ1gsbUJBQW1CO1lBQ25CLGNBQWM7WUFDZCxnQkFBZ0I7WUFDaEIsd0JBQXdCOzs0RkFJZixlQUFlO2tCQWQzQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG1CQUFtQixDQUFDO29CQUNuQyxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixlQUFlLENBQUMsUUFBUSxFQUFFO3dCQUMxQixpQkFBaUI7d0JBQ2pCLFdBQVc7d0JBQ1gsbUJBQW1CO3dCQUNuQixjQUFjO3dCQUNkLGdCQUFnQjt3QkFDaEIsd0JBQXdCO3FCQUN6QjtvQkFDRCxPQUFPLEVBQUUsRUFBRTtpQkFDWiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IFV0aWxTaGFyZWRNb2R1bGUgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvc2hhcmVkL3NyYydcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQgeyBOZ3hEcm9wem9uZU1vZHVsZSB9IGZyb20gJ25neC1kcm9wem9uZSdcbmltcG9ydCB7IENvbG9yU2NhbGVDb21wb25lbnQgfSBmcm9tICcuL2NvbG9yLXNjYWxlL2NvbG9yLXNjYWxlLmNvbXBvbmVudCdcbmltcG9ydCB7IFRhZ0lucHV0TW9kdWxlIH0gZnJvbSAnbmd4LWNoaXBzJ1xuaW1wb3J0IHsgRm9ybXNNb2R1bGUsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3JtcydcbmltcG9ydCB7IE1hdFByb2dyZXNzU3Bpbm5lck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3Byb2dyZXNzLXNwaW5uZXInXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0NvbG9yU2NhbGVDb21wb25lbnRdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFRyYW5zbGF0ZU1vZHVsZS5mb3JDaGlsZCgpLFxuICAgIE5neERyb3B6b25lTW9kdWxlLFxuICAgIEZvcm1zTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgVGFnSW5wdXRNb2R1bGUsXG4gICAgVXRpbFNoYXJlZE1vZHVsZSxcbiAgICBNYXRQcm9ncmVzc1NwaW5uZXJNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtdLFxufSlcbmV4cG9ydCBjbGFzcyBVaVdpZGdldHNNb2R1bGUge31cbiJdfQ==
@@ -1,31 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import { LANG_2_TO_3_MAPPER } from './language-codes';
3
- import { TranslateService } from '@ngx-translate/core';
4
- import * as i0 from "@angular/core";
5
- import * as i1 from "@ngx-translate/core";
6
- export class LangService {
7
- constructor(translate) {
8
- this.translate = translate;
9
- }
10
- get iso2() {
11
- return this.translate.currentLang;
12
- }
13
- get iso3() {
14
- return LANG_2_TO_3_MAPPER[this.iso2];
15
- }
16
- get index() {
17
- return `lang${this.iso3}`;
18
- }
19
- get gnLang() {
20
- return this.iso3 ? 'lang' + this.iso3 : null;
21
- }
22
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LangService, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable }); }
23
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LangService, providedIn: 'root' }); }
24
- }
25
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: LangService, decorators: [{
26
- type: Injectable,
27
- args: [{
28
- providedIn: 'root',
29
- }]
30
- }], ctorParameters: () => [{ type: i1.TranslateService }] });
31
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFuZy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL2kxOG4vc3JjL2xpYi9sYW5nLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUMxQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQTtBQUNyRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTs7O0FBS3RELE1BQU0sT0FBTyxXQUFXO0lBQ3RCLFlBQW9CLFNBQTJCO1FBQTNCLGNBQVMsR0FBVCxTQUFTLENBQWtCO0lBQUcsQ0FBQztJQUVuRCxJQUFJLElBQUk7UUFDTixPQUFPLElBQUksQ0FBQyxTQUFTLENBQUMsV0FBVyxDQUFBO0lBQ25DLENBQUM7SUFDRCxJQUFJLElBQUk7UUFDTixPQUFPLGtCQUFrQixDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsQ0FBQTtJQUN0QyxDQUFDO0lBQ0QsSUFBSSxLQUFLO1FBQ1AsT0FBTyxPQUFPLElBQUksQ0FBQyxJQUFJLEVBQUUsQ0FBQTtJQUMzQixDQUFDO0lBQ0QsSUFBSSxNQUFNO1FBQ1IsT0FBTyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxNQUFNLEdBQUcsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFBO0lBQzlDLENBQUM7K0dBZFUsV0FBVzttSEFBWCxXQUFXLGNBRlYsTUFBTTs7NEZBRVAsV0FBVztrQkFIdkIsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IExBTkdfMl9UT18zX01BUFBFUiB9IGZyb20gJy4vbGFuZ3VhZ2UtY29kZXMnXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSdcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIExhbmdTZXJ2aWNlIHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSB0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UpIHt9XG5cbiAgZ2V0IGlzbzIoKSB7XG4gICAgcmV0dXJuIHRoaXMudHJhbnNsYXRlLmN1cnJlbnRMYW5nXG4gIH1cbiAgZ2V0IGlzbzMoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gTEFOR18yX1RPXzNfTUFQUEVSW3RoaXMuaXNvMl1cbiAgfVxuICBnZXQgaW5kZXgoKTogc3RyaW5nIHtcbiAgICByZXR1cm4gYGxhbmcke3RoaXMuaXNvM31gXG4gIH1cbiAgZ2V0IGduTGFuZygpIHtcbiAgICByZXR1cm4gdGhpcy5pc28zID8gJ2xhbmcnICsgdGhpcy5pc28zIDogbnVsbFxuICB9XG59XG4iXX0=
@@ -1,37 +0,0 @@
1
- import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
2
- import { NgModule } from '@angular/core';
3
- import { TranslateModule, TranslateService } from '@ngx-translate/core';
4
- import { DEFAULT_LANG, LANGUAGE_STORAGE_KEY } from './i18n.constants';
5
- import { I18nInterceptor } from './i18n.interceptor';
6
- import { CommonModule } from '@angular/common';
7
- import * as i0 from "@angular/core";
8
- import * as i1 from "@ngx-translate/core";
9
- export class UtilI18nModule {
10
- constructor(translate) {
11
- translate.setDefaultLang(DEFAULT_LANG);
12
- let storageLang = null;
13
- try {
14
- storageLang = localStorage.getItem(LANGUAGE_STORAGE_KEY);
15
- }
16
- catch (error) {
17
- console.warn(error);
18
- }
19
- translate.use(storageLang || translate.getBrowserLang() || DEFAULT_LANG);
20
- }
21
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilI18nModule, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.NgModule }); }
22
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UtilI18nModule, imports: [HttpClientModule, i1.TranslateModule, CommonModule] }); }
23
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilI18nModule, providers: [
24
- { provide: HTTP_INTERCEPTORS, useClass: I18nInterceptor, multi: true },
25
- ], imports: [HttpClientModule, TranslateModule.forChild(), CommonModule] }); }
26
- }
27
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilI18nModule, decorators: [{
28
- type: NgModule,
29
- args: [{
30
- imports: [HttpClientModule, TranslateModule.forChild(), CommonModule],
31
- exports: [],
32
- providers: [
33
- { provide: HTTP_INTERCEPTORS, useClass: I18nInterceptor, multi: true },
34
- ],
35
- }]
36
- }], ctorParameters: () => [{ type: i1.TranslateService }] });
37
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbC1pMThuLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdXRpbC9pMThuL3NyYy9saWIvdXRpbC1pMThuLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUMxRSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxlQUFlLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTtBQUN2RSxPQUFPLEVBQUUsWUFBWSxFQUFFLG9CQUFvQixFQUFFLE1BQU0sa0JBQWtCLENBQUE7QUFDckUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLG9CQUFvQixDQUFBO0FBQ3BELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTs7O0FBUzlDLE1BQU0sT0FBTyxjQUFjO0lBQ3pCLFlBQVksU0FBMkI7UUFDckMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxZQUFZLENBQUMsQ0FBQTtRQUN0QyxJQUFJLFdBQVcsR0FBRyxJQUFJLENBQUE7UUFDdEIsSUFBSSxDQUFDO1lBQ0gsV0FBVyxHQUFHLFlBQVksQ0FBQyxPQUFPLENBQUMsb0JBQW9CLENBQUMsQ0FBQTtRQUMxRCxDQUFDO1FBQUMsT0FBTyxLQUFLLEVBQUUsQ0FBQztZQUNmLE9BQU8sQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUE7UUFDckIsQ0FBQztRQUNELFNBQVMsQ0FBQyxHQUFHLENBQUMsV0FBVyxJQUFJLFNBQVMsQ0FBQyxjQUFjLEVBQUUsSUFBSSxZQUFZLENBQUMsQ0FBQTtJQUMxRSxDQUFDOytHQVZVLGNBQWM7Z0hBQWQsY0FBYyxZQU5mLGdCQUFnQixzQkFBOEIsWUFBWTtnSEFNekQsY0FBYyxhQUpkO1lBQ1QsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsUUFBUSxFQUFFLGVBQWUsRUFBRSxLQUFLLEVBQUUsSUFBSSxFQUFFO1NBQ3ZFLFlBSlMsZ0JBQWdCLEVBQUUsZUFBZSxDQUFDLFFBQVEsRUFBRSxFQUFFLFlBQVk7OzRGQU16RCxjQUFjO2tCQVAxQixRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLGdCQUFnQixFQUFFLGVBQWUsQ0FBQyxRQUFRLEVBQUUsRUFBRSxZQUFZLENBQUM7b0JBQ3JFLE9BQU8sRUFBRSxFQUFFO29CQUNYLFNBQVMsRUFBRTt3QkFDVCxFQUFFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxRQUFRLEVBQUUsZUFBZSxFQUFFLEtBQUssRUFBRSxJQUFJLEVBQUU7cUJBQ3ZFO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSFRUUF9JTlRFUkNFUFRPUlMsIEh0dHBDbGllbnRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCdcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSwgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQgeyBERUZBVUxUX0xBTkcsIExBTkdVQUdFX1NUT1JBR0VfS0VZIH0gZnJvbSAnLi9pMThuLmNvbnN0YW50cydcbmltcG9ydCB7IEkxOG5JbnRlcmNlcHRvciB9IGZyb20gJy4vaTE4bi5pbnRlcmNlcHRvcidcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0h0dHBDbGllbnRNb2R1bGUsIFRyYW5zbGF0ZU1vZHVsZS5mb3JDaGlsZCgpLCBDb21tb25Nb2R1bGVdLFxuICBleHBvcnRzOiBbXSxcbiAgcHJvdmlkZXJzOiBbXG4gICAgeyBwcm92aWRlOiBIVFRQX0lOVEVSQ0VQVE9SUywgdXNlQ2xhc3M6IEkxOG5JbnRlcmNlcHRvciwgbXVsdGk6IHRydWUgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgVXRpbEkxOG5Nb2R1bGUge1xuICBjb25zdHJ1Y3Rvcih0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UpIHtcbiAgICB0cmFuc2xhdGUuc2V0RGVmYXVsdExhbmcoREVGQVVMVF9MQU5HKVxuICAgIGxldCBzdG9yYWdlTGFuZyA9IG51bGxcbiAgICB0cnkge1xuICAgICAgc3RvcmFnZUxhbmcgPSBsb2NhbFN0b3JhZ2UuZ2V0SXRlbShMQU5HVUFHRV9TVE9SQUdFX0tFWSlcbiAgICB9IGNhdGNoIChlcnJvcikge1xuICAgICAgY29uc29sZS53YXJuKGVycm9yKVxuICAgIH1cbiAgICB0cmFuc2xhdGUudXNlKHN0b3JhZ2VMYW5nIHx8IHRyYW5zbGF0ZS5nZXRCcm93c2VyTGFuZygpIHx8IERFRkFVTFRfTEFORylcbiAgfVxufVxuIl19
@@ -1,18 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { ImageFallbackDirective } from './image-fallback.directive';
4
- import * as i0 from "@angular/core";
5
- export class UtilSharedModule {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UtilSharedModule, declarations: [ImageFallbackDirective], imports: [CommonModule], exports: [ImageFallbackDirective] }); }
8
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilSharedModule, imports: [CommonModule] }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UtilSharedModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- declarations: [ImageFallbackDirective],
14
- imports: [CommonModule],
15
- exports: [ImageFallbackDirective],
16
- }]
17
- }] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXRpbC1zaGFyZWQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL3NoYXJlZC9zcmMvbGliL3V0aWwtc2hhcmVkLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3hDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQTs7QUFPbkUsTUFBTSxPQUFPLGdCQUFnQjsrR0FBaEIsZ0JBQWdCO2dIQUFoQixnQkFBZ0IsaUJBSlosc0JBQXNCLGFBQzNCLFlBQVksYUFDWixzQkFBc0I7Z0hBRXJCLGdCQUFnQixZQUhqQixZQUFZOzs0RkFHWCxnQkFBZ0I7a0JBTDVCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ3RDLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ2xDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJ1xuaW1wb3J0IHsgSW1hZ2VGYWxsYmFja0RpcmVjdGl2ZSB9IGZyb20gJy4vaW1hZ2UtZmFsbGJhY2suZGlyZWN0aXZlJ1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtJbWFnZUZhbGxiYWNrRGlyZWN0aXZlXSxcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtJbWFnZUZhbGxiYWNrRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgVXRpbFNoYXJlZE1vZHVsZSB7fVxuIl19
@@ -1,15 +0,0 @@
1
- import { Geometry } from 'geojson';
2
- import { DatasetSpatialExtent } from '../../../../../../../../../libs/common/domain/src/lib/model/record';
3
- import { MapContext } from '@geospatial-sdk/core';
4
- import { BehaviorSubject, Observable } from 'rxjs';
5
- import * as i0 from "@angular/core";
6
- export declare class FormFieldMapContainerComponent {
7
- set spatialExtents(value: DatasetSpatialExtent[]);
8
- spatialExtents$: BehaviorSubject<DatasetSpatialExtent[]>;
9
- mapContext$: Observable<MapContext>;
10
- error: string;
11
- bboxCoordsToGeometry(bbox: [number, number, number, number]): Geometry;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldMapContainerComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldMapContainerComponent, "gn-ui-form-field-map-container", never, { "spatialExtents": { "alias": "spatialExtents"; "required": false; }; }, {}, never, never, true, never>;
14
- }
15
- //# sourceMappingURL=form-field-map-container.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-map-container.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EAAE,oBAAoB,EAAE,MAAM,oEAAoE,CAAA;AAEzG,OAAO,EAEL,UAAU,EAEX,MAAM,sBAAsB,CAAA;AAE7B,OAAO,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,MAAM,CAAA;;AAGlD,qBAQa,8BAA8B;IACzC,IAAa,cAAc,CAAC,KAAK,EAAE,oBAAoB,EAAE,EAExD;IACD,eAAe,0CAAkD;IACjE,WAAW,EAAE,UAAU,CAAC,UAAU,CAAC,CAwClC;IAED,KAAK,SAAK;IAEV,oBAAoB,CAAC,IAAI,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,GAAG,QAAQ;yCAjD3D,8BAA8B;2CAA9B,8BAA8B;CA8D1C"}
@@ -1,14 +0,0 @@
1
- import { EventEmitter, OnChanges } from '@angular/core';
2
- import { Constraint } from '../../../../../../../../../libs/common/domain/src/lib/model/record';
3
- import * as i0 from "@angular/core";
4
- export declare class FormFieldOpenDataComponent implements OnChanges {
5
- value: Array<Constraint>;
6
- valueChange: EventEmitter<Constraint[]>;
7
- openDataChange: EventEmitter<boolean>;
8
- get isOpenDataLicense(): boolean;
9
- ngOnChanges(): void;
10
- onOpenDataToggled(openData: boolean): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldOpenDataComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldOpenDataComponent, "gn-ui-form-field-open-data", never, { "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "openDataChange": "openDataChange"; }, never, never, true, never>;
13
- }
14
- //# sourceMappingURL=form-field-open-data.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-open-data.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,SAAS,EAEV,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,UAAU,EAAE,MAAM,oEAAoE,CAAA;;AAK/F,qBAQa,0BAA2B,YAAW,SAAS;IACjD,KAAK,EAAE,KAAK,CAAC,UAAU,CAAC,CAAA;IACvB,WAAW,6BAAwC;IACnD,cAAc,wBAA8B;IAEtD,IAAI,iBAAiB,IAAI,OAAO,CAI/B;IAED,WAAW;IAIX,iBAAiB,CAAC,QAAQ,EAAE,OAAO;yCAfxB,0BAA0B;2CAA1B,0BAA0B;CA6BtC"}
@@ -1,31 +0,0 @@
1
- import { AfterViewInit, ElementRef, EventEmitter, OnInit } from '@angular/core';
2
- import { TranslateService } from '@ngx-translate/core';
3
- import { WizardFieldModel } from '../../models/wizard-field.model';
4
- import { WizardService } from '../../services/wizard.service';
5
- import * as i0 from "@angular/core";
6
- export declare class WizardComponent implements OnInit, AfterViewInit {
7
- private wizardService;
8
- private translate;
9
- id: string;
10
- initialConfig: {
11
- configuration: WizardFieldModel[][];
12
- storageKey: string;
13
- };
14
- requiredMsgKey: string;
15
- stepChanges: EventEmitter<number>;
16
- stepsNumber: EventEmitter<number>;
17
- wizardFieldsEl: ElementRef<HTMLElement>;
18
- currentStep: number;
19
- configuration: WizardFieldModel[];
20
- constructor(wizardService: WizardService, translate: TranslateService);
21
- ngOnInit(): void;
22
- ngAfterViewInit(): void;
23
- handlePreviousBtnClick(): void;
24
- handleNextBtnClick(): void;
25
- onStepChange(step: number): void;
26
- private initializeCurrentStep;
27
- private setFocus;
28
- static ɵfac: i0.ɵɵFactoryDeclaration<WizardComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<WizardComponent, "gn-ui-wizard", never, { "id": { "alias": "id"; "required": false; }; "initialConfig": { "alias": "initialConfig"; "required": false; }; "requiredMsgKey": { "alias": "requiredMsgKey"; "required": false; }; }, { "stepChanges": "stepChanges"; "stepsNumber": "stepsNumber"; }, never, never, false, never>;
30
- }
31
- //# sourceMappingURL=wizard.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,MAAM,EAGP,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAEtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAA;;AAE7D,qBAKa,eAAgB,YAAW,MAAM,EAAE,aAAa;IAiBzD,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,SAAS;IAjBV,EAAE,EAAE,MAAM,CAAA;IACV,aAAa,EAAE;QACtB,aAAa,EAAE,gBAAgB,EAAE,EAAE,CAAA;QACnC,UAAU,EAAE,MAAM,CAAA;KACnB,CAAA;IACQ,cAAc,EAAE,MAAM,CAAA;IAErB,WAAW,uBAA6B;IACxC,WAAW,uBAA6B;IAEvB,cAAc,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAElE,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,gBAAgB,EAAE,CAAA;gBAGvB,aAAa,EAAE,aAAa,EAC5B,SAAS,EAAE,gBAAgB;IAGrC,QAAQ,IAAI,IAAI;IAQhB,eAAe;IAIf,sBAAsB;IAMtB,kBAAkB;IAalB,YAAY,CAAC,IAAI,EAAE,MAAM;IAOzB,OAAO,CAAC,qBAAqB;IAK7B,OAAO,CAAC,QAAQ;yCAhEL,eAAe;2CAAf,eAAe;CAwE3B"}
@@ -1,43 +0,0 @@
1
- import { AfterViewInit, ChangeDetectorRef, OnDestroy } from '@angular/core';
2
- import { MatDatepickerInputEvent } from '@angular/material/datepicker';
3
- import { WizardFieldModel } from '../../models/wizard-field.model';
4
- import { WizardFieldType } from '../../models/wizard-field.type';
5
- import { WizardService } from '../../services/wizard.service';
6
- import { DropdownSelectorComponent, TextAreaComponent, TextInputComponent } from '../../../../../../../libs/ui/inputs/src';
7
- import { Subscription } from 'rxjs';
8
- import * as i0 from "@angular/core";
9
- export declare const MY_FORMATS: {
10
- parse: {
11
- dateInput: string;
12
- };
13
- display: {
14
- dateInput: string;
15
- monthYearLabel: string;
16
- dateA11yLabel: string;
17
- monthYearA11yLabel: string;
18
- };
19
- };
20
- export declare class WizardFieldComponent implements AfterViewInit, OnDestroy {
21
- private wizardService;
22
- private cdr;
23
- wizardFieldConfig: WizardFieldModel;
24
- searchText: TextInputComponent;
25
- textArea: TextAreaComponent;
26
- dropdown: DropdownSelectorComponent;
27
- subs: Subscription;
28
- get wizardFieldType(): typeof WizardFieldType;
29
- get dropdownChoices(): any;
30
- get wizardFieldData(): any;
31
- constructor(wizardService: WizardService, cdr: ChangeDetectorRef);
32
- ngAfterViewInit(): void;
33
- ngOnDestroy(): void;
34
- private initializeListeners;
35
- private initializeTextInputListener;
36
- private initializeTextAreaListener;
37
- initializeDateInput(): void;
38
- onDateChange(event: MatDatepickerInputEvent<Date>): void;
39
- private initializeDropdownListener;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<WizardFieldComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<WizardFieldComponent, "gn-ui-wizard-field", never, { "wizardFieldConfig": { "alias": "wizardFieldConfig"; "required": false; }; }, {}, never, never, false, never>;
42
- }
43
- //# sourceMappingURL=wizard-field.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard-field.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAGjB,SAAS,EAEV,MAAM,eAAe,CAAA;AAUtB,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;AAGtE,OAAO,EAAE,gBAAgB,EAAE,MAAM,iCAAiC,CAAA;AAClE,OAAO,EAAE,eAAe,EAAE,MAAM,gCAAgC,CAAA;AAChE,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAA;AAC7D,OAAO,EACL,yBAAyB,EACzB,iBAAiB,EACjB,kBAAkB,EACnB,MAAM,yCAAyC,CAAA;AAChD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAenC,eAAO,MAAM,UAAU;;;;;;;;;;CAUtB,CAAA;AAED,qBAea,oBAAqB,YAAW,aAAa,EAAE,SAAS;IAsCjE,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,GAAG;IAtCJ,iBAAiB,EAAE,gBAAgB,CAAA;IAEnB,UAAU,EAAE,kBAAkB,CAAA;IAChC,QAAQ,EAAE,iBAAiB,CAAA;IAC3B,QAAQ,EAAE,yBAAyB,CAAA;IAE1D,IAAI,eAAqB;IAEzB,IAAI,eAAe,IAAI,OAAO,eAAe,CAE5C;IAED,IAAI,eAAe,IAAI,GAAG,CAEzB;IAED,IAAI,eAAe,QAkBlB;gBAGS,aAAa,EAAE,aAAa,EAC5B,GAAG,EAAE,iBAAiB;IAGhC,eAAe;IAKf,WAAW;IAIX,OAAO,CAAC,mBAAmB;IAqB3B,OAAO,CAAC,2BAA2B;IAWnC,OAAO,CAAC,0BAA0B;IAWlC,mBAAmB;IAYnB,YAAY,CAAC,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC;IAOjD,OAAO,CAAC,0BAA0B;yCAjHvB,oBAAoB;2CAApB,oBAAoB;CAsIhC"}
@@ -1,17 +0,0 @@
1
- import { WizardService } from '../../services/wizard.service';
2
- import { DateService } from '../../../../../../../libs/util/shared/src';
3
- import * as i0 from "@angular/core";
4
- export declare class WizardSummarizeComponent {
5
- private wizardService;
6
- private dateService;
7
- get title(): any;
8
- get abstract(): any;
9
- get tags(): string;
10
- get createdDate(): string;
11
- get scale(): string;
12
- get description(): any;
13
- constructor(wizardService: WizardService, dateService: DateService);
14
- static ɵfac: i0.ɵɵFactoryDeclaration<WizardSummarizeComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<WizardSummarizeComponent, "gn-ui-wizard-summarize", never, {}, {}, never, never, false, never>;
16
- }
17
- //# sourceMappingURL=wizard-summarize.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard-summarize.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,+BAA+B,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,2CAA2C,CAAA;;AAEvE,qBAKa,wBAAwB;IA6CjC,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,WAAW;IA7CrB,IAAI,KAAK,QAER;IAED,IAAI,QAAQ,QAEX;IAED,IAAI,IAAI,IAAI,MAAM,CAQjB;IAED,IAAI,WAAW,WAQd;IAED,IAAI,KAAK,WASR;IAED,IAAI,WAAW,QAEd;gBAGS,aAAa,EAAE,aAAa,EAC5B,WAAW,EAAE,WAAW;yCA9CvB,wBAAwB;2CAAxB,wBAAwB;CAgDpC"}
@@ -1,10 +0,0 @@
1
- import { WizardFieldType } from './wizard-field.type';
2
- export interface WizardFieldModel {
3
- id: string;
4
- label: string;
5
- icon: string;
6
- type: WizardFieldType;
7
- options?: any;
8
- required?: boolean;
9
- }
10
- //# sourceMappingURL=wizard-field.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard-field.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/wizard-field.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAA;AAErD,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAA;IACV,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,eAAe,CAAA;IACrB,OAAO,CAAC,EAAE,GAAG,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB"}
@@ -1,7 +0,0 @@
1
- export declare enum WizardFieldType {
2
- TEXT = 0,
3
- TEXT_AREA = 1,
4
- DATA_PICKER = 2,
5
- DROPDOWN = 3
6
- }
7
- //# sourceMappingURL=wizard-field.type.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard-field.type.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/wizard-field.type.ts"],"names":[],"mappings":"AAAA,oBAAY,eAAe;IACzB,IAAI,IAAA;IACJ,SAAS,IAAA;IACT,WAAW,IAAA;IACX,QAAQ,IAAA;CACT"}
@@ -1,33 +0,0 @@
1
- import { TranslateService } from '@ngx-translate/core';
2
- import { WizardFieldModel } from '../models/wizard-field.model';
3
- import * as i0 from "@angular/core";
4
- export declare class WizardService {
5
- private translateService;
6
- private wizardStep;
7
- private wizardData;
8
- private id;
9
- private storageKey;
10
- configuration: WizardFieldModel[][];
11
- constructor(translateService: TranslateService);
12
- initialize(id: string, options: {
13
- configuration: WizardFieldModel[][];
14
- storageKey: string;
15
- }): void;
16
- getCurrentStep(): number;
17
- getStepConfiguration(): WizardFieldModel[];
18
- getConfiguration(): WizardFieldModel[][];
19
- getConfigurationStepNumber(): number;
20
- getWizardFieldData(fieldId: string): any;
21
- onWizardWizardFieldDataChanged(fieldId: string, data: any): void;
22
- setWizardFieldData(fieldId: string, data: any): void;
23
- save(): void;
24
- onWizardStepChanged(step: number): void;
25
- reset(): void;
26
- private load;
27
- getDataObject(): {
28
- [k: string]: any;
29
- };
30
- static ɵfac: i0.ɵɵFactoryDeclaration<WizardService, never>;
31
- static ɵprov: i0.ɵɵInjectableDeclaration<WizardService>;
32
- }
33
- //# sourceMappingURL=wizard.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"wizard.service.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/services/wizard.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAA;;AAE/D,qBAGa,aAAa;IAOZ,OAAO,CAAC,gBAAgB;IANpC,OAAO,CAAC,UAAU,CAAI;IACtB,OAAO,CAAC,UAAU,CAA8B;IAEhD,OAAO,CAAC,EAAE,CAAQ;IAClB,OAAO,CAAC,UAAU,CAAQ;IAC1B,aAAa,EAAE,gBAAgB,EAAE,EAAE,CAAA;gBACf,gBAAgB,EAAE,gBAAgB;IAEtD,UAAU,CACR,EAAE,EAAE,MAAM,EACV,OAAO,EAAE;QACP,aAAa,EAAE,gBAAgB,EAAE,EAAE,CAAA;QACnC,UAAU,EAAE,MAAM,CAAA;KACnB,GACA,IAAI;IAUP,cAAc,IAAI,MAAM;IAIxB,oBAAoB,IAAI,gBAAgB,EAAE;IAI1C,gBAAgB,IAAI,gBAAgB,EAAE,EAAE;IAIxC,0BAA0B,IAAI,MAAM;IAIpC,kBAAkB,CAAC,OAAO,EAAE,MAAM;IAIlC,8BAA8B,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI;IAIhE,kBAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI;IAKpD,IAAI,IAAI,IAAI;IAeZ,mBAAmB,CAAC,IAAI,EAAE,MAAM;IAOhC,KAAK;IAKL,OAAO,CAAC,IAAI;IAYZ,aAAa;;;yCA7FF,aAAa;6CAAb,aAAa;CAiGzB"}
@@ -1,3 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- export declare const GN_UI_VERSION: InjectionToken<string>;
3
- //# sourceMappingURL=gn-ui-version.token.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"gn-ui-version.token.d.ts","sourceRoot":"","sources":["../../../../../src/libs/feature/record/src/lib/gn-ui-version.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAE9C,eAAO,MAAM,aAAa,wBAA4C,CAAA"}
@@ -1,9 +0,0 @@
1
- import { SearchFacade } from '../state/search.facade';
2
- import * as i0 from "@angular/core";
3
- export declare class ResultsHitsContainerComponent {
4
- facade: SearchFacade;
5
- constructor(facade: SearchFacade);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ResultsHitsContainerComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ResultsHitsContainerComponent, "gn-ui-results-hits", never, {}, {}, never, never, false, never>;
8
- }
9
- //# sourceMappingURL=results-hits.container.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"results-hits.container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;;AAErD,qBAIa,6BAA6B;IACrB,MAAM,EAAE,YAAY;gBAApB,MAAM,EAAE,YAAY;yCAD5B,6BAA6B;2CAA7B,6BAA6B;CAEzC"}
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./figure/figure.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@ngx-translate/core";
5
- import * as i4 from "@ng-icons/core";
6
- export declare class UiDatavizModule {
7
- static ɵfac: i0.ɵɵFactoryDeclaration<UiDatavizModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiDatavizModule, [typeof i1.FigureComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.NgIconsModule], [typeof i1.FigureComponent]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<UiDatavizModule>;
10
- }
11
- //# sourceMappingURL=ui-dataviz.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ui-dataviz.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts"],"names":[],"mappings":";;;;;AAQA,qBAkBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -1,12 +0,0 @@
1
- import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
2
- import * as i0 from "@angular/core";
3
- export declare class RelatedRecordCardComponent {
4
- private readonly baseClasses;
5
- record: CatalogRecord;
6
- extraClass: string;
7
- constructor();
8
- get classList(): string;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<RelatedRecordCardComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<RelatedRecordCardComponent, "gn-ui-related-record-card", never, { "record": { "alias": "record"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, true, never>;
11
- }
12
- //# sourceMappingURL=related-record-card.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"related-record-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAQzF,qBAea,0BAA0B;IACrC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAQ;IAE3B,MAAM,EAAE,aAAa,CAAA;IACrB,UAAU,SAAK;;IAgBxB,IAAI,SAAS,WAEZ;yCAtBU,0BAA0B;2CAA1B,0BAA0B;CAuBtC"}
@@ -1,27 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./avatar/avatar.component";
3
- import * as i2 from "./user-preview/user-preview.component";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@angular/material/tooltip";
6
- import * as i5 from "../../../widgets/src/lib/ui-widgets.module";
7
- import * as i6 from "../../../layout/src/lib/ui-layout.module";
8
- import * as i7 from "@ngx-translate/core";
9
- import * as i8 from "../../../../util/shared/src/lib/util-shared.module";
10
- import * as i9 from "@angular/router";
11
- import * as i10 from "../../../inputs/src/lib/ui-inputs.module";
12
- import * as i11 from "@angular/forms";
13
- import * as i12 from "../../../widgets/src/lib/popover/popover.component";
14
- import * as i13 from "./markdown-parser/markdown-parser.component";
15
- import * as i14 from "./thumbnail/thumbnail.component";
16
- import * as i15 from "./user-feedback-item/time-since.pipe";
17
- import * as i16 from "../../../inputs/src/lib/badge/badge.component";
18
- import * as i17 from "../../../layout/src/lib/max-lines/max-lines.component";
19
- import * as i18 from "../../../inputs/src/lib/text-input/text-input.component";
20
- import * as i19 from "./image-input/image-input.component";
21
- import * as i20 from "./application-banner/application-banner.component";
22
- export declare class UiElementsModule {
23
- static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
24
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.AvatarComponent, typeof i2.UserPreviewComponent], [typeof i3.CommonModule, typeof i4.MatTooltipModule, typeof i5.UiWidgetsModule, typeof i6.UiLayoutModule, typeof i7.TranslateModule, typeof i8.UtilSharedModule, typeof i9.RouterModule, typeof i10.UiInputsModule, typeof i11.FormsModule, typeof i3.NgOptimizedImage, typeof i12.PopoverComponent, typeof i13.MarkdownParserComponent, typeof i14.ThumbnailComponent, typeof i15.TimeSincePipe, typeof i16.BadgeComponent, typeof i17.MaxLinesComponent, typeof i18.TextInputComponent, typeof i19.ImageInputComponent, typeof i20.ApplicationBannerComponent], [typeof i14.ThumbnailComponent, typeof i1.AvatarComponent, typeof i2.UserPreviewComponent, typeof i13.MarkdownParserComponent, typeof i19.ImageInputComponent, typeof i20.ApplicationBannerComponent]>;
25
- static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
26
- }
27
- //# sourceMappingURL=ui-elements.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;AAuBA,qBAqCa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class NavigationButtonComponent {
3
- label: string;
4
- icon: string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<NavigationButtonComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationButtonComponent, "gn-ui-navigation-button", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=navigation-button.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"navigation-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts"],"names":[],"mappings":";AAGA,qBAQa,yBAAyB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;yCAFV,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
@@ -1,34 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
3
- import * as i2 from "./dropdown-multiselect/dropdown-multiselect.component";
4
- import * as i3 from "./viewport-intersector/viewport-intersector.component";
5
- import * as i4 from "./checkbox/checkbox.component";
6
- import * as i5 from "@angular/common";
7
- import * as i6 from "@ngx-translate/core";
8
- import * as i7 from "ngx-dropzone";
9
- import * as i8 from "@angular/forms";
10
- import * as i9 from "ngx-chips";
11
- import * as i10 from "../../../../util/shared/src/lib/util-shared.module";
12
- import * as i11 from "@angular/material/autocomplete";
13
- import * as i12 from "../../../widgets/src/lib/ui-widgets.module";
14
- import * as i13 from "@angular/cdk/overlay";
15
- import * as i14 from "@angular/material/checkbox";
16
- import * as i15 from "@angular/material/tooltip";
17
- import * as i16 from "@angular/material/form-field";
18
- import * as i17 from "@angular/material/input";
19
- import * as i18 from "@angular/material/datepicker";
20
- import * as i19 from "@angular/material/core";
21
- import * as i20 from "./editable-label/editable-label.directive";
22
- import * as i21 from "./text-area/text-area.component";
23
- import * as i22 from "./button/button.component";
24
- import * as i23 from "./dropdown-selector/dropdown-selector.component";
25
- import * as i24 from "./date-range-picker/date-range-picker.component";
26
- import * as i25 from "./check-toggle/check-toggle.component";
27
- import * as i26 from "./badge/badge.component";
28
- import * as i27 from "@ng-icons/core";
29
- export declare class UiInputsModule {
30
- static ɵfac: i0.ɵɵFactoryDeclaration<UiInputsModule, never>;
31
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DragAndDropFileInputComponent, typeof i2.DropdownMultiselectComponent, typeof i3.ViewportIntersectorComponent, typeof i4.CheckboxComponent], [typeof i5.CommonModule, typeof i6.TranslateModule, typeof i7.NgxDropzoneModule, typeof i8.FormsModule, typeof i8.ReactiveFormsModule, typeof i9.TagInputModule, typeof i10.UtilSharedModule, typeof i11.MatAutocompleteModule, typeof i12.UiWidgetsModule, typeof i13.OverlayModule, typeof i14.MatCheckboxModule, typeof i15.MatTooltipModule, typeof i16.MatFormFieldModule, typeof i17.MatInputModule, typeof i18.MatDatepickerModule, typeof i19.MatNativeDateModule, typeof i20.EditableLabelDirective, typeof i21.TextAreaComponent, typeof i22.ButtonComponent, typeof i23.DropdownSelectorComponent, typeof i24.DateRangePickerComponent, typeof i25.CheckToggleComponent, typeof i26.BadgeComponent, typeof i27.NgIcon], [typeof i23.DropdownSelectorComponent, typeof i22.ButtonComponent, typeof i1.DragAndDropFileInputComponent, typeof i21.TextAreaComponent, typeof i2.DropdownMultiselectComponent, typeof i3.ViewportIntersectorComponent, typeof i25.CheckToggleComponent, typeof i4.CheckboxComponent, typeof i24.DateRangePickerComponent, typeof i20.EditableLabelDirective, typeof i26.BadgeComponent]>;
32
- static ɵinj: i0.ɵɵInjectorDeclaration<UiInputsModule>;
33
- }
34
- //# sourceMappingURL=ui-inputs.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,qBAyDa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -1,12 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./sticky-header/sticky-header.component";
3
- import * as i2 from "./anchor-link/anchor-link.directive";
4
- import * as i3 from "@angular/common";
5
- import * as i4 from "@ngx-translate/core";
6
- import * as i5 from "@ng-icons/core";
7
- export declare class UiLayoutModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<UiLayoutModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiLayoutModule, [typeof i1.StickyHeaderComponent, typeof i2.AnchorLinkDirective], [typeof i3.CommonModule, typeof i4.TranslateModule, typeof i5.NgIcon], [typeof i1.StickyHeaderComponent, typeof i2.AnchorLinkDirective]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<UiLayoutModule>;
11
- }
12
- //# sourceMappingURL=ui-layout.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ui-layout.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/layout/src/lib/ui-layout.module.ts"],"names":[],"mappings":";;;;;;AAOA,qBAUa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -1,15 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./color-scale/color-scale.component";
3
- import * as i2 from "@angular/common";
4
- import * as i3 from "@ngx-translate/core";
5
- import * as i4 from "ngx-dropzone";
6
- import * as i5 from "@angular/forms";
7
- import * as i6 from "ngx-chips";
8
- import * as i7 from "../../../../util/shared/src/lib/util-shared.module";
9
- import * as i8 from "@angular/material/progress-spinner";
10
- export declare class UiWidgetsModule {
11
- static ɵfac: i0.ɵɵFactoryDeclaration<UiWidgetsModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiWidgetsModule, [typeof i1.ColorScaleComponent], [typeof i2.CommonModule, typeof i3.TranslateModule, typeof i4.NgxDropzoneModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.TagInputModule, typeof i7.UtilSharedModule, typeof i8.MatProgressSpinnerModule], never>;
13
- static ɵinj: i0.ɵɵInjectorDeclaration<UiWidgetsModule>;
14
- }
15
- //# sourceMappingURL=ui-widgets.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ui-widgets.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/widgets/src/lib/ui-widgets.module.ts"],"names":[],"mappings":";;;;;;;;;AAUA,qBAca,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -1,13 +0,0 @@
1
- import { TranslateService } from '@ngx-translate/core';
2
- import * as i0 from "@angular/core";
3
- export declare class LangService {
4
- private translate;
5
- constructor(translate: TranslateService);
6
- get iso2(): string;
7
- get iso3(): string;
8
- get index(): string;
9
- get gnLang(): string;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<LangService, never>;
11
- static ɵprov: i0.ɵɵInjectableDeclaration<LangService>;
12
- }
13
- //# sourceMappingURL=lang.service.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"lang.service.d.ts","sourceRoot":"","sources":["../../../../../src/libs/util/i18n/src/lib/lang.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAEtD,qBAGa,WAAW;IACV,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,gBAAgB;IAE/C,IAAI,IAAI,WAEP;IACD,IAAI,IAAI,IAAI,MAAM,CAEjB;IACD,IAAI,KAAK,IAAI,MAAM,CAElB;IACD,IAAI,MAAM,WAET;yCAdU,WAAW;6CAAX,WAAW;CAevB"}
@@ -1,12 +0,0 @@
1
- import { TranslateService } from '@ngx-translate/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common/http";
4
- import * as i2 from "@ngx-translate/core";
5
- import * as i3 from "@angular/common";
6
- export declare class UtilI18nModule {
7
- constructor(translate: TranslateService);
8
- static ɵfac: i0.ɵɵFactoryDeclaration<UtilI18nModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<UtilI18nModule, never, [typeof i1.HttpClientModule, typeof i2.TranslateModule, typeof i3.CommonModule], never>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<UtilI18nModule>;
11
- }
12
- //# sourceMappingURL=util-i18n.module.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"util-i18n.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/util/i18n/src/lib/util-i18n.module.ts"],"names":[],"mappings":"AAEA,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;;;;AAKvE,qBAOa,cAAc;gBACb,SAAS,EAAE,gBAAgB;yCAD5B,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAW1B"}
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./image-fallback.directive";
3
- import * as i2 from "@angular/common";
4
- export declare class UtilSharedModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<UtilSharedModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<UtilSharedModule, [typeof i1.ImageFallbackDirective], [typeof i2.CommonModule], [typeof i1.ImageFallbackDirective]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<UtilSharedModule>;
8
- }
9
- //# sourceMappingURL=util-shared.module.d.ts.map