geonetwork-ui 2.4.0-dev.5cc37149 → 2.4.0-dev.614b0d9f

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 (810) hide show
  1. package/esm2022/libs/api/metadata-converter/src/index.mjs +4 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
  4. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +254 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +196 -0
  8. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +46 -0
  9. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +74 -0
  10. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +27 -0
  12. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
  13. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  14. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  15. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +6 -6
  16. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  17. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +17 -29
  18. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +12 -17
  19. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +35 -7
  20. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  21. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +76 -54
  22. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +44 -5
  23. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +99 -32
  24. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +11 -1
  25. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +51 -7
  26. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  27. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  28. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  29. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  30. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  31. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  32. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  33. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  34. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +7 -4
  35. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +6 -6
  36. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  37. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +10 -7
  38. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +40 -50
  39. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  40. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  41. package/esm2022/libs/feature/editor/src/index.mjs +2 -1
  42. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  43. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +10 -5
  44. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  45. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  46. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  47. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  48. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +17 -0
  49. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +80 -0
  50. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +95 -0
  51. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  52. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +147 -0
  53. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
  54. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -40
  55. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
  56. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +79 -0
  57. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  58. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  59. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +103 -0
  60. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
  61. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  62. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
  63. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -68
  64. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
  65. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +45 -44
  66. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  67. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  68. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
  69. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  70. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  71. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  72. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +201 -57
  73. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  74. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  75. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +12 -7
  76. package/esm2022/libs/feature/map/src/index.mjs +2 -9
  77. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
  78. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +9 -15
  79. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
  80. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
  81. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  82. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +20 -19
  83. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +23 -14
  84. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +15 -14
  85. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +18 -13
  86. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +16 -11
  87. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
  88. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +9 -68
  89. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +43 -29
  90. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +43 -18
  91. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
  92. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  93. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -171
  94. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  95. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +21 -17
  96. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +14 -8
  97. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +40 -52
  98. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +4 -2
  99. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  100. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +48 -8
  101. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +6 -2
  102. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +7 -7
  103. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +1 -6
  104. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  105. package/esm2022/libs/ui/elements/src/index.mjs +3 -2
  106. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  107. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  108. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  109. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  110. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -5
  111. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  112. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  113. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  114. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  115. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  116. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +11 -5
  117. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  118. package/esm2022/libs/ui/inputs/src/index.mjs +6 -1
  119. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +24 -7
  120. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
  121. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
  122. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
  123. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
  124. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  125. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  126. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
  127. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +6 -4
  128. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  129. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
  130. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  131. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +4 -13
  132. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  133. package/esm2022/libs/ui/layout/src/index.mjs +3 -1
  134. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
  135. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  136. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  137. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  138. package/esm2022/libs/ui/map/src/index.mjs +4 -3
  139. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +8 -6
  140. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +137 -0
  141. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
  142. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
  143. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  144. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  145. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +33 -13
  146. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  147. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  148. package/esm2022/libs/util/app-config/src/index.mjs +2 -1
  149. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  150. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +27 -0
  151. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  152. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  153. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
  154. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  155. package/esm2022/translations/de.json +107 -12
  156. package/esm2022/translations/en.json +107 -12
  157. package/esm2022/translations/es.json +104 -9
  158. package/esm2022/translations/fr.json +118 -23
  159. package/esm2022/translations/it.json +107 -12
  160. package/esm2022/translations/nl.json +104 -9
  161. package/esm2022/translations/pt.json +104 -9
  162. package/fesm2022/geonetwork-ui.mjs +10873 -8397
  163. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  164. package/libs/api/metadata-converter/src/index.d.ts +3 -0
  165. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  166. package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
  167. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
  168. package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
  169. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
  170. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
  171. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
  172. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
  173. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
  174. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
  175. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
  176. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +20 -0
  177. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
  178. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +9 -0
  179. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
  180. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
  181. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
  182. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
  183. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
  184. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
  185. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
  186. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
  187. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  188. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  189. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  190. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  191. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  192. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  193. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  194. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -2
  195. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  196. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  197. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +12 -6
  198. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  199. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  200. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  201. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +13 -12
  202. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  203. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +59 -0
  204. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  205. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +19 -8
  206. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  207. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  208. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +22 -2
  209. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  210. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +2 -1
  211. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  212. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +9 -7
  213. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  214. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  215. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  216. package/libs/common/domain/src/lib/platform.service.interface.d.ts +16 -0
  217. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  218. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +24 -0
  219. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  220. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  221. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  222. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  223. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  224. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  225. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +2 -1
  226. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  227. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  228. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  229. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +10 -9
  230. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -1
  231. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +13 -20
  232. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  233. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  234. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  235. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  236. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  237. package/libs/feature/editor/src/index.d.ts +1 -0
  238. package/libs/feature/editor/src/index.d.ts.map +1 -1
  239. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  240. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  241. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  242. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  243. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  244. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  245. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  246. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  247. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  248. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  249. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  250. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  251. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  252. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  253. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  254. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  255. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
  256. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
  257. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  258. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  259. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +41 -0
  260. 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 -0
  261. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
  262. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
  263. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
  264. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  265. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  266. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  267. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +15 -0
  268. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  269. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  270. 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 -0
  271. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  272. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  273. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  274. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  275. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  276. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  277. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  278. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.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 +28 -0
  280. 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
  281. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  282. 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
  283. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  284. 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
  285. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -20
  286. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  287. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  288. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  289. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  290. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  291. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  292. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  293. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  294. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  295. package/libs/feature/editor/src/lib/fields.config.d.ts +54 -2
  296. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  297. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +42 -0
  298. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  299. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  300. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  301. package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -3
  302. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  303. package/libs/feature/map/src/index.d.ts +1 -8
  304. package/libs/feature/map/src/index.d.ts.map +1 -1
  305. package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
  306. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  307. package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
  308. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
  309. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
  310. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
  311. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
  312. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
  313. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  314. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  315. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +8 -10
  316. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  317. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  318. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  319. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +3 -3
  320. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  321. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +2 -2
  322. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  323. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +2 -2
  324. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  325. package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
  326. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  327. package/libs/feature/map/src/lib/feature-map.module.d.ts +12 -23
  328. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  329. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
  330. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  331. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +5 -4
  332. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  333. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
  334. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
  335. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  336. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  337. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
  338. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  339. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  340. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  341. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
  342. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  343. package/libs/feature/record/src/lib/feature-record.module.d.ts +13 -11
  344. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  345. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +14 -20
  346. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  347. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  348. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  349. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +15 -4
  350. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  351. package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -0
  352. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  353. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
  354. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
  355. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +9 -10
  356. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  357. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  358. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  359. package/libs/ui/elements/src/index.d.ts +2 -1
  360. package/libs/ui/elements/src/index.d.ts.map +1 -1
  361. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  362. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  363. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  364. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  365. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  366. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  367. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  368. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  369. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  370. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  371. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  372. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  373. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  374. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +8 -6
  375. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  376. package/libs/ui/inputs/src/index.d.ts +5 -0
  377. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  378. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  379. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  380. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  381. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  382. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  383. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  384. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  385. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  386. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  387. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  388. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  389. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
  390. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  391. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
  392. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  393. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
  394. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  395. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  396. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  397. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  398. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  399. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +33 -35
  400. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  401. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  402. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  403. package/libs/ui/layout/src/index.d.ts +2 -0
  404. package/libs/ui/layout/src/index.d.ts.map +1 -1
  405. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  406. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  407. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +1 -1
  408. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  409. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  410. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  411. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  412. package/libs/ui/map/src/index.d.ts +3 -2
  413. package/libs/ui/map/src/index.d.ts.map +1 -1
  414. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
  415. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  416. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
  417. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
  418. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
  419. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
  420. package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
  421. package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
  422. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  423. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  424. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  425. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  426. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +11 -5
  427. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  428. package/libs/ui/widgets/src/index.d.ts +1 -0
  429. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  430. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  431. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  432. package/libs/util/app-config/src/index.d.ts +1 -0
  433. package/libs/util/app-config/src/index.d.ts.map +1 -1
  434. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  435. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  436. package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
  437. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
  438. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  439. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  440. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  441. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  442. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  443. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  444. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  445. package/package.json +5 -3
  446. package/src/libs/api/metadata-converter/src/index.ts +3 -0
  447. package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
  448. package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
  449. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +378 -0
  450. package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
  451. package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
  452. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +370 -0
  453. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +95 -0
  454. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
  455. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
  456. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
  457. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +97 -0
  458. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
  459. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/update-frequency.mapper.ts +67 -0
  460. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
  461. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +68 -0
  462. package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
  463. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +272 -0
  464. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
  465. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +6 -2
  466. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +38 -13
  467. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +6 -2
  468. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +110 -0
  469. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +85 -0
  470. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +73 -0
  471. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  472. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  473. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +5 -6
  474. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  475. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +21 -43
  476. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -16
  477. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +85 -17
  478. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  479. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +203 -157
  480. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +50 -7
  481. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +163 -59
  482. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +12 -1
  483. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +90 -15
  484. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +29 -1
  485. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +10 -8
  486. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  487. package/src/libs/common/domain/src/lib/platform.service.interface.ts +30 -0
  488. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +32 -0
  489. package/src/libs/common/fixtures/src/index.ts +5 -1
  490. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  491. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  492. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  493. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  494. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  495. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  496. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  497. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  498. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  499. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  500. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  501. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  502. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  503. package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
  504. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
  505. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  506. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
  507. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  508. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
  509. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  510. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  511. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  512. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -15
  513. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  514. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  515. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  516. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  517. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +5 -1
  518. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  519. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  520. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +6 -2
  521. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  522. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
  523. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +38 -78
  524. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  525. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  526. package/src/libs/feature/editor/src/index.ts +1 -0
  527. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  528. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +28 -6
  529. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  530. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  531. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  532. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  533. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  534. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +18 -0
  535. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  536. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
  537. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +47 -0
  538. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +132 -0
  539. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  540. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  541. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
  542. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +66 -0
  543. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +210 -0
  544. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
  545. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
  546. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
  547. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +44 -45
  548. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  549. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  550. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -0
  551. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +86 -0
  552. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
  553. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  554. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  555. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  556. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  557. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  558. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -0
  559. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +122 -0
  560. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
  561. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  562. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  563. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  564. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
  565. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
  566. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  567. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
  568. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -86
  569. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  570. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
  571. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  572. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +112 -70
  573. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +52 -44
  574. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  575. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -9
  576. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  577. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
  578. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  579. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  580. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  581. package/src/libs/feature/editor/src/lib/fields.config.ts +240 -57
  582. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +65 -0
  583. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  584. package/src/libs/feature/editor/src/lib/services/editor.service.ts +22 -7
  585. package/src/libs/feature/map/src/index.ts +1 -8
  586. package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
  587. package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
  588. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
  589. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
  590. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  591. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +23 -22
  592. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +22 -11
  593. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  594. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +21 -19
  595. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  596. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +17 -10
  597. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  598. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +17 -10
  599. package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
  600. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -41
  601. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
  602. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +2 -2
  603. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +39 -6
  604. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.css +0 -0
  605. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
  606. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
  607. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  608. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -232
  609. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  610. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +29 -20
  611. package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -3
  612. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +4 -4
  613. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +45 -72
  614. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +5 -1
  615. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  616. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +4 -1
  617. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +66 -3
  618. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  619. package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -0
  620. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
  621. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -3
  622. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  623. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  624. package/src/libs/ui/elements/src/index.ts +2 -1
  625. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  626. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  627. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  628. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  629. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  630. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  631. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  632. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
  633. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  634. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  635. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  636. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  637. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  638. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  639. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +8 -2
  640. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  641. package/src/libs/ui/inputs/src/index.ts +5 -0
  642. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
  643. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
  644. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +19 -4
  645. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +12 -3
  646. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
  647. package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
  648. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  649. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +14 -6
  650. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
  651. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  652. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +28 -23
  653. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
  654. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  655. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  656. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
  657. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
  658. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
  659. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
  660. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
  661. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +5 -1
  662. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +4 -3
  663. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +0 -1
  664. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -2
  665. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  666. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  667. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  668. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  669. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -6
  670. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  671. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  672. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  673. package/src/libs/ui/layout/src/index.ts +2 -0
  674. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
  675. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
  676. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
  677. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  678. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  679. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  680. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  681. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +15 -18
  682. package/src/libs/ui/map/src/index.ts +3 -2
  683. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
  684. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
  685. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
  686. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +203 -0
  687. package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
  688. package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
  689. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  690. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  691. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  692. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  693. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +24 -3
  694. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +31 -18
  695. package/src/libs/ui/widgets/src/index.ts +1 -0
  696. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  697. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  698. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  699. package/src/libs/util/app-config/src/index.ts +1 -0
  700. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  701. package/src/libs/util/app-config/src/lib/map-layers.ts +31 -0
  702. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  703. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  704. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  705. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  706. package/tailwind.base.config.js +1 -0
  707. package/tailwind.base.css +51 -7
  708. package/translations/de.json +107 -12
  709. package/translations/en.json +107 -12
  710. package/translations/es.json +104 -9
  711. package/translations/fr.json +118 -23
  712. package/translations/it.json +107 -12
  713. package/translations/nl.json +104 -9
  714. package/translations/pt.json +104 -9
  715. package/translations/sk.json +105 -10
  716. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  717. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  718. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  719. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  720. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  721. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
  722. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
  723. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
  724. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
  725. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
  726. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
  727. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
  728. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
  729. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
  730. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
  731. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
  732. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  733. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
  734. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
  735. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  736. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
  737. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  738. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  739. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  740. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  741. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  742. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  743. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  744. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  745. package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
  746. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
  747. package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
  748. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
  749. package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
  750. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
  751. package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
  752. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
  753. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
  754. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
  755. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
  756. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
  757. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
  758. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
  759. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
  760. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
  761. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
  762. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
  763. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
  764. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
  765. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
  766. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
  767. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  768. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  769. package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
  770. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
  771. package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
  772. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
  773. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  774. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  775. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  776. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  777. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  778. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  779. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  780. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  781. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  782. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  783. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  784. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  785. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  786. package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
  787. package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
  788. package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
  789. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
  790. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
  791. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
  792. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
  793. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
  794. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
  795. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
  796. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
  797. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
  798. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
  799. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  800. package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
  801. package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
  802. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  803. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → generic-keywords/generic-keywords.component.css} +0 -0
  804. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → import-record/import-record.component.css} +0 -0
  805. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  806. /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.css} +0 -0
  807. /package/src/libs/feature/{map/src/lib/map-context/component/map-context.component.css → editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css} +0 -0
  808. /package/src/libs/{ui/map/src/lib/components/map/map.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  809. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
  810. /package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +0 -0
@@ -1,11 +1,13 @@
1
- import { ElementRef, Renderer2, AfterViewInit, EventEmitter } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, Renderer2 } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare class EditableLabelDirective implements AfterViewInit {
3
+ export declare class EditableLabelDirective implements OnChanges, AfterViewInit {
4
4
  private el;
5
5
  private renderer;
6
+ gnUiEditableLabel?: string;
6
7
  editableLabelChanged: EventEmitter<string>;
7
- gnUiEditableLabel?: boolean;
8
+ appendedInput: HTMLInputElement;
8
9
  constructor(el: ElementRef, renderer: Renderer2);
10
+ ngOnChanges(): void;
9
11
  ngAfterViewInit(): void;
10
12
  static ɵfac: i0.ɵɵFactoryDeclaration<EditableLabelDirective, never>;
11
13
  static ɵdir: i0.ɵɵDirectiveDeclaration<EditableLabelDirective, "[gnUiEditableLabel]", never, { "gnUiEditableLabel": { "alias": "gnUiEditableLabel"; "required": false; }; }, { "editableLabelChanged": "editableLabelChanged"; }, never, never, true, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"editable-label.directive.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EACV,SAAS,EACT,aAAa,EACb,YAAY,EAGb,MAAM,eAAe,CAAA;;AAEtB,qBAIa,sBAAuB,YAAW,aAAa;IAI9C,OAAO,CAAC,EAAE;IAAc,OAAO,CAAC,QAAQ;IAH1C,oBAAoB,uBAA6B;IAClD,iBAAiB,CAAC,EAAE,OAAO,CAAA;gBAEhB,EAAE,EAAE,UAAU,EAAU,QAAQ,EAAE,SAAS;IAE/D,eAAe;yCANJ,sBAAsB;2CAAtB,sBAAsB;CAiClC"}
1
+ {"version":3,"file":"editable-label.directive.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,UAAU,EACV,YAAY,EAEZ,SAAS,EAET,SAAS,EACV,MAAM,eAAe,CAAA;;AAEtB,qBAIa,sBAAuB,YAAW,SAAS,EAAE,aAAa;IAMzD,OAAO,CAAC,EAAE;IAAc,OAAO,CAAC,QAAQ;IAL3C,iBAAiB,CAAC,EAAE,MAAM,CAAA;IACzB,oBAAoB,uBAA6B;IAE3D,aAAa,EAAE,gBAAgB,CAAA;gBAEX,EAAE,EAAE,UAAU,EAAU,QAAQ,EAAE,SAAS;IAE/D,WAAW;IAUX,eAAe;yCAlBJ,sBAAsB;2CAAtB,sBAAsB;CA8ClC"}
@@ -0,0 +1,24 @@
1
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FileInputComponent {
4
+ private cd;
5
+ maxSizeMB: number;
6
+ uploadProgress?: number;
7
+ fileChange: EventEmitter<File>;
8
+ urlChange: EventEmitter<string>;
9
+ uploadCancel: EventEmitter<void>;
10
+ dragFilesOver: boolean;
11
+ get isUploadInProgress(): boolean;
12
+ constructor(cd: ChangeDetectorRef);
13
+ getPrimaryText(): "input.file.uploadProgressLabel" | "input.file.selectFileLabel";
14
+ getSecondaryText(): "input.file.uploadProgressCancel" | "input.file.dropFileLabel";
15
+ handleDragFilesOver(dragFilesOver: boolean): void;
16
+ handleDropFiles(files: File[]): void;
17
+ handleFileInput(event: Event): void;
18
+ handleUrlChange(url: string): void;
19
+ handleSecondaryTextClick(event: Event): void;
20
+ handleCancel(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileInputComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileInputComponent, "gn-ui-file-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; }, never, never, true, never>;
23
+ }
24
+ //# sourceMappingURL=file-input.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"file-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/file-input/file-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAStB,qBAgBa,kBAAkB;IAajB,OAAO,CAAC,EAAE;IAZb,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAE/D,aAAa,UAAQ;IAErB,IAAI,kBAAkB,YAErB;gBAEmB,EAAE,EAAE,iBAAiB;IAEzC,cAAc;IAOd,gBAAgB;IAOhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAK1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAM7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAI5B,eAAe,CAAC,GAAG,EAAE,MAAM;IAI3B,wBAAwB,CAAC,KAAK,EAAE,KAAK;IAOrC,YAAY;yCAvDD,kBAAkB;2CAAlB,kBAAkB;CA0D9B"}
@@ -18,9 +18,9 @@ export declare class ImageInputComponent {
18
18
  showUrlInput: boolean;
19
19
  downloadError: boolean;
20
20
  showAltTextInput: boolean;
21
- urlInputValue?: string;
22
21
  lastUploadType?: 'file' | 'url';
23
22
  lastUploadContent?: string | File;
23
+ get isUploadInProgress(): boolean;
24
24
  constructor(http: HttpClient, cd: ChangeDetectorRef);
25
25
  getPrimaryText(): "input.image.uploadErrorLabel" | "input.image.uploadProgressLabel" | "input.image.selectFileLabel";
26
26
  getSecondaryText(): "input.image.uploadErrorRetry" | "input.image.uploadProgressCancel" | "input.image.dropFileLabel";
@@ -28,14 +28,13 @@ export declare class ImageInputComponent {
28
28
  handleDropFiles(files: File[]): void;
29
29
  handleFileInput(event: Event): void;
30
30
  displayUrlInput(): void;
31
- handleUrlChange(event: Event): void;
32
- downloadUrl(): Promise<void>;
33
- handleSecondaryTextClick(): void;
31
+ downloadUrl(url: string): Promise<void>;
32
+ handleSecondaryTextClick(event: Event): void;
34
33
  handleCancel(): void;
35
34
  handleRetry(): void;
36
35
  handleDelete(): void;
37
36
  toggleAltTextInput(): void;
38
- handleAltTextChange(event: Event): void;
37
+ handleAltTextChange(altText: string): void;
39
38
  private filterTypeImage;
40
39
  private resizeAndEmit;
41
40
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageInputComponent, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"image-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/image-input/image-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAUtB,qBAea,mBAAmB;IAqBlB,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,EAAE;IApBvC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACrD,MAAM,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAC/C,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IAElE,aAAa,UAAQ;IACrB,YAAY,UAAQ;IACpB,aAAa,UAAQ;IACrB,gBAAgB,UAAQ;IAExB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,cAAc,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IAC/B,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;gBAEb,IAAI,EAAE,UAAU,EAAU,EAAE,EAAE,iBAAiB;IAEnE,cAAc;IAUd,gBAAgB;IAUhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAO1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAS7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAQ5B,eAAe;IAKf,eAAe,CAAC,KAAK,EAAE,KAAK;IAKtB,WAAW;IAgCjB,wBAAwB;IAQxB,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,KAAK,EAAE,KAAK;IAKhC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCAvJV,mBAAmB;2CAAnB,mBAAmB;CA8J/B"}
1
+ {"version":3,"file":"image-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/image-input/image-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAYtB,qBAiBa,mBAAmB;IAwBlB,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,EAAE;IAvBvC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACrD,MAAM,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAC/C,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IAElE,aAAa,UAAQ;IACrB,YAAY,UAAQ;IACpB,aAAa,UAAQ;IACrB,gBAAgB,UAAQ;IAExB,cAAc,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IAC/B,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEjC,IAAI,kBAAkB,YAErB;gBAEmB,IAAI,EAAE,UAAU,EAAU,EAAE,EAAE,iBAAiB;IAEnE,cAAc;IAUd,gBAAgB;IAUhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAO1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAS7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAQ5B,eAAe;IAKT,WAAW,CAAC,GAAG,EAAE,MAAM;IAiC7B,wBAAwB,CAAC,KAAK,EAAE,KAAK;IASrC,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,OAAO,EAAE,MAAM;IAInC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCAtJV,mBAAmB;2CAAnB,mBAAmB;CA6J/B"}
@@ -8,6 +8,6 @@ export declare class SearchInputComponent {
8
8
  handleChange($event: any): void;
9
9
  clear(): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "gn-ui-search-input", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "gn-ui-search-input", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
12
12
  }
13
13
  //# sourceMappingURL=search-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/search-input/search-input.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAwB,MAAM,MAAM,CAAA;;AAEpD,qBAKa,oBAAoB;IACtB,KAAK,SAAK;IACV,WAAW,SAAK;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAEnE,YAAY,CAAC,MAAM,KAAA;IAKnB,KAAK;yCAXM,oBAAoB;2CAApB,oBAAoB;CAehC"}
1
+ {"version":3,"file":"search-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/search-input/search-input.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAwB,OAAO,EAAE,MAAM,MAAM,CAAA;;AAIpD,qBAOa,oBAAoB;IACtB,KAAK,SAAK;IACV,WAAW,SAAK;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAEnE,YAAY,CAAC,MAAM,KAAA;IAKnB,KAAK;yCAXM,oBAAoB;2CAApB,oBAAoB;CAehC"}
@@ -0,0 +1,16 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type SwitchToggleOption = {
4
+ label: string;
5
+ checked: boolean;
6
+ };
7
+ export declare class SwitchToggleComponent {
8
+ options: SwitchToggleOption[];
9
+ ariaLabel?: string;
10
+ extraClasses?: string;
11
+ selectedValue: EventEmitter<SwitchToggleOption>;
12
+ onChange(selectedOption: SwitchToggleOption): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchToggleComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwitchToggleComponent, "gn-ui-switch-toggle", never, { "options": { "alias": "options"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "extraClasses": { "alias": "extraClasses"; "required": false; }; }, { "selectedValue": "selectedValue"; }, never, never, true, never>;
15
+ }
16
+ //# sourceMappingURL=switch-toggle.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"switch-toggle.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,OAAO,CAAA;CACjB,CAAA;AAED,qBAQa,qBAAqB;IACvB,OAAO,EAAE,kBAAkB,EAAE,CAAA;IAC7B,SAAS,CAAC,SAAK;IACf,YAAY,CAAC,SAAK;IACjB,aAAa,mCAAyC;IAEhE,QAAQ,CAAC,cAAc,EAAE,kBAAkB;yCANhC,qBAAqB;2CAArB,qBAAqB;CAajC"}
@@ -2,8 +2,6 @@ import { AfterViewInit } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TextAreaComponent implements AfterViewInit {
5
- private readonly baseClasses;
6
- private readonly disabledClasses;
7
5
  value: string;
8
6
  disabled: boolean;
9
7
  extraClass: string;
@@ -12,8 +10,6 @@ export declare class TextAreaComponent implements AfterViewInit {
12
10
  rawChange: Subject<string>;
13
11
  valueChange: import("rxjs").Observable<string>;
14
12
  input: any;
15
- constructor();
16
- get classList(): string;
17
13
  ngAfterViewInit(): void;
18
14
  checkRequired(value: any): void;
19
15
  handleChange($event: any): void;
@@ -1 +1 @@
1
- {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAMa,iBAAkB,YAAW,aAAa;IACrD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAQ;IACpC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAQ;IAE/B,KAAK,SAAK;IACV,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;;IAoBzB,IAAI,SAAS,WAIZ;IAED,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCAlDR,iBAAiB;2CAAjB,iBAAiB;CAuD7B"}
1
+ {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAI9B,qBAOa,iBAAkB,YAAW,aAAa;IAC5C,KAAK,SAAK;IACV,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACf,WAAW,SAAK;IAChB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCAvBR,iBAAiB;2CAAjB,iBAAiB;CA4B7B"}
@@ -2,20 +2,18 @@ import { AfterViewInit } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TextInputComponent implements AfterViewInit {
5
- private readonly baseClass;
6
5
  value: string;
7
6
  extraClass: string;
8
- hint: string;
7
+ placeholder: string;
9
8
  required: boolean;
10
9
  disabled: boolean;
11
10
  rawChange: Subject<string>;
12
11
  valueChange: import("rxjs").Observable<string>;
13
12
  input: any;
14
- get classList(): string;
15
13
  ngAfterViewInit(): void;
16
14
  checkRequired(value: any): void;
17
15
  handleChange($event: any): void;
18
16
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
20
18
  }
21
19
  //# sourceMappingURL=text-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-input/text-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAKa,kBAAmB,YAAW,aAAa;IACtD,OAAO,CAAC,QAAQ,CAAC,SAAS,CASf;IAEF,KAAK,SAAK;IACV,UAAU,SAAK;IACf,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,UAAQ;IAChB,QAAQ,EAAE,OAAO,CAAA;IAC1B,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAC/C,KAAK,MAAA;IAEzB,IAAI,SAAS,WAEZ;IAED,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCApCR,kBAAkB;2CAAlB,kBAAkB;CAyC9B"}
1
+ {"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-input/text-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAOa,kBAAmB,YAAW,aAAa;IAC7C,KAAK,SAAK;IACV,UAAU,SAAK;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAChB,QAAQ,EAAE,OAAO,CAAA;IAC1B,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAC/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCArBR,kBAAkB;2CAAlB,kBAAkB;CA0B9B"}
@@ -1,41 +1,39 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./text-input/text-input.component";
3
- import * as i2 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
4
- import * as i3 from "./chips-input/chips-input.component";
5
- import * as i4 from "./navigation-button/navigation-button.component";
6
- import * as i5 from "./star-toggle/star-toggle.component";
7
- import * as i6 from "./dropdown-multiselect/dropdown-multiselect.component";
8
- import * as i7 from "./viewport-intersector/viewport-intersector.component";
9
- import * as i8 from "./copy-text-button/copy-text-button.component";
10
- import * as i9 from "./checkbox/checkbox.component";
11
- import * as i10 from "./search-input/search-input.component";
12
- import * as i11 from "@angular/common";
13
- import * as i12 from "@ngx-translate/core";
14
- import * as i13 from "ngx-dropzone";
15
- import * as i14 from "@angular/forms";
16
- import * as i15 from "ngx-chips";
17
- import * as i16 from "../../../../util/shared/src/lib/util-shared.module";
18
- import * as i17 from "@angular/material/autocomplete";
19
- import * as i18 from "@angular/material/icon";
20
- import * as i19 from "../../../widgets/src/lib/ui-widgets.module";
21
- import * as i20 from "@angular/cdk/overlay";
22
- import * as i21 from "@angular/material/checkbox";
23
- import * as i22 from "@angular/material/tooltip";
24
- import * as i23 from "@angular/material/form-field";
25
- import * as i24 from "@angular/material/input";
26
- import * as i25 from "@angular/material/datepicker";
27
- import * as i26 from "@angular/material/core";
28
- import * as i27 from "./editable-label/editable-label.directive";
29
- import * as i28 from "./text-area/text-area.component";
30
- import * as i29 from "./button/button.component";
31
- import * as i30 from "./image-input/image-input.component";
32
- import * as i31 from "./dropdown-selector/dropdown-selector.component";
33
- import * as i32 from "./date-range-picker/date-range-picker.component";
34
- import * as i33 from "./check-toggle/check-toggle.component";
35
- import * as i34 from "./badge/badge.component";
2
+ import * as i1 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
3
+ import * as i2 from "./chips-input/chips-input.component";
4
+ import * as i3 from "./navigation-button/navigation-button.component";
5
+ import * as i4 from "./star-toggle/star-toggle.component";
6
+ import * as i5 from "./dropdown-multiselect/dropdown-multiselect.component";
7
+ import * as i6 from "./viewport-intersector/viewport-intersector.component";
8
+ import * as i7 from "./copy-text-button/copy-text-button.component";
9
+ import * as i8 from "./checkbox/checkbox.component";
10
+ import * as i9 from "@angular/common";
11
+ import * as i10 from "@ngx-translate/core";
12
+ import * as i11 from "ngx-dropzone";
13
+ import * as i12 from "@angular/forms";
14
+ import * as i13 from "ngx-chips";
15
+ import * as i14 from "../../../../util/shared/src/lib/util-shared.module";
16
+ import * as i15 from "@angular/material/autocomplete";
17
+ import * as i16 from "@angular/material/icon";
18
+ import * as i17 from "../../../widgets/src/lib/ui-widgets.module";
19
+ import * as i18 from "@angular/cdk/overlay";
20
+ import * as i19 from "@angular/material/checkbox";
21
+ import * as i20 from "@angular/material/tooltip";
22
+ import * as i21 from "@angular/material/form-field";
23
+ import * as i22 from "@angular/material/input";
24
+ import * as i23 from "@angular/material/datepicker";
25
+ import * as i24 from "@angular/material/core";
26
+ import * as i25 from "./editable-label/editable-label.directive";
27
+ import * as i26 from "./text-area/text-area.component";
28
+ import * as i27 from "./button/button.component";
29
+ import * as i28 from "./image-input/image-input.component";
30
+ import * as i29 from "./dropdown-selector/dropdown-selector.component";
31
+ import * as i30 from "./date-range-picker/date-range-picker.component";
32
+ import * as i31 from "./check-toggle/check-toggle.component";
33
+ import * as i32 from "./badge/badge.component";
36
34
  export declare class UiInputsModule {
37
35
  static ɵfac: i0.ɵɵFactoryDeclaration<UiInputsModule, never>;
38
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.TextInputComponent, typeof i2.DragAndDropFileInputComponent, typeof i3.ChipsInputComponent, typeof i4.NavigationButtonComponent, typeof i5.StarToggleComponent, typeof i6.DropdownMultiselectComponent, typeof i7.ViewportIntersectorComponent, typeof i8.CopyTextButtonComponent, typeof i9.CheckboxComponent, typeof i10.SearchInputComponent], [typeof i11.CommonModule, typeof i12.TranslateModule, typeof i13.NgxDropzoneModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.TagInputModule, typeof i16.UtilSharedModule, typeof i17.MatAutocompleteModule, typeof i18.MatIconModule, typeof i19.UiWidgetsModule, typeof i20.OverlayModule, typeof i21.MatCheckboxModule, typeof i22.MatTooltipModule, typeof i23.MatFormFieldModule, typeof i24.MatInputModule, typeof i25.MatDatepickerModule, typeof i26.MatNativeDateModule, typeof i27.EditableLabelDirective, typeof i28.TextAreaComponent, typeof i29.ButtonComponent, typeof i30.ImageInputComponent, typeof i31.DropdownSelectorComponent, typeof i32.DateRangePickerComponent, typeof i33.CheckToggleComponent, typeof i34.BadgeComponent], [typeof i31.DropdownSelectorComponent, typeof i29.ButtonComponent, typeof i1.TextInputComponent, typeof i2.DragAndDropFileInputComponent, typeof i28.TextAreaComponent, typeof i3.ChipsInputComponent, typeof i4.NavigationButtonComponent, typeof i5.StarToggleComponent, typeof i6.DropdownMultiselectComponent, typeof i7.ViewportIntersectorComponent, typeof i33.CheckToggleComponent, typeof i8.CopyTextButtonComponent, typeof i9.CheckboxComponent, typeof i10.SearchInputComponent, typeof i32.DateRangePickerComponent, typeof i27.EditableLabelDirective, typeof i30.ImageInputComponent, typeof i34.BadgeComponent]>;
36
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DragAndDropFileInputComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent], [typeof i9.CommonModule, typeof i10.TranslateModule, typeof i11.NgxDropzoneModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.TagInputModule, typeof i14.UtilSharedModule, typeof i15.MatAutocompleteModule, typeof i16.MatIconModule, typeof i17.UiWidgetsModule, typeof i18.OverlayModule, typeof i19.MatCheckboxModule, typeof i20.MatTooltipModule, typeof i21.MatFormFieldModule, typeof i22.MatInputModule, typeof i23.MatDatepickerModule, typeof i24.MatNativeDateModule, typeof i25.EditableLabelDirective, typeof i26.TextAreaComponent, typeof i27.ButtonComponent, typeof i28.ImageInputComponent, typeof i29.DropdownSelectorComponent, typeof i30.DateRangePickerComponent, typeof i31.CheckToggleComponent, typeof i32.BadgeComponent], [typeof i29.DropdownSelectorComponent, typeof i27.ButtonComponent, typeof i1.DragAndDropFileInputComponent, typeof i26.TextAreaComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i31.CheckToggleComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent, typeof i30.DateRangePickerComponent, typeof i25.EditableLabelDirective, typeof i28.ImageInputComponent, typeof i32.BadgeComponent]>;
39
37
  static ɵinj: i0.ɵɵInjectorDeclaration<UiInputsModule>;
40
38
  }
41
39
  //# sourceMappingURL=ui-inputs.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCA,qBA6Da,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
1
+ {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA,qBAyDa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -0,0 +1,18 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UrlInputComponent {
5
+ private cd;
6
+ value: string;
7
+ extraClass: string;
8
+ placeholder: string;
9
+ disabled: boolean;
10
+ rawChange: Subject<string>;
11
+ valueChange: import("rxjs").Observable<string>;
12
+ constructor(cd: ChangeDetectorRef);
13
+ handleInput(): void;
14
+ handleChange(element: HTMLInputElement): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
17
+ }
18
+ //# sourceMappingURL=url-input.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"url-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/url-input/url-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAA4B,MAAM,eAAe,CAAA;AAK3E,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAOa,iBAAiB;IAQhB,OAAO,CAAC,EAAE;IAPb,KAAK,SAAK;IACV,UAAU,SAAK;IACf,WAAW,SAAa;IACxB,QAAQ,EAAE,OAAO,CAAA;IAC1B,SAAS,kBAAwB;IACvB,WAAW,oCAA0C;gBAE3C,EAAE,EAAE,iBAAiB;IAEzC,WAAW;IAIX,YAAY,CAAC,OAAO,EAAE,gBAAgB;yCAd3B,iBAAiB;2CAAjB,iBAAiB;CAkB7B"}
@@ -8,5 +8,7 @@ export * from './lib/interactive-table/interactive-table-column/interactive-tabl
8
8
  export * from './lib/interactive-table/interactive-table.component';
9
9
  export * from './lib/sticky-header/sticky-header.component';
10
10
  export * from './lib/block-list/block-list.component';
11
+ export * from './lib/sortable-list/sortable-list.component';
12
+ export * from './lib/modal-dialog/modal-dialog.component';
11
13
  export * from './lib/ui-layout.module';
12
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,iEAAiE,CAAA;AAC/E,cAAc,mDAAmD,CAAA;AACjE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qCAAqC,CAAA;AACnD,cAAc,qFAAqF,CAAA;AACnG,cAAc,qDAAqD,CAAA;AACnE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,wBAAwB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/layout/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yCAAyC,CAAA;AACvD,cAAc,mCAAmC,CAAA;AACjD,cAAc,iEAAiE,CAAA;AAC/E,cAAc,mDAAmD,CAAA;AACjE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qCAAqC,CAAA;AACnD,cAAc,qFAAqF,CAAA;AACnG,cAAc,qDAAqD,CAAA;AACnE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,6CAA6C,CAAA;AAC3D,cAAc,2CAA2C,CAAA;AACzD,cAAc,wBAAwB,CAAA"}
@@ -1,7 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class FormFieldWrapperComponent {
3
- label: string;
4
- hint: string;
3
+ label?: string;
4
+ hint?: string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldWrapperComponent, never>;
6
6
  static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldWrapperComponent, "gn-ui-form-field-wrapper", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; }, {}, never, ["[form-field-interaction]", "*"], true, never>;
7
7
  }
@@ -1 +1 @@
1
- {"version":3,"file":"form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts"],"names":[],"mappings":";AAIA,qBAQa,yBAAyB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;yCAFV,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
1
+ {"version":3,"file":"form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts"],"names":[],"mappings":";AAKA,qBAQa,yBAAyB;IAC3B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;yCAFX,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
@@ -6,7 +6,7 @@ export declare class InteractiveTableColumnComponent {
6
6
  grow: boolean;
7
7
  sortable: boolean;
8
8
  activeSort: 'asc' | 'desc' | null;
9
- sortChange: EventEmitter<"asc" | "desc">;
9
+ sortChange: EventEmitter<"desc" | "asc">;
10
10
  handleSortChange(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<InteractiveTableColumnComponent, never>;
12
12
  static ɵcmp: i0.ɵɵComponentDeclaration<InteractiveTableColumnComponent, "gn-ui-interactive-table-column", never, { "grow": { "alias": "grow"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "activeSort": { "alias": "activeSort"; "required": false; }; }, { "sortChange": "sortChange"; }, ["header", "cell"], never, true, never>;
@@ -0,0 +1,20 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { MatDialogRef } from '@angular/material/dialog';
3
+ import * as i0 from "@angular/core";
4
+ export interface ModalDialogData {
5
+ title: string;
6
+ body: TemplateRef<unknown>;
7
+ bodyContext: unknown;
8
+ confirmText: string;
9
+ cancelText: string;
10
+ }
11
+ export declare class ModalDialogComponent {
12
+ dialogRef: MatDialogRef<ModalDialogComponent>;
13
+ data: ModalDialogData;
14
+ constructor(dialogRef: MatDialogRef<ModalDialogComponent>, data: ModalDialogData);
15
+ onConfirm(): void;
16
+ onCancel(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalDialogComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalDialogComponent, "gn-ui-modal-dialog", never, {}, {}, never, never, true, never>;
19
+ }
20
+ //# sourceMappingURL=modal-dialog.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"modal-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,WAAW,EACZ,MAAM,eAAe,CAAA;AAEtB,OAAO,EAGL,YAAY,EACb,MAAM,0BAA0B,CAAA;;AAGjC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IAC1B,WAAW,EAAE,OAAO,CAAA;IACpB,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAQa,oBAAoB;IAEtB,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC;IACpB,IAAI,EAAE,eAAe;gBAD9C,SAAS,EAAE,YAAY,CAAC,oBAAoB,CAAC,EACpB,IAAI,EAAE,eAAe;IAGvD,SAAS;IAIT,QAAQ;yCAVG,oBAAoB;2CAApB,oBAAoB;CAahC"}
@@ -0,0 +1,14 @@
1
+ import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
+ import { EventEmitter, TemplateRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SortableListComponent {
5
+ elementTemplate: TemplateRef<unknown>;
6
+ items: unknown[];
7
+ itemsOrderChange: EventEmitter<unknown[]>;
8
+ drop(event: CdkDragDrop<string[]>): void;
9
+ removeItem(index: number): void;
10
+ trackByFn(index: number): number;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SortableListComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elementTemplate": { "alias": "elementTemplate"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "itemsOrderChange": "itemsOrderChange"; }, never, never, true, never>;
13
+ }
14
+ //# sourceMappingURL=sortable-list.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sortable-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,WAAW,EAIZ,MAAM,wBAAwB,CAAA;AAE/B,OAAO,EAGL,YAAY,EAGZ,WAAW,EACZ,MAAM,eAAe,CAAA;;AAItB,qBAea,qBAAqB;IACvB,eAAe,EAAE,WAAW,CAAC,OAAO,CAAC,CAAA;IACrC,KAAK,EAAE,OAAO,EAAE,CAAA;IACf,gBAAgB,0BAAgC;IAE1D,IAAI,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,CAAC;IAKjC,UAAU,CAAC,KAAK,EAAE,MAAM;IAKxB,SAAS,CAAC,KAAK,EAAE,MAAM;yCAfZ,qBAAqB;2CAArB,qBAAqB;CAkBjC"}
@@ -1,4 +1,5 @@
1
- export * from './lib/ui-map.module';
2
- export * from './lib/components/map/map.component';
1
+ export * from './lib/components/map-container/map-container.component';
2
+ export * from './lib/components/map-container/map-settings.token';
3
3
  export * from './lib/components/feature-detail/feature-detail.component';
4
+ export * from './lib/map-utils';
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA;AACnC,cAAc,oCAAoC,CAAA;AAClD,cAAc,0DAA0D,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/map/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,wDAAwD,CAAA;AACtE,cAAc,mDAAmD,CAAA;AACjE,cAAc,0DAA0D,CAAA;AACxE,cAAc,iBAAiB,CAAA"}
@@ -1,10 +1,9 @@
1
- import Feature from 'ol/Feature';
2
- import { Geometry } from 'ol/geom';
1
+ import type { Feature } from 'geojson';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class FeatureDetailComponent {
5
- feature: Feature<Geometry>;
4
+ feature: Feature;
6
5
  get properties(): string[];
7
6
  static ɵfac: i0.ɵɵFactoryDeclaration<FeatureDetailComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailComponent, "gn-ui-feature-detail", never, { "feature": { "alias": "feature"; "required": false; }; }, {}, never, never, false, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureDetailComponent, "gn-ui-feature-detail", never, { "feature": { "alias": "feature"; "required": false; }; }, {}, never, never, true, never>;
9
8
  }
10
9
  //# sourceMappingURL=feature-detail.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"feature-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts"],"names":[],"mappings":"AACA,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;;AAIlC,qBAMa,sBAAsB;IACxB,OAAO,EAAE,OAAO,CAAC,QAAQ,CAAC,CAAA;IAEnC,IAAI,UAAU,aAIb;yCAPU,sBAAsB;2CAAtB,sBAAsB;CAQlC"}
1
+ {"version":3,"file":"feature-detail.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAItC,qBAQa,sBAAsB;IACxB,OAAO,EAAE,OAAO,CAAA;IAEzB,IAAI,UAAU,aAKb;yCARU,sBAAsB;2CAAtB,sBAAsB;CASlC"}
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { Extent, MapContext, MapContextLayer } from '@geospatial-sdk/core';
4
+ import type OlMap from 'ol/Map';
5
+ import type { Feature } from 'geojson';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MapContainerComponent implements AfterViewInit, OnChanges {
8
+ private doNotUseDefaultBasemap;
9
+ private basemapLayers;
10
+ private mapViewConstraints;
11
+ context: MapContext | null;
12
+ _featuresClick: EventEmitter<Feature[]>;
13
+ get featuresClick(): EventEmitter<Feature<import("geojson").Geometry, {
14
+ [name: string]: any;
15
+ }>[]>;
16
+ _featuresHover: EventEmitter<Feature[]>;
17
+ get featuresHover(): EventEmitter<Feature<import("geojson").Geometry, {
18
+ [name: string]: any;
19
+ }>[]>;
20
+ _mapClick: EventEmitter<[number, number]>;
21
+ get mapClick(): EventEmitter<[number, number]>;
22
+ container: ElementRef;
23
+ displayMessage$: Observable<boolean>;
24
+ olMap: OlMap;
25
+ constructor(doNotUseDefaultBasemap: boolean, basemapLayers: MapContextLayer[], mapViewConstraints: {
26
+ maxZoom?: number;
27
+ maxExtent?: Extent;
28
+ });
29
+ private olMapResolver;
30
+ openlayersMap: Promise<OlMap>;
31
+ ngAfterViewInit(): Promise<void>;
32
+ ngOnChanges(changes: SimpleChanges): Promise<void>;
33
+ processContext(context: MapContext): MapContext;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<MapContainerComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<MapContainerComponent, "gn-ui-map-container", never, { "context": { "alias": "context"; "required": false; }; }, { "featuresClick": "featuresClick"; "featuresHover": "featuresHover"; "mapClick": "mapClick"; }, never, never, true, never>;
36
+ }
37
+ //# sourceMappingURL=map-container.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-container.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/map-container/map-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAGb,UAAU,EACV,YAAY,EAGZ,SAAS,EAET,aAAa,EAEd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAoB,UAAU,EAAa,MAAM,MAAM,CAAA;AAK9D,OAAO,EAEL,MAAM,EAON,UAAU,EACV,eAAe,EAGhB,MAAM,sBAAsB,CAAA;AAM7B,OAAO,KAAK,KAAK,MAAM,QAAQ,CAAA;AAC/B,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAA;;AAkBtC,qBAQa,qBAAsB,YAAW,aAAa,EAAE,SAAS;IAoD9B,OAAO,CAAC,sBAAsB;IAC1C,OAAO,CAAC,aAAa;IAE7C,OAAO,CAAC,kBAAkB;IAtDnB,OAAO,EAAE,UAAU,GAAG,IAAI,CAAA;IAGnC,cAAc,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,IAAc,aAAa;;UAa1B;IACD,cAAc,EAAE,YAAY,CAAC,OAAO,EAAE,CAAC,CAAA;IACvC,IAAc,aAAa;;UAa1B;IACD,SAAS,EAAE,YAAY,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;IACzC,IAAc,QAAQ,mCAUrB;IAEiB,SAAS,EAAE,UAAU,CAAA;IACvC,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,KAAK,EAAE,KAAK,CAAA;gBAGkC,sBAAsB,EAAE,OAAO,EAC3C,aAAa,EAAE,eAAe,EAAE,EAExD,kBAAkB,EAAE;QAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;QAChB,SAAS,CAAC,EAAE,MAAM,CAAA;KACnB;IAGH,OAAO,CAAC,aAAa,CAAA;IACrB,aAAa,iBAEX;IAEI,eAAe;IAuBf,WAAW,CAAC,OAAO,EAAE,aAAa;IAWxC,cAAc,CAAC,OAAO,EAAE,UAAU,GAAG,UAAU;yCApGpC,qBAAqB;2CAArB,qBAAqB;CA0IjC"}
@@ -0,0 +1,18 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import { Extent, MapContextLayer } from '@geospatial-sdk/core';
3
+ export declare const DO_NOT_USE_DEFAULT_BASEMAP: InjectionToken<boolean>;
4
+ export declare const BASEMAP_LAYERS: InjectionToken<MapContextLayer[]>;
5
+ export declare const MAP_VIEW_CONSTRAINTS: InjectionToken<{
6
+ maxZoom?: number;
7
+ maxExtent?: Extent;
8
+ }>;
9
+ export declare const VECTOR_STYLE_DEFAULT: InjectionToken<{
10
+ fill: {
11
+ color: string;
12
+ };
13
+ stroke: {
14
+ color: string;
15
+ width: number;
16
+ };
17
+ }>;
18
+ //# sourceMappingURL=map-settings.token.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-settings.token.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAC9C,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAE9D,eAAO,MAAM,0BAA0B,yBAGtC,CAAA;AACD,eAAO,MAAM,cAAc,mCAG1B,CAAA;AACD,eAAO,MAAM,oBAAoB;cACrB,MAAM;;EAIhB,CAAA;AACF,eAAO,MAAM,oBAAoB;;;;;;;;EAK/B,CAAA"}
@@ -0,0 +1,7 @@
1
+ import Collection from 'ol/Collection';
2
+ import { DragPan, Interaction, MouseWheelZoom } from 'ol/interaction';
3
+ import MapBrowserEvent from 'ol/MapBrowserEvent';
4
+ export declare function prioritizePageScroll(interactions: Collection<Interaction>): void;
5
+ export declare function dragPanCondition(this: DragPan, event: MapBrowserEvent<PointerEvent>): boolean;
6
+ export declare function mouseWheelZoomCondition(this: MouseWheelZoom, event: MapBrowserEvent<UIEvent>): boolean;
7
+ //# sourceMappingURL=map-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-utils.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/map/src/lib/map-utils.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,eAAe,CAAA;AACtC,OAAO,EAAY,OAAO,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAC/E,OAAO,eAAe,MAAM,oBAAoB,CAAA;AAQhD,wBAAgB,oBAAoB,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC,QAqBzE;AAED,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,EACb,KAAK,EAAE,eAAe,CAAC,YAAY,CAAC,WAQrC;AAED,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,cAAc,EACpB,KAAK,EAAE,eAAe,CAAC,OAAO,CAAC,WAMhC"}
@@ -1,5 +1,5 @@
1
1
  import { ModelBlock, ModelItem } from '../facets.model';
2
- export declare const BLOCK_MODEL_FIXTURE: ModelBlock;
3
- export declare const EMPTY_BLOCK_MODEL_FIXTURE: ModelBlock;
4
- export declare const FACET_ITEM_FIXTURE: ModelItem;
2
+ export declare const blockModelFixture: () => ModelBlock;
3
+ export declare const emptyBlockModelFixture: () => ModelBlock;
4
+ export declare const itemModelFixture: () => ModelItem;
5
5
  //# sourceMappingURL=aggregations-model-response.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"aggregations-model-response.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEvD,eAAO,MAAM,mBAAmB,EAAE,UA+BjC,CAAA;AACD,eAAO,MAAM,yBAAyB,EAAE,UASvC,CAAA;AAED,eAAO,MAAM,kBAAkB,EAAE,SAMhC,CAAA"}
1
+ {"version":3,"file":"aggregations-model-response.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAA;AAEvD,eAAO,MAAM,iBAAiB,QAAO,UA+BnC,CAAA;AAEF,eAAO,MAAM,sBAAsB,QAAO,UASxC,CAAA;AAEF,eAAO,MAAM,gBAAgB,QAAO,SAMlC,CAAA"}
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MatDialog } from '@angular/material/dialog';
3
+ import { MatMenuTrigger } from '@angular/material/menu';
4
+ import { TranslateService } from '@ngx-translate/core';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ActionMenuComponent {
7
+ dialog: MatDialog;
8
+ private translateService;
9
+ canDuplicate: boolean;
10
+ canDelete: boolean;
11
+ duplicate: EventEmitter<void>;
12
+ delete: EventEmitter<void>;
13
+ trigger: MatMenuTrigger;
14
+ constructor(dialog: MatDialog, translateService: TranslateService);
15
+ openMenu(): void;
16
+ openDeleteConfirmationDialog(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionMenuComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionMenuComponent, "gn-ui-action-menu", never, { "canDuplicate": { "alias": "canDuplicate"; "required": false; }; "canDelete": { "alias": "canDelete"; "required": false; }; }, { "duplicate": "duplicate"; "delete": "delete"; }, never, never, true, never>;
19
+ }
20
+ //# sourceMappingURL=action-menu.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action-menu.component.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,YAAY,EAIb,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,SAAS,EAAmB,MAAM,0BAA0B,CAAA;AAErE,OAAO,EAAiB,cAAc,EAAE,MAAM,wBAAwB,CAAA;AAGtE,OAAO,EAAmB,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAEvE,qBAca,mBAAmB;IASrB,MAAM,EAAE,SAAS;IACxB,OAAO,CAAC,gBAAgB;IATjB,YAAY,EAAE,OAAO,CAAA;IACrB,SAAS,EAAE,OAAO,CAAA;IACjB,SAAS,qBAA2B;IACpC,MAAM,qBAA2B;IAEhB,OAAO,EAAE,cAAc,CAAA;gBAGzC,MAAM,EAAE,SAAS,EAChB,gBAAgB,EAAE,gBAAgB;IAG5C,QAAQ;IAIR,4BAA4B;yCAjBjB,mBAAmB;2CAAnB,mBAAmB;CA6C/B"}