geonetwork-ui 2.4.0-dev.e8fc61cb → 2.4.0-dev.e97caaf2

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 (516) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +7 -5
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +30 -2
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +23 -1
  8. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +10 -3
  9. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +31 -3
  10. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +2 -1
  11. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +3 -1
  12. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +12 -2
  13. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +19 -5
  14. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  15. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  16. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  17. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  18. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  19. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  20. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  21. package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +1 -1
  22. package/esm2022/libs/feature/catalog/src/index.mjs +2 -1
  23. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +1 -1
  24. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +6 -6
  25. package/esm2022/libs/feature/catalog/src/lib/organization-url.token.mjs +4 -0
  26. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  27. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  28. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +8 -3
  29. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  30. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  31. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  32. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  33. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +29 -0
  34. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +78 -0
  35. package/esm2022/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.mjs +96 -0
  36. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +164 -0
  37. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +19 -39
  38. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +10 -8
  39. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +101 -0
  40. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  41. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +28 -0
  42. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +10 -6
  43. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +11 -11
  44. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  45. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +111 -5
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +49 -52
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +16 -14
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +37 -43
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +1 -2
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  51. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  52. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  53. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  54. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +175 -59
  55. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  56. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  57. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +8 -3
  58. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  59. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +6 -5
  60. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +8 -5
  61. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +6 -7
  62. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +8 -7
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +7 -6
  64. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -26
  65. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +29 -13
  66. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +10 -5
  67. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  68. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  69. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  70. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +8 -12
  71. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +2 -1
  72. package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +1 -1
  73. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +9 -2
  74. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +8 -1
  75. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  76. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +46 -7
  77. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +8 -3
  78. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +4 -1
  79. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  80. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +5 -5
  81. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +5 -2
  82. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +5 -8
  83. package/esm2022/libs/ui/elements/src/index.mjs +2 -2
  84. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  85. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  86. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +5 -3
  87. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -3
  88. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  89. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -6
  90. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  91. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  92. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  93. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +24 -5
  94. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +6 -10
  95. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -11
  96. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  97. package/esm2022/libs/ui/inputs/src/index.mjs +2 -1
  98. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
  99. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  100. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +17 -14
  101. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  102. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +6 -21
  103. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  104. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +3 -7
  105. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  106. package/esm2022/libs/ui/layout/src/index.mjs +2 -1
  107. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +3 -3
  108. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  109. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +71 -0
  110. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +1 -1
  111. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +3 -3
  112. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  113. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +28 -8
  114. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  115. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  116. package/esm2022/translations/de.json +132 -35
  117. package/esm2022/translations/en.json +106 -9
  118. package/esm2022/translations/es.json +105 -8
  119. package/esm2022/translations/fr.json +118 -21
  120. package/esm2022/translations/it.json +106 -9
  121. package/esm2022/translations/nl.json +105 -8
  122. package/esm2022/translations/pt.json +105 -8
  123. package/fesm2022/geonetwork-ui.mjs +5384 -3445
  124. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  125. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  126. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  127. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  128. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  129. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  130. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  131. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +8 -1
  132. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  133. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  134. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  135. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -1
  136. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  137. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
  138. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  139. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +7 -1
  140. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  141. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -1
  142. package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -1
  143. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  144. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +3 -1
  145. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  146. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  147. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  148. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +3 -1
  149. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  150. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +1 -0
  151. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  152. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  153. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  154. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -1
  155. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  156. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +17 -0
  157. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  158. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  159. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +1 -1
  160. package/libs/feature/catalog/src/index.d.ts +1 -0
  161. package/libs/feature/catalog/src/index.d.ts.map +1 -1
  162. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  163. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  164. package/libs/feature/catalog/src/lib/organization-url.token.d.ts +3 -0
  165. package/libs/feature/catalog/src/lib/organization-url.token.d.ts.map +1 -0
  166. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  167. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  168. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  169. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  170. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  171. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  172. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  173. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  174. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  175. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  176. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  177. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  178. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  179. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +12 -0
  180. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  181. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +32 -0
  182. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  183. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts +27 -0
  184. package/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.d.ts.map +1 -0
  185. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +44 -0
  186. 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
  187. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +8 -19
  188. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  189. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  190. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  191. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +22 -0
  192. 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
  193. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  194. 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
  195. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +13 -0
  196. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  197. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +4 -3
  198. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -1
  199. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -4
  200. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  201. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  202. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  203. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +23 -0
  204. 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
  205. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +15 -15
  206. 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
  207. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  208. 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
  209. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +16 -20
  210. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  211. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +0 -1
  212. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  213. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +6 -7
  214. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  215. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  216. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  217. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  218. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  219. package/libs/feature/editor/src/lib/fields.config.d.ts +46 -2
  220. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  221. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +36 -0
  222. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  223. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  224. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  225. package/libs/feature/editor/src/lib/services/editor.service.d.ts +3 -2
  226. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  227. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  228. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  229. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +1 -1
  230. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  231. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  232. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  233. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +1 -1
  234. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  235. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
  236. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  237. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
  238. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  239. package/libs/feature/map/src/lib/feature-map.module.d.ts +16 -21
  240. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  241. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +1 -1
  242. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  243. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  244. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  245. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  246. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  247. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  248. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  249. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  250. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  251. package/libs/feature/router/src/lib/default/constants.d.ts +1 -0
  252. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  253. package/libs/feature/router/src/lib/default/router.config.d.ts +1 -0
  254. package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -1
  255. package/libs/feature/router/src/lib/default/router.service.d.ts +1 -0
  256. package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -1
  257. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -0
  258. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  259. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +14 -4
  260. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  261. package/libs/feature/search/src/lib/state/search.facade.d.ts +2 -0
  262. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  263. package/libs/feature/search/src/lib/state/selectors.d.ts +1 -0
  264. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  265. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  266. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +2 -2
  267. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +2 -1
  268. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -1
  269. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +1 -2
  270. package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -1
  271. package/libs/ui/elements/src/index.d.ts +1 -1
  272. package/libs/ui/elements/src/index.d.ts.map +1 -1
  273. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  274. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  275. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  276. package/libs/ui/elements/src/lib/error/error.component.d.ts +3 -1
  277. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  278. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  279. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  280. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  281. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +5 -1
  282. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  283. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +5 -10
  284. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  285. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +17 -15
  286. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  287. package/libs/ui/inputs/src/index.d.ts +1 -0
  288. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  289. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  290. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  291. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  292. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  293. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +3 -4
  294. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  295. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +17 -0
  296. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  297. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  298. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  299. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  300. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  301. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +34 -35
  302. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  303. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  304. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  305. package/libs/ui/layout/src/index.d.ts +1 -0
  306. package/libs/ui/layout/src/index.d.ts.map +1 -1
  307. package/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.d.ts +2 -2
  308. package/libs/ui/layout/src/lib/max-lines/max-lines.component.d.ts.map +1 -0
  309. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  310. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  311. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  312. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +9 -3
  313. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  314. package/libs/ui/widgets/src/index.d.ts +1 -0
  315. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  316. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  317. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  318. package/package.json +1 -1
  319. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +6 -1
  320. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +5 -1
  321. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +37 -12
  322. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +5 -1
  323. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  324. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  325. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  326. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +6 -2
  327. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +72 -2
  328. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  329. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +70 -1
  330. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +13 -5
  331. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +42 -2
  332. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +1 -0
  333. package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +3 -1
  334. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  335. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +69 -27
  336. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  337. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -1
  338. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +1 -0
  339. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  340. package/src/libs/common/domain/src/lib/platform.service.interface.ts +9 -1
  341. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +22 -0
  342. package/src/libs/common/fixtures/src/index.ts +2 -0
  343. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  344. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  345. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +38 -0
  346. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +8 -0
  347. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  348. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  349. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  350. package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +1 -1
  351. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  352. package/src/libs/feature/catalog/src/index.ts +1 -0
  353. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +0 -1
  354. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -1
  355. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +2 -2
  356. package/src/libs/feature/catalog/src/lib/organization-url.token.ts +6 -0
  357. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  358. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  359. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +17 -2
  360. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  361. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  362. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  363. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  364. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +27 -0
  365. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
  366. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +0 -0
  367. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  368. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +89 -0
  369. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +2 -1
  370. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +74 -31
  371. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -0
  372. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +76 -0
  373. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +249 -0
  374. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -17
  375. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +18 -49
  376. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  377. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css +0 -0
  378. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +4 -0
  379. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +128 -0
  380. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  381. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  382. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  383. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  384. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +5 -0
  385. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +33 -0
  386. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +2 -2
  387. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +9 -3
  388. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +2 -2
  389. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +13 -7
  390. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  391. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  392. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +15 -1
  393. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +156 -1
  394. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +9 -2
  395. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +59 -70
  396. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  397. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +105 -70
  398. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +44 -43
  399. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +0 -1
  400. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -11
  401. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +19 -7
  402. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  403. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  404. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  405. package/src/libs/feature/editor/src/lib/fields.config.ts +211 -60
  406. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +53 -0
  407. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  408. package/src/libs/feature/editor/src/lib/services/editor.service.ts +15 -4
  409. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  410. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +5 -1
  411. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -0
  412. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  413. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -7
  414. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  415. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +5 -0
  416. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  417. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +6 -1
  418. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -15
  419. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +24 -1
  420. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -4
  421. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  422. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  423. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  424. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  425. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +42 -31
  426. package/src/libs/feature/router/src/lib/default/constants.ts +1 -0
  427. package/src/libs/feature/router/src/lib/default/router.config.ts +1 -0
  428. package/src/libs/feature/router/src/lib/default/router.service.ts +13 -1
  429. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +9 -1
  430. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  431. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +3 -1
  432. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +57 -3
  433. package/src/libs/feature/search/src/lib/state/search.facade.ts +11 -0
  434. package/src/libs/feature/search/src/lib/state/selectors.ts +7 -0
  435. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  436. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +8 -6
  437. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +2 -2
  438. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +2 -0
  439. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +11 -3
  440. package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +3 -7
  441. package/src/libs/ui/elements/src/index.ts +1 -1
  442. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  443. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  444. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  445. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  446. package/src/libs/ui/elements/src/lib/error/error.component.html +30 -6
  447. package/src/libs/ui/elements/src/lib/error/error.component.ts +2 -0
  448. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +4 -1
  449. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +2 -1
  450. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  451. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  452. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  453. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  454. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  455. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +1 -1
  456. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +22 -1
  457. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +3 -10
  458. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +7 -7
  459. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -6
  460. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  461. package/src/libs/ui/inputs/src/index.ts +1 -0
  462. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
  463. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  464. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +0 -0
  465. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +85 -0
  466. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +91 -0
  467. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +49 -49
  468. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +15 -13
  469. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +31 -0
  470. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
  471. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +38 -0
  472. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  473. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +2 -27
  474. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  475. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  476. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
  477. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  478. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  479. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  480. package/src/libs/ui/layout/src/index.ts +1 -0
  481. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
  482. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
  483. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.css +0 -0
  484. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.html +1 -0
  485. package/src/libs/ui/{elements → layout}/src/lib/max-lines/max-lines.component.ts +9 -5
  486. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -1
  487. package/src/libs/ui/map/src/lib/ui-map.module.ts +1 -1
  488. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  489. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  490. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  491. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +15 -1
  492. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +26 -12
  493. package/src/libs/ui/widgets/src/index.ts +1 -0
  494. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  495. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  496. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  497. package/tailwind.base.css +18 -5
  498. package/translations/de.json +132 -35
  499. package/translations/en.json +106 -9
  500. package/translations/es.json +105 -8
  501. package/translations/fr.json +118 -21
  502. package/translations/it.json +106 -9
  503. package/translations/nl.json +105 -8
  504. package/translations/pt.json +105 -8
  505. package/translations/sk.json +107 -10
  506. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  507. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  508. package/esm2022/libs/ui/elements/src/lib/max-lines/max-lines.component.mjs +0 -69
  509. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  510. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  511. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  512. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  513. package/libs/ui/elements/src/lib/max-lines/max-lines.component.d.ts.map +0 -1
  514. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  515. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  516. /package/src/libs/{ui/elements/src/lib/max-lines/max-lines.component.css → feature/editor/src/lib/components/contact-card/contact-card.component.css} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"results-table-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-table/results-table-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAU,MAAM,eAAe,CAAA;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;;AAIjI,qBAOa,8BAA8B;IAWvC,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,iBAAiB;IAbjB,WAAW,8BAAoC;IAEzD,QAAQ,6CAA6B;IACrC,gBAAgB,2CAAoD;IACpE,OAAO,qGAA4B;IAEnC,QAAQ,WAAY,aAAa,KAAG,OAAO,CACqB;gBAGtD,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAAE,0BAA0B;IAGvD,iBAAiB,CAAC,IAAI,EAAE,OAAO;IAI/B,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,MAAM;IAIrD,2BAA2B,CAAC,OAAO,EAAE,aAAa,EAAE,EAAE,QAAQ,EAAE,OAAO;yCAzB5D,8BAA8B;2CAA9B,8BAA8B;CAgC1C"}
1
+ {"version":3,"file":"results-table-container.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/results-table/results-table-container.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAE,SAAS,EAAU,MAAM,eAAe,CAAA;AAC1E,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,gBAAgB,EAAE,MAAM,2CAA2C,CAAA;AAC5E,OAAO,EAAE,aAAa,EAAE,MAAM,iCAAiC,CAAA;AAC/D,OAAO,EAAE,0BAA0B,EAAE,MAAM,sFAAsF,CAAA;AAGjI,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;AACnC,OAAO,EAAE,oBAAoB,EAAE,MAAM,kDAAkD,CAAA;AACvF,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAEtD,qBAOa,8BAA+B,YAAW,SAAS;IAc5D,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,iBAAiB;IACzB,OAAO,CAAC,oBAAoB;IAC5B,OAAO,CAAC,gBAAgB;IAlBhB,WAAW,8BAAoC;IAC/C,eAAe,8BAAoC;IAE7D,YAAY,eAAqB;IAEjC,QAAQ,6CAA6B;IACrC,gBAAgB,2CAAoD;IACpE,OAAO,qGAA4B;IAEnC,QAAQ,WAAY,aAAa,KAAG,OAAO,CACqB;gBAGtD,YAAY,EAAE,YAAY,EAC1B,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAClC,iBAAiB,EAAE,0BAA0B,EAC7C,oBAAoB,EAAE,oBAAoB,EAC1C,gBAAgB,EAAE,gBAAgB;IAG5C,iBAAiB,CAAC,IAAI,EAAE,OAAO;IAI/B,qBAAqB,CAAC,IAAI,EAAE,OAAO;IAI7B,kBAAkB,CAAC,IAAI,EAAE,OAAO;IAsCtC,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,GAAG,MAAM;IAIrD,2BAA2B,CAAC,OAAO,EAAE,aAAa,EAAE,EAAE,QAAQ,EAAE,OAAO;IAQvE,WAAW;yCAhFA,8BAA8B;2CAA9B,8BAA8B;CAmF1C"}
@@ -12,6 +12,7 @@ export declare class SearchFacade {
12
12
  layout$: Observable<string>;
13
13
  sortBy$: Observable<SortByField>;
14
14
  isLoading$: Observable<boolean>;
15
+ isBeginningOfResults$: Observable<boolean>;
15
16
  isEndOfResults$: Observable<boolean>;
16
17
  totalPages$: Observable<number>;
17
18
  currentPage$: Observable<number>;
@@ -33,6 +34,7 @@ export declare class SearchFacade {
33
34
  setConfigRequestFields(fields: FieldName[]): SearchFacade;
34
35
  setConfigFilters(filters: FieldFilters): SearchFacade;
35
36
  requestMoreResults(): SearchFacade;
37
+ requestNewResults(): SearchFacade;
36
38
  requestMoreOnAggregation(key: string, increment: number): SearchFacade;
37
39
  setResultsLayout(layout: string): SearchFacade;
38
40
  setFilters(filters: FieldFilters): SearchFacade;
@@ -1 +1 @@
1
- {"version":3,"file":"search.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/search.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,EAAQ,UAAU,EAAM,MAAM,MAAM,CAAA;AAsB3C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAmBvE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,SAAS,EACT,WAAW,EACZ,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBACa,YAAY;IAyBrB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,cAAc;IA3BxB,QAAQ,EAAE,UAAU,CAAC,aAAa,EAAE,CAAC,CAAA;IACrC,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC3B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAChC,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC/B,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC/B,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC7B,cAAc,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IACxC,mBAAmB,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAA;IACnD,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IAC9C,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,cAAc,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACnC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAC/B,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1C,iBAAiB,sBAIhB;IAED,QAAQ,EAAE,MAAM,CAAA;gBAGN,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EAGzB,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,IAAI,CAAC,QAAQ,GAAE,MAA2B,GAAG,IAAI;IAgCjD,YAAY,IAAI,YAAY;IAK5B,qBAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKhD,wBAAwB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKnD,sBAAsB,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,YAAY;IAKzD,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKrD,kBAAkB,IAAI,YAAY;IAKlC,wBAAwB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,YAAY;IAOtE,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY;IAK9C,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAK/C,aAAa,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKlD,SAAS,CAAC,MAAM,EAAE,iBAAiB,GAAG,YAAY;IAKlD,gBAAgB,CAAC,aAAa,EAAE,OAAO,GAAG,YAAY;IAKtD,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY;IAOnE,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY;IAKvC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY;IAK1C,MAAM,IAAI,YAAY;IAKtB,SAAS,CAAC,MAAM,EAAE,WAAW;IAK7B,uBAAuB,CAAC,OAAO,EAAE,OAAO;IAKxC,WAAW;yCA7JA,YAAY;6CAAZ,YAAY;CAoKxB"}
1
+ {"version":3,"file":"search.facade.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/search.facade.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,KAAK,EAAE,MAAM,aAAa,CAAA;AAC3C,OAAO,EAAQ,UAAU,EAAM,MAAM,MAAM,CAAA;AAuB3C,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAoBvE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAElC,OAAO,EACL,YAAY,EACZ,kBAAkB,EAClB,YAAY,EACZ,SAAS,EACT,WAAW,EACZ,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBACa,YAAY;IA0BrB,OAAO,CAAC,KAAK;IAGb,OAAO,CAAC,cAAc;IA5BxB,QAAQ,EAAE,UAAU,CAAC,aAAa,EAAE,CAAC,CAAA;IACrC,OAAO,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC3B,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAChC,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC/B,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1C,eAAe,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACpC,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC/B,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,SAAS,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAC7B,cAAc,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IACxC,mBAAmB,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAA;IACnD,oBAAoB,EAAE,UAAU,CAAC,YAAY,CAAC,CAAA;IAC9C,YAAY,EAAE,UAAU,CAAC,MAAM,CAAC,CAAA;IAChC,cAAc,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IACnC,MAAM,EAAE,UAAU,CAAC,WAAW,CAAC,CAAA;IAC/B,qBAAqB,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC1C,iBAAiB,sBAIhB;IAED,QAAQ,EAAE,MAAM,CAAA;gBAGN,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,EAGzB,cAAc,EAAE,OAAO,CAAC,QAAQ,CAAC;IAG3C,IAAI,CAAC,QAAQ,GAAE,MAA2B,GAAG,IAAI;IAmCjD,YAAY,IAAI,YAAY;IAK5B,qBAAqB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKhD,wBAAwB,CAAC,MAAM,EAAE,GAAG,GAAG,YAAY;IAKnD,sBAAsB,CAAC,MAAM,EAAE,SAAS,EAAE,GAAG,YAAY;IAKzD,gBAAgB,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKrD,kBAAkB,IAAI,YAAY;IAKlC,iBAAiB,IAAI,YAAY;IAKjC,wBAAwB,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,YAAY;IAOtE,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,YAAY;IAK9C,UAAU,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAK/C,aAAa,CAAC,OAAO,EAAE,YAAY,GAAG,YAAY;IAKlD,SAAS,CAAC,MAAM,EAAE,iBAAiB,GAAG,YAAY;IAKlD,gBAAgB,CAAC,aAAa,EAAE,OAAO,GAAG,YAAY;IAKtD,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,YAAY;IAOnE,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,YAAY;IAKvC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY;IAK1C,MAAM,IAAI,YAAY;IAKtB,SAAS,CAAC,MAAM,EAAE,WAAW;IAK7B,uBAAuB,CAAC,OAAO,EAAE,OAAO;IAKxC,WAAW;yCAtKA,YAAY;6CAAZ,YAAY;CA6KxB"}
@@ -9,6 +9,7 @@ export declare const getSearchResults: import("@ngrx/store").MemoizedSelector<ob
9
9
  export declare const getSearchResultsLoading: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
10
10
  export declare const getSearchResultsAggregations: import("@ngrx/store").MemoizedSelector<object, import("../../../../../common/domain/src/lib/model/search").Aggregations, (s1: SearchStateSearch) => import("../../../../../common/domain/src/lib/model/search").Aggregations>;
11
11
  export declare const getSearchResultsHits: import("@ngrx/store").MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
12
+ export declare const isBeginningOfResults: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
12
13
  export declare const isEndOfResults: import("@ngrx/store").MemoizedSelector<object, boolean, (s1: SearchStateSearch) => boolean>;
13
14
  export declare const totalPages: import("@ngrx/store").MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
14
15
  export declare const currentPage: import("@ngrx/store").MemoizedSelector<object, number, (s1: SearchStateSearch) => number>;
@@ -1 +1 @@
1
- {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/selectors.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsB,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAE9E,eAAO,MAAM,cAAc,oHAC6B,CAAA;AAExD,eAAO,MAAM,oBAAoB,2GAGhC,CAAA;AAED,eAAO,MAAM,gBAAgB,+NAG5B,CAAA;AAED,eAAO,MAAM,eAAe,6NAG3B,CAAA;AAED,eAAO,MAAM,sBAAsB,2FAGlC,CAAA;AAED,eAAO,MAAM,2BAA2B,2OAGvC,CAAA;AAED,eAAO,MAAM,gBAAgB,qOAG5B,CAAA;AAED,eAAO,MAAM,uBAAuB,6FAGnC,CAAA;AAED,eAAO,MAAM,4BAA4B,+NAGxC,CAAA;AAED,eAAO,MAAM,oBAAoB,2FAGhC,CAAA;AAED,eAAO,MAAM,cAAc,6FAS1B,CAAA;AAED,eAAO,MAAM,UAAU,2FAKtB,CAAA;AAED,eAAO,MAAM,WAAW,2FAGvB,CAAA;AAED,eAAO,MAAM,WAAW,2FAGvB,CAAA;AAED,eAAO,MAAM,gBAAgB,6FAG5B,CAAA;AAED,eAAO,MAAM,QAAQ;;;;;;EAGpB,CAAA;AAED,eAAO,MAAM,uBAAuB,6FAGnC,CAAA"}
1
+ {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/search/src/lib/state/selectors.ts"],"names":[],"mappings":"AAEA,OAAO,EAAsB,WAAW,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAA;AAE9E,eAAO,MAAM,cAAc,oHAC6B,CAAA;AAExD,eAAO,MAAM,oBAAoB,2GAGhC,CAAA;AAED,eAAO,MAAM,gBAAgB,+NAG5B,CAAA;AAED,eAAO,MAAM,eAAe,6NAG3B,CAAA;AAED,eAAO,MAAM,sBAAsB,2FAGlC,CAAA;AAED,eAAO,MAAM,2BAA2B,2OAGvC,CAAA;AAED,eAAO,MAAM,gBAAgB,qOAG5B,CAAA;AAED,eAAO,MAAM,uBAAuB,6FAGnC,CAAA;AAED,eAAO,MAAM,4BAA4B,+NAGxC,CAAA;AAED,eAAO,MAAM,oBAAoB,2FAGhC,CAAA;AAED,eAAO,MAAM,oBAAoB,6FAKhC,CAAA;AAED,eAAO,MAAM,cAAc,6FAS1B,CAAA;AAED,eAAO,MAAM,UAAU,2FAKtB,CAAA;AAED,eAAO,MAAM,WAAW,2FAGvB,CAAA;AAED,eAAO,MAAM,WAAW,2FAGvB,CAAA;AAED,eAAO,MAAM,gBAAgB,6FAG5B,CAAA;AAED,eAAO,MAAM,QAAQ;;;;;;EAGpB,CAAA;AAED,eAAO,MAAM,uBAAuB,6FAGnC,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EACL,mBAAmB,EACnB,UAAU,EASX,MAAM,UAAU,CAAA;AACjB,OAAO,EAAY,UAAU,EAAM,MAAM,MAAM,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;;AAI3F,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,CAAA;AAenE,qBAGa,aAAa;IAyCZ,SAAS,CAAC,QAAQ,EAAE,QAAQ;IAxCxC,SAAS,CAAC,MAAM,sCAkCwB;IAExC,IAAI,eAAe,aAElB;gBAEqB,QAAQ,EAAE,QAAQ;IAExC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,OAAO,CAAC,mBAAmB;IAG3B,OAAO,CAAC,mBAAmB;IAI3B,2BAA2B,CACzB,WAAW,EAAE,WAAW,GACvB,UAAU,CAAC,YAAY,CAAC;IAkB3B,0BAA0B,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC;yCA5E/D,aAAa;6CAAb,aAAa;CAwFzB"}
1
+ {"version":3,"file":"fields.service.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/feature/search/src/lib/utils/service/fields.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,QAAQ,EAAE,MAAM,eAAe,CAAA;AACpD,OAAO,EACL,mBAAmB,EACnB,UAAU,EASX,MAAM,UAAU,CAAA;AACjB,OAAO,EAAY,UAAU,EAAM,MAAM,MAAM,CAAA;AAE/C,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;;AAI3F,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,UAAU,EAAE,GAAG,UAAU,CAAC,CAAA;AAiBnE,qBAGa,aAAa;IAqDZ,SAAS,CAAC,QAAQ,EAAE,QAAQ;IApDxC,SAAS,CAAC,MAAM,sCA8CwB;IAExC,IAAI,eAAe,aAElB;gBAEqB,QAAQ,EAAE,QAAQ;IAExC,kBAAkB,CAAC,SAAS,EAAE,MAAM;IAMpC,OAAO,CAAC,mBAAmB;IAG3B,OAAO,CAAC,mBAAmB;IAI3B,2BAA2B,CACzB,WAAW,EAAE,WAAW,GACvB,UAAU,CAAC,YAAY,CAAC;IAkB3B,0BAA0B,CAAC,OAAO,EAAE,YAAY,GAAG,UAAU,CAAC,WAAW,CAAC;yCAxF/D,aAAa;6CAAb,aAAa;CAoGzB"}
@@ -2,11 +2,11 @@ import { EventEmitter } from '@angular/core';
2
2
  import { Organization } from '../../../../../../libs/common/domain/src/lib/model/record';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class OrganisationPreviewComponent {
5
- organisation: Organization;
5
+ organization: Organization;
6
6
  organisationUrl: string;
7
7
  clickedOrganisation: EventEmitter<Organization>;
8
8
  clickOrganisation(event: Event): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationPreviewComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<OrganisationPreviewComponent, "gn-ui-organisation-preview", never, { "organisation": { "alias": "organisation"; "required": false; }; "organisationUrl": { "alias": "organisationUrl"; "required": false; }; }, { "clickedOrganisation": "clickedOrganisation"; }, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<OrganisationPreviewComponent, "gn-ui-organisation-preview", never, { "organization": { "alias": "organization"; "required": false; }; "organisationUrl": { "alias": "organisationUrl"; "required": false; }; }, { "clickedOrganisation": "clickedOrganisation"; }, never, never, false, never>;
11
11
  }
12
12
  //# sourceMappingURL=organisation-preview.component.d.ts.map
@@ -9,9 +9,10 @@ import * as i7 from "@ngx-translate/core";
9
9
  import * as i8 from "../../../elements/src/lib/ui-elements.module";
10
10
  import * as i9 from "../../../inputs/src/lib/ui-inputs.module";
11
11
  import * as i10 from "@angular/material/icon";
12
+ import * as i11 from "@angular/router";
12
13
  export declare class UiCatalogModule {
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<UiCatalogModule, never>;
14
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiCatalogModule, [typeof i1.CatalogTitleComponent, typeof i2.OrganisationPreviewComponent, typeof i3.OrganisationsFilterComponent, typeof i4.LanguageSwitcherComponent, typeof i5.OrganisationsResultComponent], [typeof i6.CommonModule, typeof i7.TranslateModule, typeof i8.UiElementsModule, typeof i9.UiInputsModule, typeof i10.MatIconModule], [typeof i1.CatalogTitleComponent, typeof i2.OrganisationPreviewComponent, typeof i3.OrganisationsFilterComponent, typeof i4.LanguageSwitcherComponent, typeof i5.OrganisationsResultComponent]>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiCatalogModule, [typeof i1.CatalogTitleComponent, typeof i2.OrganisationPreviewComponent, typeof i3.OrganisationsFilterComponent, typeof i4.LanguageSwitcherComponent, typeof i5.OrganisationsResultComponent], [typeof i6.CommonModule, typeof i7.TranslateModule, typeof i8.UiElementsModule, typeof i9.UiInputsModule, typeof i10.MatIconModule, typeof i11.RouterLink], [typeof i1.CatalogTitleComponent, typeof i2.OrganisationPreviewComponent, typeof i3.OrganisationsFilterComponent, typeof i4.LanguageSwitcherComponent, typeof i5.OrganisationsResultComponent]>;
15
16
  static ɵinj: i0.ɵɵInjectorDeclaration<UiCatalogModule>;
16
17
  }
17
18
  //# sourceMappingURL=ui-catalog.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-catalog.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/catalog/src/lib/ui-catalog.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,qBAuBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
1
+ {"version":3,"file":"ui-catalog.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/catalog/src/lib/ui-catalog.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAaA,qBAwBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
@@ -3,9 +3,8 @@ export declare class FigureComponent {
3
3
  icon: string;
4
4
  title: string;
5
5
  figure: string | number;
6
- unit?: string;
6
+ unit: string;
7
7
  color: 'primary' | 'secondary';
8
- get hoverTitle(): string;
9
8
  get textClass(): "text-primary" | "text-secondary";
10
9
  get bgClass(): "bg-primary-white" | "bg-secondary-white";
11
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FigureComponent, never>;
@@ -1 +1 @@
1
- {"version":3,"file":"figure.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/figure/figure.component.ts"],"names":[],"mappings":";AAEA,qBAMa,eAAe;IACjB,IAAI,EAAG,MAAM,CAAA;IACb,KAAK,EAAG,MAAM,CAAA;IACd,MAAM,EAAG,MAAM,GAAG,MAAM,CAAA;IACxB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,SAAS,GAAG,WAAW,CAAY;IAEnD,IAAI,UAAU,WAGb;IAED,IAAI,SAAS,sCAEZ;IACD,IAAI,OAAO,8CAEV;yCAjBU,eAAe;2CAAf,eAAe;CAkB3B"}
1
+ {"version":3,"file":"figure.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/dataviz/src/lib/figure/figure.component.ts"],"names":[],"mappings":";AAEA,qBAMa,eAAe;IACjB,IAAI,EAAG,MAAM,CAAA;IACb,KAAK,EAAG,MAAM,CAAA;IACd,MAAM,EAAG,MAAM,GAAG,MAAM,CAAA;IACxB,IAAI,SAAK;IACT,KAAK,EAAE,SAAS,GAAG,WAAW,CAAY;IAEnD,IAAI,SAAS,sCAEZ;IAED,IAAI,OAAO,8CAEV;yCAbU,eAAe;2CAAf,eAAe;CAc3B"}
@@ -1,5 +1,6 @@
1
1
  export * from './lib/api-card/api-card.component';
2
2
  export * from './lib/avatar/avatar.component';
3
+ export * from './lib/confirmation-dialog/confirmation-dialog.component';
3
4
  export * from './lib/content-ghost/content-ghost.component';
4
5
  export * from './lib/download-item/download-item.component';
5
6
  export * from './lib/downloads-list/downloads-list.component';
@@ -8,7 +9,6 @@ export * from './lib/image-overlay-preview/image-overlay-preview.component';
8
9
  export * from './lib/link-card/link-card.component';
9
10
  export * from './lib/markdown-editor/markdown-editor.component';
10
11
  export * from './lib/markdown-parser/markdown-parser.component';
11
- export * from './lib/max-lines/max-lines.component';
12
12
  export * from './lib/metadata-catalog/metadata-catalog.component';
13
13
  export * from './lib/metadata-contact/metadata-contact.component';
14
14
  export * from './lib/metadata-info/metadata-info.component';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,6BAA6B,CAAA;AAC3C,cAAc,6DAA6D,CAAA;AAC3E,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,qCAAqC,CAAA;AACnD,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6DAA6D,CAAA;AAC3E,cAAc,mDAAmD,CAAA;AACjE,cAAc,2CAA2C,CAAA;AACzD,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,yDAAyD,CAAA;AACvE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,qCAAqC,CAAA;AACnD,cAAc,0BAA0B,CAAA;AACxC,cAAc,2CAA2C,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/elements/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mCAAmC,CAAA;AACjD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,yDAAyD,CAAA;AACvE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6CAA6C,CAAA;AAC3D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,6BAA6B,CAAA;AAC3C,cAAc,6DAA6D,CAAA;AAC3E,cAAc,qCAAqC,CAAA;AACnD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,iDAAiD,CAAA;AAC/D,cAAc,mDAAmD,CAAA;AACjE,cAAc,mDAAmD,CAAA;AACjE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,6DAA6D,CAAA;AAC3E,cAAc,mDAAmD,CAAA;AACjE,cAAc,2CAA2C,CAAA;AACzD,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,iDAAiD,CAAA;AAC/D,cAAc,yDAAyD,CAAA;AACvE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,qCAAqC,CAAA;AACnD,cAAc,0BAA0B,CAAA;AACxC,cAAc,2CAA2C,CAAA"}
@@ -0,0 +1,18 @@
1
+ import { MatDialogRef } from '@angular/material/dialog';
2
+ import * as i0 from "@angular/core";
3
+ export interface ConfirmationDialogData {
4
+ title: string;
5
+ message: string;
6
+ confirmText: string;
7
+ cancelText: string;
8
+ }
9
+ export declare class ConfirmationDialogComponent {
10
+ dialogRef: MatDialogRef<ConfirmationDialogComponent>;
11
+ data: ConfirmationDialogData;
12
+ constructor(dialogRef: MatDialogRef<ConfirmationDialogComponent>, data: ConfirmationDialogData);
13
+ onConfirm(): void;
14
+ onCancel(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationDialogComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationDialogComponent, "gn-ui-confirmation-dialog", never, {}, {}, never, never, true, never>;
17
+ }
18
+ //# sourceMappingURL=confirmation-dialog.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"confirmation-dialog.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EACb,MAAM,0BAA0B,CAAA;;AAGjC,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAQa,2BAA2B;IAE7B,SAAS,EAAE,YAAY,CAAC,2BAA2B,CAAC;IAC3B,IAAI,EAAE,sBAAsB;gBADrD,SAAS,EAAE,YAAY,CAAC,2BAA2B,CAAC,EAC3B,IAAI,EAAE,sBAAsB;IAG9D,SAAS;IAIT,QAAQ;yCAVG,2BAA2B;2CAA3B,2BAA2B;CAavC"}
@@ -14,7 +14,7 @@ export declare class DownloadsListComponent {
14
14
  isFilterActive(filter: FilterFormat): boolean;
15
15
  getFilterFormatTitle(format: FilterFormat): any;
16
16
  isLinkOfFormat(link: DatasetDistribution, format: FilterFormat): boolean;
17
- getLinkFormat(link: DatasetDistribution): "json" | "html" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
17
+ getLinkFormat(link: DatasetDistribution): "html" | "json" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
18
18
  getLinkColor(link: DatasetDistribution): string;
19
19
  isFromWfs(link: DatasetDistribution): boolean;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<DownloadsListComponent, never>;
@@ -3,7 +3,9 @@ export declare enum ErrorType {
3
3
  COULD_NOT_REACH_API = 0,
4
4
  RECEIVED_ERROR = 1,
5
5
  RECORD_NOT_FOUND = 2,
6
- DATASET_HAS_NO_LINK = 3
6
+ DATASET_HAS_NO_LINK = 3,
7
+ ORGANIZATION_HAS_NO_DATASET = 4,
8
+ ORGANIZATION_NOT_FOUND = 5
7
9
  }
8
10
  export declare class ErrorComponent {
9
11
  type: ErrorType;
@@ -1 +1 @@
1
- {"version":3,"file":"error.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/error/error.component.ts"],"names":[],"mappings":";AAEA,oBAAY,SAAS;IACnB,mBAAmB,IAAA;IACnB,cAAc,IAAA;IACd,gBAAgB,IAAA;IAChB,mBAAmB,IAAA;CACpB;AAED,qBAMa,cAAc;IAChB,IAAI,EAAG,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IAC1B,KAAK,mBAAY;yCAJN,cAAc;2CAAd,cAAc;CAK1B"}
1
+ {"version":3,"file":"error.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/error/error.component.ts"],"names":[],"mappings":";AAEA,oBAAY,SAAS;IACnB,mBAAmB,IAAA;IACnB,cAAc,IAAA;IACd,gBAAgB,IAAA;IAChB,mBAAmB,IAAA;IACnB,2BAA2B,IAAA;IAC3B,sBAAsB,IAAA;CACvB;AAED,qBAMa,cAAc;IAChB,IAAI,EAAG,SAAS,CAAA;IAChB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IAC1B,KAAK,mBAAY;yCAJN,cAAc;2CAAd,cAAc;CAK1B"}
@@ -7,11 +7,8 @@ export declare class MetadataQualityComponent implements OnChanges {
7
7
  smaller: boolean;
8
8
  metadataQualityDisplay: boolean;
9
9
  items: MetadataQualityItem[];
10
- isMenuShown: boolean;
11
10
  get qualityScore(): number;
12
11
  get calculatedQualityScore(): number;
13
- showMenu(): void;
14
- hideMenu(): void;
15
12
  private add;
16
13
  initialize(): void;
17
14
  ngOnChanges(changes: SimpleChanges): void;
@@ -1 +1 @@
1
- {"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAC9F,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,wBAAyB,YAAW,SAAS;IAC/C,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,OAAO,UAAQ;IACf,sBAAsB,EAAE,OAAO,CAAA;IAExC,KAAK,EAAE,mBAAmB,EAAE,CAAK;IAEjC,WAAW,UAAQ;IAEnB,IAAI,YAAY,WAKf;IAED,IAAI,sBAAsB,IAAI,MAAM,CAInC;IAED,QAAQ;IAIR,QAAQ;IAIR,OAAO,CAAC,GAAG;IAMX,UAAU;IAaV,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAjD9B,wBAAwB;2CAAxB,wBAAwB;CAsDpC"}
1
+ {"version":3,"file":"metadata-quality.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,SAAS,EACT,aAAa,EACd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAC9F,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,wBAAyB,YAAW,SAAS;IAC/C,QAAQ,EAAE,OAAO,CAAC,aAAa,CAAC,CAAA;IAChC,OAAO,UAAQ;IACf,sBAAsB,EAAE,OAAO,CAAA;IAExC,KAAK,EAAE,mBAAmB,EAAE,CAAK;IAEjC,IAAI,YAAY,WAKf;IAED,IAAI,sBAAsB,IAAI,MAAM,CAInC;IAED,OAAO,CAAC,GAAG;IAMX,UAAU;IAaV,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;yCAvC9B,wBAAwB;2CAAxB,wBAAwB;CA4CpC"}
@@ -32,7 +32,7 @@ export declare class RecordApiFormComponent {
32
32
  parseOutputFormats(): Promise<void>;
33
33
  mapFormats(formats: any[]): {
34
34
  label: string;
35
- value: "json" | "html" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
35
+ value: "html" | "json" | "pdf" | "geojson" | "svg" | "csv" | "excel" | "shp" | "gml" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
36
36
  }[];
37
37
  getOutputFormats(url: string): Promise<OutputFormats>;
38
38
  createEndpoint(): Promise<void>;
@@ -1,8 +1,12 @@
1
1
  import { CatalogRecord } from '../../../../../../libs/common/domain/src/lib/model/record';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class RelatedRecordCardComponent {
4
+ private readonly baseClasses;
4
5
  record: CatalogRecord;
6
+ extraClass: string;
7
+ constructor();
8
+ get classList(): string;
5
9
  static ɵfac: i0.ɵɵFactoryDeclaration<RelatedRecordCardComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<RelatedRecordCardComponent, "gn-ui-related-record-card", never, { "record": { "alias": "record"; "required": false; }; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<RelatedRecordCardComponent, "gn-ui-related-record-card", never, { "record": { "alias": "record"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, false, never>;
7
11
  }
8
12
  //# sourceMappingURL=related-record-card.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"related-record-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,0BAA0B;IAC5B,MAAM,EAAE,aAAa,CAAA;yCADnB,0BAA0B;2CAA1B,0BAA0B;CAEtC"}
1
+ {"version":3,"file":"related-record-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAEzF,qBAMa,0BAA0B;IACrC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAQ;IAE3B,MAAM,EAAE,aAAa,CAAA;IACrB,UAAU,SAAK;;IAgBxB,IAAI,SAAS,WAEZ;yCAtBU,0BAA0B;2CAA1B,0BAA0B;CAuBtC"}
@@ -1,22 +1,17 @@
1
1
  import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
2
  import { EventEmitter, Type } from '@angular/core';
3
3
  import * as i0 from "@angular/core";
4
- type DynamicElement = {
5
- component: Type<any>;
6
- inputs: Record<string, any>;
4
+ export type DynamicElement = {
5
+ component: Type<unknown>;
6
+ inputs: Record<string, unknown>;
7
7
  };
8
8
  export declare class SortableListComponent {
9
9
  elements: Array<DynamicElement>;
10
- addOptions: Array<{
11
- buttonLabel: string;
12
- eventName: string;
13
- }>;
14
10
  elementsChange: EventEmitter<DynamicElement[]>;
15
- add: EventEmitter<string>;
16
11
  drop(event: CdkDragDrop<string[]>): void;
17
12
  removeElement(index: number): void;
13
+ trackByFn(index: number): number;
18
14
  static ɵfac: i0.ɵɵFactoryDeclaration<SortableListComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elements": { "alias": "elements"; "required": false; }; "addOptions": { "alias": "addOptions"; "required": false; }; }, { "elementsChange": "elementsChange"; "add": "add"; }, never, never, true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elements": { "alias": "elements"; "required": false; }; }, { "elementsChange": "elementsChange"; }, never, never, true, never>;
20
16
  }
21
- export {};
22
17
  //# sourceMappingURL=sortable-list.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sortable-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,WAAW,EAIZ,MAAM,wBAAwB,CAAA;AAE/B,OAAO,EAGL,YAAY,EAGZ,IAAI,EACL,MAAM,eAAe,CAAA;;AAItB,KAAK,cAAc,GAAG;IACpB,SAAS,EAAE,IAAI,CAAC,GAAG,CAAC,CAAA;IACpB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC5B,CAAA;AAED,qBAgBa,qBAAqB;IACvB,QAAQ,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC/B,UAAU,EAAE,KAAK,CAAC;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;IAC5D,cAAc,iCAA4C;IAC1D,GAAG,uBAA6B;IAE1C,IAAI,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,CAAC;IAKjC,aAAa,CAAC,KAAK,EAAE,MAAM;yCAXhB,qBAAqB;2CAArB,qBAAqB;CAejC"}
1
+ {"version":3,"file":"sortable-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,WAAW,EAIZ,MAAM,wBAAwB,CAAA;AAE/B,OAAO,EAGL,YAAY,EAGZ,IAAI,EACL,MAAM,eAAe,CAAA;;AAGtB,MAAM,MAAM,cAAc,GAAG;IAC3B,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,CAAA;IACxB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;CAChC,CAAA;AAED,qBAea,qBAAqB;IACvB,QAAQ,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC9B,cAAc,iCAA4C;IAEpE,IAAI,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,CAAC;IAKjC,aAAa,CAAC,KAAK,EAAE,MAAM;IAK3B,SAAS,CAAC,KAAK,EAAE,MAAM;yCAdZ,qBAAqB;2CAArB,qBAAqB;CAiBjC"}
@@ -15,27 +15,29 @@ import * as i13 from "./avatar/avatar.component";
15
15
  import * as i14 from "./user-preview/user-preview.component";
16
16
  import * as i15 from "./metadata-info/linkify.directive";
17
17
  import * as i16 from "./pagination-buttons/pagination-buttons.component";
18
- import * as i17 from "./max-lines/max-lines.component";
19
- import * as i18 from "./record-api-form/record-api-form.component";
20
- import * as i19 from "./user-feedback-item/user-feedback-item.component";
21
- import * as i20 from "./image-overlay-preview/image-overlay-preview.component";
22
- import * as i21 from "@angular/common";
23
- import * as i22 from "@angular/material/icon";
24
- import * as i23 from "@angular/material/tooltip";
25
- import * as i24 from "../../../widgets/src/lib/ui-widgets.module";
26
- import * as i25 from "../../../layout/src/lib/ui-layout.module";
27
- import * as i26 from "@ngx-translate/core";
28
- import * as i27 from "../../../../util/shared/src/lib/util-shared.module";
29
- import * as i28 from "@angular/router";
30
- import * as i29 from "../../../inputs/src/lib/ui-inputs.module";
31
- import * as i30 from "@angular/forms";
18
+ import * as i17 from "./record-api-form/record-api-form.component";
19
+ import * as i18 from "./user-feedback-item/user-feedback-item.component";
20
+ import * as i19 from "./image-overlay-preview/image-overlay-preview.component";
21
+ import * as i20 from "@angular/common";
22
+ import * as i21 from "@angular/material/icon";
23
+ import * as i22 from "@angular/material/tooltip";
24
+ import * as i23 from "../../../widgets/src/lib/ui-widgets.module";
25
+ import * as i24 from "../../../layout/src/lib/ui-layout.module";
26
+ import * as i25 from "@ngx-translate/core";
27
+ import * as i26 from "../../../../util/shared/src/lib/util-shared.module";
28
+ import * as i27 from "@angular/router";
29
+ import * as i28 from "../../../inputs/src/lib/ui-inputs.module";
30
+ import * as i29 from "@angular/forms";
31
+ import * as i30 from "../../../widgets/src/lib/popover/popover.component";
32
32
  import * as i31 from "./markdown-parser/markdown-parser.component";
33
33
  import * as i32 from "./thumbnail/thumbnail.component";
34
34
  import * as i33 from "./user-feedback-item/time-since.pipe";
35
35
  import * as i34 from "../../../inputs/src/lib/badge/badge.component";
36
+ import * as i35 from "../../../layout/src/lib/max-lines/max-lines.component";
37
+ import * as i36 from "../../../inputs/src/lib/text-input/text-input.component";
36
38
  export declare class UiElementsModule {
37
39
  static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
38
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.ErrorComponent, typeof i12.PaginationComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i15.GnUiLinkifyDirective, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent], [typeof i21.CommonModule, typeof i22.MatIconModule, typeof i23.MatTooltipModule, typeof i24.UiWidgetsModule, typeof i25.UiLayoutModule, typeof i26.TranslateModule, typeof i27.UtilSharedModule, typeof i28.RouterModule, typeof i29.UiInputsModule, typeof i30.FormsModule, typeof i21.NgOptimizedImage, typeof i31.MarkdownParserComponent, typeof i32.ThumbnailComponent, typeof i33.TimeSincePipe, typeof i34.BadgeComponent], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.ErrorComponent, typeof i12.PaginationComponent, typeof i32.ThumbnailComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i31.MarkdownParserComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent]>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.ErrorComponent, typeof i12.PaginationComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i15.GnUiLinkifyDirective, typeof i16.PaginationButtonsComponent, typeof i17.RecordApiFormComponent, typeof i18.UserFeedbackItemComponent, typeof i19.ImageOverlayPreviewComponent], [typeof i20.CommonModule, typeof i21.MatIconModule, typeof i22.MatTooltipModule, typeof i23.UiWidgetsModule, typeof i24.UiLayoutModule, typeof i25.TranslateModule, typeof i26.UtilSharedModule, typeof i27.RouterModule, typeof i28.UiInputsModule, typeof i29.FormsModule, typeof i20.NgOptimizedImage, typeof i30.PopoverComponent, typeof i31.MarkdownParserComponent, typeof i32.ThumbnailComponent, typeof i33.TimeSincePipe, typeof i34.BadgeComponent, typeof i35.MaxLinesComponent, typeof i36.TextInputComponent], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.ErrorComponent, typeof i12.PaginationComponent, typeof i32.ThumbnailComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i16.PaginationButtonsComponent, typeof i17.RecordApiFormComponent, typeof i31.MarkdownParserComponent, typeof i18.UserFeedbackItemComponent, typeof i19.ImageOverlayPreviewComponent]>;
39
41
  static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
40
42
  }
41
43
  //# sourceMappingURL=ui-elements.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCA,qBAgEa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
1
+ {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,qBAiEa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -21,4 +21,5 @@ export * from './lib/text-input/text-input.component';
21
21
  export * from './lib/ui-inputs.module';
22
22
  export * from './lib/viewport-intersector/viewport-intersector.component';
23
23
  export * from './lib/previous-next-buttons/previous-next-buttons.component';
24
+ export * from './lib/switch-toggle/switch-toggle.component';
24
25
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAA;AACzD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2CAA2C,CAAA;AACzD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mDAAmD,CAAA;AACjE,cAAc,yCAAyC,CAAA;AACvD,cAAc,qDAAqD,CAAA;AACnE,cAAc,mEAAmE,CAAA;AACjF,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qDAAqD,CAAA;AACnE,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,wBAAwB,CAAA;AACtC,cAAc,2DAA2D,CAAA;AACzE,cAAc,6DAA6D,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAA;AACzD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2CAA2C,CAAA;AACzD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mDAAmD,CAAA;AACjE,cAAc,yCAAyC,CAAA;AACvD,cAAc,qDAAqD,CAAA;AACnE,cAAc,mEAAmE,CAAA;AACjF,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qDAAqD,CAAA;AACnE,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,wBAAwB,CAAA;AACtC,cAAc,2DAA2D,CAAA;AACzE,cAAc,6DAA6D,CAAA;AAC3E,cAAc,6CAA6C,CAAA"}
@@ -10,6 +10,7 @@ export declare class AutocompleteComponent implements OnInit, AfterViewInit, OnD
10
10
  action: (value: string) => Observable<AutocompleteItem[]>;
11
11
  value?: AutocompleteItem;
12
12
  clearOnSelection: boolean;
13
+ preventCompleteOnSelection: boolean;
13
14
  autoFocus: boolean;
14
15
  minCharacterCount?: number;
15
16
  allowSubmit: boolean;
@@ -38,8 +39,15 @@ export declare class AutocompleteComponent implements OnInit, AfterViewInit, OnD
38
39
  clear(): void;
39
40
  handleEnter(any: string): void;
40
41
  handleClickSearch(): void;
42
+ /**
43
+ * This function is triggered when an item is selected in the list of displayed items.
44
+ * If preventCompleteOnSelection is true then the input will be left as entered by the user.
45
+ * If preventCompleteOnSelection is false (by default) then the input will be completed with the item selected by the user.
46
+ * If clearOnSelection is true then the input will be cleared upon selection.
47
+ * @param event
48
+ */
41
49
  handleSelection(event: MatAutocompleteSelectedEvent): void;
42
50
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
43
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "gn-ui-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "action": { "alias": "action"; "required": false; }; "value": { "alias": "value"; "required": false; }; "clearOnSelection": { "alias": "clearOnSelection"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "minCharacterCount": { "alias": "minCharacterCount"; "required": false; }; "allowSubmit": { "alias": "allowSubmit"; "required": false; }; "displayWithFn": { "alias": "displayWithFn"; "required": false; }; }, { "itemSelected": "itemSelected"; "inputSubmitted": "inputSubmitted"; "inputCleared": "inputCleared"; }, never, never, true, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "gn-ui-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "action": { "alias": "action"; "required": false; }; "value": { "alias": "value"; "required": false; }; "clearOnSelection": { "alias": "clearOnSelection"; "required": false; }; "preventCompleteOnSelection": { "alias": "preventCompleteOnSelection"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "minCharacterCount": { "alias": "minCharacterCount"; "required": false; }; "allowSubmit": { "alias": "allowSubmit"; "required": false; }; "displayWithFn": { "alias": "displayWithFn"; "required": false; }; }, { "itemSelected": "itemSelected"; "inputSubmitted": "inputSubmitted"; "inputCleared": "inputCleared"; }, never, never, true, never>;
44
52
  }
45
53
  //# sourceMappingURL=autocomplete.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"autocomplete.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAuB,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AACxE,OAAO,EACL,eAAe,EAEf,4BAA4B,EAC5B,sBAAsB,EACvB,MAAM,gCAAgC,CAAA;AACvC,OAAO,EAAgB,UAAU,EAAM,aAAa,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAiBhF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,qBAea,qBACX,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS;IAiC1C,OAAO,CAAC,KAAK;IA/BhB,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAA;IACzD,KAAK,CAAC,EAAE,gBAAgB,CAAA;IACxB,gBAAgB,UAAQ;IACxB,SAAS,UAAQ;IACjB,iBAAiB,CAAC,SAAI;IACtB,WAAW,UAAO;IACjB,YAAY,wBAAuC;IACnD,cAAc,uBAA6B;IAC3C,YAAY,qBAA2B;IACd,UAAU,EAAE,sBAAsB,CAAA;IACzC,YAAY,EAAE,eAAe,CAAA;IAC/B,QAAQ,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IAEhE,SAAS,EAAE,OAAO,CAAA;IAClB,OAAO,qBAA2B;IAClC,WAAW,UAAO;IAClB,gBAAgB,8CAAqD;IACrE,eAAe,wBAA+B;IAC9C,KAAK,EAAE,MAAM,GAAG,IAAI,CAAO;IAC3B,YAAY,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAA;IAC5C,YAAY,eAAqB;IAExB,aAAa,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CACzC;IAEjB,qBAAqB,UAAW,gBAAgB,YAG/C;gBAEmB,KAAK,EAAE,iBAAiB;IAC5C,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,QAAQ,IAAI,IAAI;IAkEhB,eAAe,IAAI,IAAI;IAQvB,WAAW,IAAI,IAAI;IAInB,gBAAgB,CAAC,KAAK,EAAE,gBAAgB;IASxC,KAAK,IAAI,IAAI;IASb,WAAW,CAAC,GAAG,EAAE,MAAM;IAMvB,iBAAiB;IAIjB,eAAe,CAAC,KAAK,EAAE,4BAA4B;yCAxJxC,qBAAqB;2CAArB,qBAAqB;CAiKjC"}
1
+ {"version":3,"file":"autocomplete.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAuB,kBAAkB,EAAE,MAAM,gBAAgB,CAAA;AACxE,OAAO,EACL,eAAe,EAEf,4BAA4B,EAC5B,sBAAsB,EACvB,MAAM,gCAAgC,CAAA;AACvC,OAAO,EAAgB,UAAU,EAAM,aAAa,EAAE,YAAY,EAAE,MAAM,MAAM,CAAA;;AAiBhF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,qBAea,qBACX,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS;IAkC1C,OAAO,CAAC,KAAK;IAhChB,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAA;IACzD,KAAK,CAAC,EAAE,gBAAgB,CAAA;IACxB,gBAAgB,UAAQ;IACxB,0BAA0B,UAAQ;IAClC,SAAS,UAAQ;IACjB,iBAAiB,CAAC,SAAI;IACtB,WAAW,UAAO;IACjB,YAAY,wBAAuC;IACnD,cAAc,uBAA6B;IAC3C,YAAY,qBAA2B;IACd,UAAU,EAAE,sBAAsB,CAAA;IACzC,YAAY,EAAE,eAAe,CAAA;IAC/B,QAAQ,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IAEhE,SAAS,EAAE,OAAO,CAAA;IAClB,OAAO,qBAA2B;IAClC,WAAW,UAAO;IAClB,gBAAgB,8CAAqD;IACrE,eAAe,wBAA+B;IAC9C,KAAK,EAAE,MAAM,GAAG,IAAI,CAAO;IAC3B,YAAY,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAA;IAC5C,YAAY,eAAqB;IAExB,aAAa,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,MAAM,CACzC;IAEjB,qBAAqB,UAAW,gBAAgB,YAG/C;gBAEmB,KAAK,EAAE,iBAAiB;IAC5C,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAWzC,QAAQ,IAAI,IAAI;IAkEhB,eAAe,IAAI,IAAI;IAQvB,WAAW,IAAI,IAAI;IAInB,gBAAgB,CAAC,KAAK,EAAE,gBAAgB;IASxC,KAAK,IAAI,IAAI;IASb,WAAW,CAAC,GAAG,EAAE,MAAM;IAMvB,iBAAiB;IAIjB;;;;;;OAMG;IACH,eAAe,CAAC,KAAK,EAAE,4BAA4B;yCAhKxC,qBAAqB;2CAArB,qBAAqB;CA6KjC"}
@@ -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"}
@@ -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>;
31
+ downloadUrl(url: string): Promise<void>;
33
32
  handleSecondaryTextClick(): 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;IAQxB,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,OAAO,EAAE,MAAM;IAInC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCArJV,mBAAmB;2CAAnB,mBAAmB;CA4J/B"}
@@ -0,0 +1,17 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export type SwitchToggleOption = {
4
+ label: string;
5
+ value: string;
6
+ checked: boolean;
7
+ };
8
+ export declare class SwitchToggleComponent {
9
+ options: SwitchToggleOption[];
10
+ ariaLabel?: string;
11
+ extraClasses?: string;
12
+ selectedValue: EventEmitter<SwitchToggleOption>;
13
+ onChange(selectedOption: SwitchToggleOption): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchToggleComponent, never>;
15
+ 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>;
16
+ }
17
+ //# 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,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,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;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"}