geonetwork-ui 2.4.0-dev.fdf8f64b → 2.4.0

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 (1144) hide show
  1. package/README.md +1 -7
  2. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +38 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +1 -1
  6. package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +1 -1
  7. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +51 -35
  8. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +71 -40
  9. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +37 -26
  10. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +30 -8
  11. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +32 -12
  12. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +1 -1
  13. package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +1 -1
  14. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +1 -1
  15. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +7 -6
  16. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +31 -18
  17. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +5 -5
  18. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +1 -1
  19. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  20. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +11 -5
  21. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +36 -12
  22. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +45 -18
  23. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +150 -87
  24. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +114 -28
  25. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +1 -1
  26. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +1 -1
  27. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +1 -1
  28. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +1 -1
  29. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +116 -63
  30. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +77 -22
  31. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +36 -9
  32. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +5 -5
  33. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.mjs +12 -0
  34. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +50 -25
  35. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +2 -1
  36. package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +4 -4
  37. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +61 -15
  38. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +4 -4
  39. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +5 -5
  40. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +5 -5
  41. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +59 -31
  42. package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +4 -4
  43. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +4 -4
  44. package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +1 -1
  45. package/esm2022/libs/common/domain/src/lib/model/error/index.mjs +2 -0
  46. package/esm2022/libs/common/domain/src/lib/model/error/publication-version.error.mjs +8 -0
  47. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +19 -19
  48. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  49. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  50. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  51. package/esm2022/libs/common/domain/src/lib/model/record/translation.model.mjs +2 -0
  52. package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +1 -1
  53. package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +2 -1
  54. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  55. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  56. package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +6 -6
  57. package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +6 -6
  58. package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +6 -6
  59. package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +6 -6
  60. package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +6 -6
  61. package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +6 -6
  62. package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +6 -6
  63. package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +6 -6
  64. package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +6 -6
  65. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +6 -6
  66. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +6 -6
  67. package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +6 -6
  68. package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +6 -6
  69. package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +6 -6
  70. package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +6 -6
  71. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +6 -6
  72. package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +6 -6
  73. package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +6 -6
  74. package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +6 -6
  75. package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +6 -6
  76. package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +6 -6
  77. package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +6 -6
  78. package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +6 -6
  79. package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +6 -6
  80. package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +6 -6
  81. package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +6 -6
  82. package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +6 -6
  83. package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +6 -6
  84. package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +6 -6
  85. package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +6 -6
  86. package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +6 -6
  87. package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +6 -6
  88. package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +7 -7
  89. package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +1 -1
  90. package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +4 -4
  91. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +14 -21
  92. package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +4 -4
  93. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +41 -16
  94. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -4
  95. package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +6 -6
  96. package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +5 -5
  97. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +4 -4
  98. package/esm2022/libs/feature/dataviz/src/index.mjs +1 -2
  99. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +18 -11
  100. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +7 -6
  101. package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +4 -4
  102. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +7 -10
  103. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +20 -9
  104. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +16 -10
  105. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +4 -1
  106. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +23 -6
  107. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +12 -4
  108. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  109. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +25 -1
  110. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +2 -1
  111. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +68 -0
  112. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +5 -6
  113. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +18 -10
  114. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +36 -18
  115. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +23 -9
  116. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +8 -7
  117. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +3 -3
  118. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +76 -0
  119. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.mjs +35 -0
  120. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +130 -0
  121. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -6
  122. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +19 -9
  123. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.mjs +19 -0
  124. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +5 -5
  125. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +5 -5
  126. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +31 -50
  127. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +4 -4
  128. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +3 -3
  129. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +18 -11
  130. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +17 -12
  131. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +17 -17
  132. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +19 -12
  133. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +5 -5
  134. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +7 -26
  135. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +6 -30
  136. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.mjs +44 -0
  137. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +19 -9
  138. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +6 -6
  139. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +29 -12
  140. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -2
  141. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +6 -6
  142. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +5 -5
  143. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +7 -7
  144. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +5 -5
  145. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  146. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +4 -4
  147. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +77 -13
  148. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
  149. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +9 -5
  150. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +5 -5
  151. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +4 -4
  152. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +4 -4
  153. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +5 -5
  154. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +5 -5
  155. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +5 -5
  156. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +5 -5
  157. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +6 -6
  158. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +5 -9
  159. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -5
  160. package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +6 -6
  161. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +33 -15
  162. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +5 -5
  163. package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +4 -4
  164. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +4 -4
  165. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +4 -4
  166. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +4 -4
  167. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +6 -5
  168. package/esm2022/libs/feature/record/src/index.mjs +4 -1
  169. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +17 -10
  170. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +12 -10
  171. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +18 -10
  172. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +13 -11
  173. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +12 -10
  174. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +25 -58
  175. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +169 -0
  176. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +45 -0
  177. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +56 -20
  178. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +45 -0
  179. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +5 -5
  180. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +14 -6
  181. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +1 -1
  182. package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +6 -6
  183. package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +5 -5
  184. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +5 -5
  185. package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +4 -4
  186. package/esm2022/libs/feature/router/src/lib/default/state/query-params.utils.mjs +50 -0
  187. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +8 -8
  188. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -8
  189. package/esm2022/libs/feature/search/src/index.mjs +3 -1
  190. package/esm2022/libs/feature/search/src/lib/constants.mjs +2 -2
  191. package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +4 -4
  192. package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +4 -4
  193. package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +5 -5
  194. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +7 -7
  195. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +22 -19
  196. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +30 -8
  197. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +5 -5
  198. package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +5 -5
  199. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +4 -4
  200. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +5 -5
  201. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +15 -10
  202. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +6 -6
  203. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +67 -0
  204. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +84 -0
  205. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +9 -5
  206. package/esm2022/libs/feature/search/src/lib/state/actions.mjs +1 -1
  207. package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +6 -6
  208. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +6 -6
  209. package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +1 -1
  210. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +7 -9
  211. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +1 -9
  212. package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +1 -1
  213. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +63 -8
  214. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +13 -6
  215. package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +4 -4
  216. package/esm2022/libs/ui/catalog/src/index.mjs +1 -2
  217. package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +6 -5
  218. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +15 -19
  219. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +17 -7
  220. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +3 -3
  221. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +6 -5
  222. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +6 -6
  223. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +7 -7
  224. package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +6 -6
  225. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +33 -7
  226. package/esm2022/libs/ui/elements/src/index.mjs +1 -3
  227. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +28 -9
  228. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +3 -3
  229. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -5
  230. package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +6 -5
  231. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +19 -8
  232. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +40 -12
  233. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +25 -7
  234. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +17 -9
  235. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +17 -7
  236. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -6
  237. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +7 -5
  238. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +7 -6
  239. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +28 -8
  240. package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +7 -6
  241. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +43 -16
  242. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +16 -9
  243. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +10 -8
  244. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +38 -7
  245. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +40 -35
  246. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +20 -11
  247. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +6 -6
  248. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +17 -98
  249. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +6 -6
  250. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +29 -11
  251. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -5
  252. package/esm2022/libs/ui/inputs/src/index.mjs +2 -2
  253. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +32 -14
  254. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +21 -7
  255. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +4 -4
  256. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +7 -7
  257. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +3 -3
  258. package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +5 -5
  259. package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +10 -7
  260. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +19 -9
  261. package/esm2022/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.mjs +65 -0
  262. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +19 -9
  263. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +3 -3
  264. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +8 -8
  265. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +25 -9
  266. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +5 -5
  267. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +32 -11
  268. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +4 -4
  269. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +38 -11
  270. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +7 -7
  271. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +17 -7
  272. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -6
  273. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +8 -5
  274. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +3 -3
  275. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +3 -3
  276. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +31 -26
  277. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +52 -23
  278. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +5 -5
  279. package/esm2022/libs/ui/layout/src/index.mjs +6 -1
  280. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +5 -5
  281. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +20 -15
  282. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +27 -22
  283. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +9 -7
  284. package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +8 -6
  285. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +7 -6
  286. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +6 -4
  287. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +12 -8
  288. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +6 -6
  289. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +5 -5
  290. package/esm2022/libs/ui/layout/src/lib/paginable.interface.mjs +2 -0
  291. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +52 -0
  292. package/esm2022/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.mjs +52 -0
  293. package/esm2022/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.mjs +36 -0
  294. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +26 -0
  295. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +5 -13
  296. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +6 -6
  297. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +17 -26
  298. package/esm2022/libs/ui/map/src/index.mjs +2 -1
  299. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +3 -3
  300. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +20 -10
  301. package/esm2022/libs/ui/map/src/lib/components/map-legend/map-legend.component.mjs +32 -0
  302. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +1 -1
  303. package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +7 -7
  304. package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +6 -6
  305. package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +3 -3
  306. package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +4 -4
  307. package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +3 -3
  308. package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +5 -5
  309. package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +3 -3
  310. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +8 -7
  311. package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +3 -3
  312. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +10 -9
  313. package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +3 -3
  314. package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +3 -3
  315. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  316. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +1 -1
  317. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  318. package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +5 -5
  319. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +25 -33
  320. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +74 -32
  321. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +34 -12
  322. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  323. package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +7 -6
  324. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +5 -5
  325. package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +8 -8
  326. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +5 -5
  327. package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +5 -5
  328. package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +5 -5
  329. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +9 -34
  330. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +9 -2
  331. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
  332. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +7 -1
  333. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  334. package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +1 -1
  335. package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +1 -1
  336. package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +1 -1
  337. package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +3 -3
  338. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +1 -1
  339. package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +1 -1
  340. package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +1 -1
  341. package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +1 -1
  342. package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +1 -1
  343. package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +1 -1
  344. package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +1 -1
  345. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +13 -11
  346. package/esm2022/libs/util/i18n/src/index.mjs +2 -1
  347. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +1 -38
  348. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +4 -4
  349. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +6 -6
  350. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +40 -0
  351. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +6 -6
  352. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +5 -5
  353. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +6 -4
  354. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +17 -17
  355. package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +3 -3
  356. package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +12 -9
  357. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +4 -4
  358. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -4
  359. package/esm2022/libs/util/shared/src/lib/utils/format-fields.mjs +9 -0
  360. package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +1 -1
  361. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +1 -1
  362. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +3 -1
  363. package/esm2022/libs/util/shared/src/lib/utils/no-duplicate-file-name.mjs +19 -0
  364. package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +1 -1
  365. package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +1 -1
  366. package/esm2022/libs/util/shared/src/lib/utils/url.mjs +1 -1
  367. package/esm2022/translations/de.json +49 -24
  368. package/esm2022/translations/en.json +113 -69
  369. package/esm2022/translations/es.json +38 -13
  370. package/esm2022/translations/fr.json +109 -65
  371. package/esm2022/translations/it.json +41 -16
  372. package/esm2022/translations/nl.json +38 -13
  373. package/esm2022/translations/pt.json +38 -13
  374. package/fesm2022/geonetwork-ui.mjs +7323 -5096
  375. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  376. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  377. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +5 -0
  378. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -0
  379. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +2 -2
  380. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
  381. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +6 -5
  382. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -1
  383. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +11 -5
  384. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -1
  385. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -1
  386. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -1
  387. package/libs/api/metadata-converter/src/lib/function-utils.d.ts +1 -1
  388. package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -1
  389. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +4 -4
  390. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  391. package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +1 -1
  392. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  393. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +1 -1
  394. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -1
  395. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +11 -10
  396. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  397. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  398. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +6 -3
  399. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  400. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +5 -2
  401. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  402. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +4 -2
  403. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  404. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +14 -4
  405. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  406. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +16 -9
  407. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  408. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +47 -4
  409. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  410. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +14 -2
  411. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  412. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts +4 -0
  413. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts.map +1 -0
  414. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +5 -1
  415. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  416. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +1 -0
  417. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -1
  418. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +15 -8
  419. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  420. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +5 -17
  421. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  422. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +1 -1
  423. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -1
  424. package/libs/common/domain/src/lib/model/error/index.d.ts +2 -0
  425. package/libs/common/domain/src/lib/model/error/index.d.ts.map +1 -0
  426. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts +5 -0
  427. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts.map +1 -0
  428. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -1
  429. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  430. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  431. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  432. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +27 -7
  433. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  434. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +2 -0
  435. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  436. package/libs/common/domain/src/lib/model/record/translation.model.d.ts +26 -0
  437. package/libs/common/domain/src/lib/model/record/translation.model.d.ts.map +1 -0
  438. package/libs/common/domain/src/lib/model/search/filter.model.d.ts +16 -1
  439. package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -1
  440. package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +1 -1
  441. package/libs/common/domain/src/lib/platform.service.interface.d.ts +4 -4
  442. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  443. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +5 -0
  444. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  445. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -1
  446. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +1 -1
  447. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -1
  448. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -1
  449. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +1 -1
  450. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +1 -1
  451. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -1
  452. package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +1 -1
  453. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +1 -1
  454. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -1
  455. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -1
  456. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -1
  457. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -1
  458. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -1
  459. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -1
  460. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -1
  461. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +8 -9
  462. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  463. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +10 -3
  464. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  465. package/libs/feature/dataviz/src/index.d.ts +0 -1
  466. package/libs/feature/dataviz/src/index.d.ts.map +1 -1
  467. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +1 -1
  468. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  469. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +1 -1
  470. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  471. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +1 -1
  472. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  473. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
  474. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  475. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
  476. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  477. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +33 -9
  478. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  479. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +18 -10
  480. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  481. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +11 -4
  482. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  483. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +1 -1
  484. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  485. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -0
  486. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  487. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +8 -1
  488. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  489. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts +16 -0
  490. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -0
  491. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -1
  492. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
  493. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
  494. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
  495. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +2 -1
  496. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
  497. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts +18 -0
  498. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -0
  499. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts +6 -0
  500. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts.map +1 -0
  501. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts +32 -0
  502. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts.map +1 -0
  503. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
  504. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts +9 -0
  505. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts.map +1 -0
  506. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  507. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +14 -35
  508. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  509. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +5 -2
  510. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -1
  511. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +4 -1
  512. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
  513. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +1 -2
  514. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -1
  515. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +5 -2
  516. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
  517. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +2 -8
  518. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  519. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +3 -7
  520. 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
  521. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts +14 -0
  522. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts.map +1 -0
  523. 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
  524. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +11 -9
  525. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  526. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -1
  527. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  528. package/libs/feature/editor/src/lib/fields.config.d.ts +11 -3
  529. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  530. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +6 -3
  531. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
  532. package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -0
  533. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  534. package/libs/feature/map/src/lib/+state/map.actions.d.ts +3 -3
  535. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  536. package/libs/feature/map/src/lib/feature-map.module.d.ts +9 -10
  537. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  538. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  539. package/libs/feature/notifications/src/lib/notifications.service.d.ts +1 -1
  540. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -1
  541. package/libs/feature/record/src/index.d.ts +3 -0
  542. package/libs/feature/record/src/index.d.ts.map +1 -1
  543. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +1 -1
  544. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  545. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +1 -1
  546. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  547. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +1 -1
  548. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  549. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -1
  550. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  551. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +1 -1
  552. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  553. package/libs/feature/record/src/lib/feature-record.module.d.ts +15 -25
  554. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  555. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts +74 -0
  556. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -0
  557. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts +19 -0
  558. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -0
  559. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +7 -1
  560. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  561. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +14 -0
  562. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts.map +1 -0
  563. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +13 -13
  564. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  565. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -9
  566. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  567. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  568. package/libs/feature/router/src/lib/default/constants.d.ts +3 -2
  569. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  570. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts +4 -0
  571. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts.map +1 -0
  572. package/libs/feature/router/src/lib/default/state/router.actions.d.ts +3 -3
  573. package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -1
  574. package/libs/feature/router/src/lib/default/state/router.effects.d.ts +5 -5
  575. package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -1
  576. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -1
  577. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  578. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +1 -1
  579. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -1
  580. package/libs/feature/search/src/index.d.ts +2 -0
  581. package/libs/feature/search/src/index.d.ts.map +1 -1
  582. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +1 -1
  583. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  584. package/libs/feature/search/src/lib/feature-search.module.d.ts +17 -15
  585. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  586. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +7 -1
  587. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -1
  588. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +1 -0
  589. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  590. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  591. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +22 -0
  592. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -0
  593. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts +34 -0
  594. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -0
  595. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -1
  596. package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -1
  597. package/libs/feature/search/src/lib/state/search.facade.d.ts +0 -2
  598. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  599. package/libs/feature/search/src/lib/state/selectors.d.ts +0 -2
  600. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  601. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -1
  602. package/libs/feature/search/src/lib/utils/service/fields.d.ts +24 -6
  603. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  604. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +4 -2
  605. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  606. package/libs/ui/catalog/src/index.d.ts +0 -1
  607. package/libs/ui/catalog/src/index.d.ts.map +1 -1
  608. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +1 -1
  609. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -1
  610. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +10 -8
  611. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
  612. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
  613. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
  614. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +1 -1
  615. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -1
  616. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +3 -3
  617. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
  618. package/libs/ui/elements/src/index.d.ts +0 -2
  619. package/libs/ui/elements/src/index.d.ts.map +1 -1
  620. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +1 -1
  621. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  622. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +1 -1
  623. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -1
  624. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  625. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  626. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +10 -9
  627. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  628. package/libs/ui/elements/src/lib/error/error.component.d.ts +1 -1
  629. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  630. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +1 -1
  631. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +1 -1
  632. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  633. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  634. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +2 -1
  635. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +1 -1
  636. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +1 -1
  637. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -1
  638. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -1
  639. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
  640. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +2 -2
  641. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -1
  642. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +1 -1
  643. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  644. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +1 -1
  645. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  646. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +2 -2
  647. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  648. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +1 -0
  649. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -1
  650. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +6 -17
  651. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  652. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +1 -1
  653. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  654. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +19 -37
  655. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  656. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +1 -1
  657. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -1
  658. package/libs/ui/inputs/src/index.d.ts +1 -1
  659. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  660. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  661. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  662. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +2 -2
  663. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
  664. package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -1
  665. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +1 -1
  666. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -1
  667. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  668. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts +20 -0
  669. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts.map +1 -0
  670. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  671. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
  672. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  673. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +3 -2
  674. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
  675. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +2 -1
  676. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  677. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +1 -1
  678. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -1
  679. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  680. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +1 -1
  681. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
  682. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +2 -1
  683. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
  684. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +28 -31
  685. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  686. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +14 -12
  687. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -1
  688. package/libs/ui/layout/src/index.d.ts +5 -0
  689. package/libs/ui/layout/src/index.d.ts.map +1 -1
  690. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +7 -5
  691. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  692. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +9 -7
  693. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
  694. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +1 -1
  695. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  696. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +1 -1
  697. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -1
  698. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +2 -1
  699. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +1 -1
  700. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  701. package/libs/ui/layout/src/lib/paginable.interface.d.ts +15 -0
  702. package/libs/ui/layout/src/lib/paginable.interface.d.ts.map +1 -0
  703. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts +11 -0
  704. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts.map +1 -0
  705. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts +9 -0
  706. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
  707. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts +10 -0
  708. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts.map +1 -0
  709. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +8 -0
  710. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
  711. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  712. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +6 -8
  713. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  714. package/libs/ui/map/src/index.d.ts +1 -0
  715. package/libs/ui/map/src/index.d.ts.map +1 -1
  716. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -1
  717. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -1
  718. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts +12 -0
  719. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts.map +1 -0
  720. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -1
  721. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +10 -6
  722. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
  723. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +11 -4
  724. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  725. package/libs/ui/search/src/lib/ui-search.module.d.ts +6 -5
  726. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  727. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +1 -1
  728. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -1
  729. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -1
  730. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +1 -1
  731. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -1
  732. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +1 -1
  733. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -1
  734. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +9 -13
  735. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -1
  736. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  737. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  738. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -1
  739. package/libs/util/app-config/src/lib/model.d.ts +6 -1
  740. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  741. package/libs/util/data-fetcher/src/lib/model.d.ts +2 -2
  742. package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -1
  743. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -1
  744. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -1
  745. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -1
  746. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -1
  747. package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -1
  748. package/libs/util/data-fetcher/src/lib/utils.d.ts +1 -1
  749. package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -1
  750. package/libs/util/i18n/src/index.d.ts +1 -0
  751. package/libs/util/i18n/src/index.d.ts.map +1 -1
  752. package/libs/util/i18n/src/lib/i18n.constants.d.ts +0 -35
  753. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  754. package/libs/util/i18n/src/lib/language-codes.d.ts +38 -0
  755. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -0
  756. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  757. package/libs/util/shared/src/lib/links/link-utils.d.ts +16 -16
  758. package/libs/util/shared/src/lib/services/proxy.service.d.ts +4 -2
  759. package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -1
  760. package/libs/util/shared/src/lib/utils/format-fields.d.ts +2 -0
  761. package/libs/util/shared/src/lib/utils/format-fields.d.ts.map +1 -0
  762. package/libs/util/shared/src/lib/utils/index.d.ts +2 -0
  763. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  764. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts +2 -0
  765. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts.map +1 -0
  766. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +4 -1
  767. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +1 -1
  768. package/package.json +50 -43
  769. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  770. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +50 -0
  771. package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +1 -1
  772. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +160 -34
  773. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +140 -47
  774. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +62 -47
  775. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +37 -7
  776. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +51 -18
  777. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +473 -2
  778. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +36 -3
  779. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +246 -0
  780. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +101 -0
  781. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +187 -0
  782. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +20 -3
  783. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +336 -5
  784. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +216 -0
  785. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +84 -2
  786. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +336 -9
  787. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +404 -2
  788. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +4 -1
  789. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +451 -0
  790. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +289 -0
  791. package/src/libs/api/metadata-converter/src/lib/function-utils.ts +1 -1
  792. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +2 -1
  793. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +29 -23
  794. package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +1 -1
  795. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +11 -10
  796. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +15 -3
  797. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +69 -20
  798. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +100 -25
  799. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +165 -81
  800. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +279 -49
  801. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +428 -172
  802. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +97 -24
  803. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +35 -6
  804. package/src/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.ts +13 -0
  805. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +58 -23
  806. package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +1 -0
  807. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +111 -52
  808. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +1 -1
  809. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +113 -31
  810. package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +1 -1
  811. package/src/libs/common/domain/src/lib/model/error/index.ts +1 -0
  812. package/src/libs/common/domain/src/lib/model/error/publication-version.error.ts +9 -0
  813. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +1 -1
  814. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  815. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +44 -7
  816. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +4 -0
  817. package/src/libs/common/domain/src/lib/model/record/translation.model.ts +49 -0
  818. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +17 -1
  819. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -0
  820. package/src/libs/common/domain/src/lib/platform.service.interface.ts +4 -3
  821. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +4 -0
  822. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +10 -3
  823. package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.fixtures.ts +1673 -0
  824. package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.fixtures.ts +12931 -0
  825. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +37 -28
  826. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +117 -15
  827. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -9
  828. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -5
  829. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +41 -5
  830. package/src/libs/feature/dataviz/src/index.ts +0 -1
  831. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +1 -1
  832. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +20 -2
  833. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +3 -1
  834. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +6 -1
  835. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +30 -7
  836. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -1
  837. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +15 -2
  838. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +16 -0
  839. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +41 -2
  840. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -0
  841. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +1 -1
  842. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +27 -0
  843. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +5 -0
  844. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.css +4 -0
  845. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +28 -0
  846. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +71 -0
  847. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -2
  848. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +3 -0
  849. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +7 -6
  850. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +12 -2
  851. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +3 -4
  852. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +32 -11
  853. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +1 -1
  854. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +15 -2
  855. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +2 -0
  856. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +1 -2
  857. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.css +4 -0
  858. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.html +24 -0
  859. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +85 -0
  860. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.ts +42 -0
  861. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.css +4 -0
  862. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.html +34 -0
  863. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +210 -0
  864. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +1 -1
  865. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +1 -1
  866. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +13 -2
  867. package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.ts → form-field-date/form-field-date.component.ts} +4 -4
  868. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.html +1 -1
  869. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +11 -8
  870. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +33 -45
  871. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +55 -40
  872. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +29 -18
  873. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +83 -66
  874. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +27 -17
  875. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +1 -1
  876. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +15 -12
  877. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +22 -11
  878. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +30 -17
  879. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +2 -2
  880. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +4 -25
  881. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +3 -23
  882. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -5
  883. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +2 -42
  884. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.html +5 -0
  885. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.ts +60 -0
  886. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +3 -2
  887. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +13 -2
  888. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +1 -0
  889. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +55 -21
  890. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +33 -8
  891. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -1
  892. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +6 -1
  893. package/src/libs/feature/editor/src/lib/fields.config.ts +83 -12
  894. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +12 -4
  895. package/src/libs/feature/editor/src/lib/services/editor.service.ts +7 -0
  896. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +2 -2
  897. package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -2
  898. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +3 -5
  899. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +23 -4
  900. package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -1
  901. package/src/libs/feature/record/src/index.ts +3 -0
  902. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +1 -1
  903. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +15 -0
  904. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +5 -0
  905. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +16 -1
  906. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +5 -0
  907. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +1 -1
  908. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +8 -1
  909. package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -38
  910. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.css +22 -0
  911. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +132 -0
  912. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +253 -0
  913. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.html +37 -0
  914. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +43 -0
  915. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +50 -12
  916. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +62 -4
  917. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +45 -0
  918. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +10 -1
  919. package/src/libs/feature/router/src/lib/default/constants.ts +6 -1
  920. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +61 -0
  921. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  922. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +5 -3
  923. package/src/libs/feature/search/src/index.ts +2 -0
  924. package/src/libs/feature/search/src/lib/constants.ts +1 -1
  925. package/src/libs/feature/search/src/lib/facets/facets.service.ts +4 -4
  926. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +3 -0
  927. package/src/libs/feature/search/src/lib/feature-search.module.ts +15 -8
  928. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +20 -10
  929. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +32 -1
  930. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -6
  931. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +12 -1
  932. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +16 -12
  933. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.css +0 -0
  934. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.html +17 -0
  935. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +78 -0
  936. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.css +0 -0
  937. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.html +20 -0
  938. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +118 -0
  939. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +4 -0
  940. package/src/libs/feature/search/src/lib/state/actions.ts +69 -17
  941. package/src/libs/feature/search/src/lib/state/effects.ts +1 -1
  942. package/src/libs/feature/search/src/lib/state/search.facade.ts +0 -8
  943. package/src/libs/feature/search/src/lib/state/selectors.ts +0 -18
  944. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +20 -3
  945. package/src/libs/feature/search/src/lib/utils/service/fields.ts +91 -12
  946. package/src/libs/ui/catalog/src/index.ts +0 -1
  947. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +3 -0
  948. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
  949. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +15 -21
  950. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +2 -3
  951. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +11 -0
  952. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +3 -0
  953. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +1 -1
  954. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +6 -5
  955. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +17 -2
  956. package/src/libs/ui/elements/src/index.ts +0 -2
  957. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +18 -8
  958. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +21 -1
  959. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +3 -0
  960. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +7 -5
  961. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +12 -1
  962. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +1 -1
  963. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +57 -11
  964. package/src/libs/ui/elements/src/lib/error/error.component.css +24 -19
  965. package/src/libs/ui/elements/src/lib/error/error.component.html +11 -21
  966. package/src/libs/ui/elements/src/lib/error/error.component.ts +19 -0
  967. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +3 -6
  968. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +15 -0
  969. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +2 -6
  970. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +13 -2
  971. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +0 -2
  972. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.html +4 -1
  973. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +1 -0
  974. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +4 -1
  975. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +20 -22
  976. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +24 -0
  977. package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +7 -3
  978. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +1 -1
  979. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +47 -26
  980. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +43 -1
  981. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +18 -1
  982. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  983. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +7 -1
  984. package/src/libs/ui/elements/src/lib/notification/notification.component.html +10 -14
  985. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +33 -2
  986. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.css +2 -2
  987. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +44 -35
  988. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +4 -4
  989. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +15 -0
  990. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -55
  991. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +2 -2
  992. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +2 -6
  993. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +22 -0
  994. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -4
  995. package/src/libs/ui/inputs/src/index.ts +1 -1
  996. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +3 -10
  997. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +5 -5
  998. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +18 -2
  999. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +2 -2
  1000. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +15 -2
  1001. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +4 -1
  1002. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -3
  1003. package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +4 -1
  1004. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +5 -6
  1005. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +7 -0
  1006. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +1 -3
  1007. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +13 -2
  1008. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +5 -0
  1009. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +30 -0
  1010. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +63 -0
  1011. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +1 -3
  1012. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +13 -2
  1013. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +16 -20
  1014. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +7 -7
  1015. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +16 -2
  1016. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +4 -1
  1017. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +14 -13
  1018. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +19 -3
  1019. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +32 -28
  1020. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +32 -3
  1021. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -3
  1022. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +4 -1
  1023. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +2 -2
  1024. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +13 -2
  1025. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -9
  1026. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +2 -6
  1027. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +6 -0
  1028. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +1 -0
  1029. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -0
  1030. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +21 -11
  1031. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +1 -1
  1032. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +12 -21
  1033. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +49 -20
  1034. package/src/libs/ui/layout/src/index.ts +5 -0
  1035. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +0 -16
  1036. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +4 -12
  1037. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +20 -11
  1038. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -16
  1039. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -12
  1040. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +22 -19
  1041. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +2 -4
  1042. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +8 -2
  1043. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +2 -6
  1044. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +6 -0
  1045. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
  1046. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
  1047. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +1 -0
  1048. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +4 -8
  1049. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +9 -9
  1050. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +13 -3
  1051. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
  1052. package/src/libs/ui/layout/src/lib/paginable.interface.ts +14 -0
  1053. package/src/libs/ui/layout/src/lib/pagination/pagination.component.css +0 -0
  1054. package/src/libs/ui/{elements → layout}/src/lib/pagination/pagination.component.html +12 -13
  1055. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +45 -0
  1056. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
  1057. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.html +51 -0
  1058. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.ts +50 -0
  1059. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.css +16 -0
  1060. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.html +15 -0
  1061. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.ts +31 -0
  1062. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +18 -0
  1063. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +29 -0
  1064. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.css +4 -2
  1065. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +1 -9
  1066. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +8 -15
  1067. package/src/libs/ui/map/src/index.ts +1 -0
  1068. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.html +4 -3
  1069. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +13 -2
  1070. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.css +5 -0
  1071. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.html +1 -0
  1072. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.ts +39 -0
  1073. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +17 -13
  1074. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +16 -10
  1075. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +1 -1
  1076. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +59 -26
  1077. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +17 -30
  1078. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +35 -27
  1079. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +89 -28
  1080. package/src/libs/ui/search/src/lib/ui-search.module.ts +22 -3
  1081. package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +4 -6
  1082. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +2 -4
  1083. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +8 -2
  1084. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +1 -0
  1085. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +1 -0
  1086. package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +2 -2
  1087. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +2 -18
  1088. package/src/libs/util/app-config/src/lib/app-config.ts +9 -2
  1089. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  1090. package/src/libs/util/app-config/src/lib/map-layers.ts +6 -0
  1091. package/src/libs/util/app-config/src/lib/model.ts +6 -1
  1092. package/src/libs/util/data-fetcher/src/lib/model.ts +6 -6
  1093. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -1
  1094. package/src/libs/util/data-fetcher/src/lib/utils.ts +13 -11
  1095. package/src/libs/util/i18n/src/index.ts +1 -0
  1096. package/src/libs/util/i18n/src/lib/i18n.constants.ts +0 -43
  1097. package/src/libs/util/i18n/src/lib/lang.service.ts +1 -1
  1098. package/src/libs/util/i18n/src/lib/language-codes.ts +44 -0
  1099. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +2 -0
  1100. package/src/libs/util/shared/src/lib/links/link-utils.ts +17 -17
  1101. package/src/libs/util/shared/src/lib/services/proxy.service.ts +7 -3
  1102. package/src/libs/util/shared/src/lib/utils/format-fields.ts +11 -0
  1103. package/src/libs/util/shared/src/lib/utils/index.ts +2 -0
  1104. package/src/libs/util/shared/src/lib/utils/no-duplicate-file-name.ts +23 -0
  1105. package/src/libs/util/shared/src/lib/utils/temporal-extent-union.ts +6 -1
  1106. package/tailwind.base.css +17 -6
  1107. package/translations/de.json +49 -24
  1108. package/translations/en.json +113 -69
  1109. package/translations/es.json +38 -13
  1110. package/translations/fr.json +109 -65
  1111. package/translations/it.json +41 -16
  1112. package/translations/nl.json +38 -13
  1113. package/translations/pt.json +38 -13
  1114. package/translations/sk.json +39 -14
  1115. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +0 -74
  1116. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +0 -19
  1117. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +0 -57
  1118. package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +0 -54
  1119. package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +0 -66
  1120. package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +0 -29
  1121. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +0 -22
  1122. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +0 -1
  1123. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +0 -9
  1124. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +0 -1
  1125. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +0 -17
  1126. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +0 -1
  1127. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +0 -16
  1128. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +0 -1
  1129. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +0 -17
  1130. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +0 -1
  1131. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +0 -12
  1132. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +0 -1
  1133. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +0 -48
  1134. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -35
  1135. package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +0 -50
  1136. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +0 -33
  1137. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +0 -68
  1138. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +0 -26
  1139. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +0 -32
  1140. /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.css → form-field-date/form-field-date.component.css} +0 -0
  1141. /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.html → form-field-date/form-field-date.component.html} +0 -0
  1142. /package/src/libs/{ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.css} +0 -0
  1143. /package/src/libs/{ui/elements/src/lib/pagination/pagination.component.css → feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.css} +0 -0
  1144. /package/src/libs/ui/{inputs → layout}/src/lib/previous-next-buttons/previous-next-buttons.component.css +0 -0
@@ -1,11 +1,8 @@
1
- import { OgcApiEndpoint, WfsEndpoint } from '@camptocamp/ogc-client';
1
+ import { MimeType, OgcApiEndpoint, WfsEndpoint } from '@camptocamp/ogc-client';
2
2
  import { DatasetServiceDistribution, ServiceProtocol } from '../../../../../../libs/common/domain/src/lib/model/record';
3
3
  import { BehaviorSubject } from 'rxjs';
4
+ import { DropdownChoice } from '../../../../../../libs/ui/inputs/src';
4
5
  import * as i0 from "@angular/core";
5
- interface OutputFormats {
6
- itemFormats?: any[];
7
- outputFormats?: any[];
8
- }
9
6
  export declare class RecordApiFormComponent {
10
7
  set apiLink(value: DatasetServiceDistribution);
11
8
  offset$: BehaviorSubject<string>;
@@ -16,12 +13,8 @@ export declare class RecordApiFormComponent {
16
13
  apiFeatureType: string;
17
14
  supportOffset: boolean;
18
15
  accessServiceProtocol: ServiceProtocol | undefined;
19
- outputFormats: {
20
- value: string;
21
- label: string;
22
- }[];
16
+ outputFormats: DropdownChoice[];
23
17
  endpoint: WfsEndpoint | OgcApiEndpoint | undefined;
24
- firstCollection: string | undefined;
25
18
  apiQueryUrl$: import("rxjs").Observable<string>;
26
19
  noLimitChecked$: import("rxjs").Observable<boolean>;
27
20
  displayLimit$: import("rxjs").Observable<string>;
@@ -30,15 +23,11 @@ export declare class RecordApiFormComponent {
30
23
  setFormat(value: string | unknown): void;
31
24
  resetUrl(): void;
32
25
  parseOutputFormats(): Promise<void>;
33
- mapFormats(formats: any[]): {
34
- label: string;
35
- value: "html" | "svg" | "gml" | "json" | "pdf" | "csv" | "excel" | "geojson" | "shp" | "kml" | "gpkg" | "zip" | "jpg" | "dxf" | "fgb" | "jsonfg";
36
- }[];
37
- getOutputFormats(url: string): Promise<OutputFormats>;
26
+ mimeTypeToFormatName(mimeType: MimeType): DropdownChoice | null;
27
+ getOutputFormats(): Promise<MimeType[]>;
38
28
  createEndpoint(): Promise<void>;
39
29
  generateApiQueryUrl(offset: string, limit: string, format: string): Promise<string>;
40
30
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordApiFormComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<RecordApiFormComponent, "gn-ui-record-api-form", never, { "apiLink": { "alias": "apiLink"; "required": false; }; }, {}, never, never, false, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<RecordApiFormComponent, "gn-ui-record-api-form", never, { "apiLink": { "alias": "apiLink"; "required": false; }; }, {}, never, never, true, never>;
42
32
  }
43
- export {};
44
33
  //# sourceMappingURL=record-api-form.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AACpE,OAAO,EACL,0BAA0B,EAC1B,eAAe,EAChB,MAAM,2DAA2D,CAAA;AAElE,OAAO,EAAE,eAAe,EAAyC,MAAM,MAAM,CAAA;;AAQ7E,UAAU,aAAa;IACrB,WAAW,CAAC,EAAE,GAAG,EAAE,CAAA;IACnB,aAAa,CAAC,EAAE,GAAG,EAAE,CAAA;CACtB;AAED,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EASrD;IAED,OAAO,0BAA6C;IACpD,MAAM,0BAA4C;IAClD,OAAO,0BAA6C;IACpD,SAAS,gDAER;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,cAAc,EAAE,MAAM,CAAA;IACtB,aAAa,UAAO;IACpB,qBAAqB,EAAE,eAAe,GAAG,SAAS,CAAA;IAClD,aAAa;;;QAAqC;IAClD,QAAQ,EAAE,WAAW,GAAG,cAAc,GAAG,SAAS,CAAA;IAClD,eAAe,EAAE,MAAM,GAAG,SAAS,CAAA;IAEnC,YAAY,oCAUX;IAED,eAAe,qCAEd;IACD,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAItB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;IAMF,kBAAkB;IAoBxB,UAAU,CAAC,OAAO,EAAE,GAAG,EAAE;;;;IASnB,gBAAgB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC;IAYrD,cAAc;IAYd,mBAAmB,CACvB,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,MAAM,CAAC;yCAxHP,sBAAsB;2CAAtB,sBAAsB;CA6IlC"}
1
+ {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAC9E,OAAO,EACL,0BAA0B,EAC1B,eAAe,EAChB,MAAM,2DAA2D,CAAA;AAElE,OAAO,EAAE,eAAe,EAAyC,MAAM,MAAM,CAAA;AAC7E,OAAO,EAEL,cAAc,EAGf,MAAM,sCAAsC,CAAA;;AAU7C,qBAca,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EASrD;IAED,OAAO,0BAA6C;IACpD,MAAM,0BAA4C;IAClD,OAAO,0BAA6C;IACpD,SAAS,gDAER;IACD,UAAU,EAAE,MAAM,CAAA;IAClB,cAAc,EAAE,MAAM,CAAA;IACtB,aAAa,UAAO;IACpB,qBAAqB,EAAE,eAAe,GAAG,SAAS,CAAA;IAClD,aAAa,EAAE,cAAc,EAAE,CAE9B;IACD,QAAQ,EAAE,WAAW,GAAG,cAAc,GAAG,SAAS,CAAA;IAElD,YAAY,oCAUX;IAED,eAAe,qCAEd;IACD,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAItB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;IAMF,kBAAkB;IAexB,oBAAoB,CAAC,QAAQ,EAAE,QAAQ,GAAG,cAAc,GAAG,IAAI;IAOzD,gBAAgB,IAAI,OAAO,CAAC,QAAQ,EAAE,CAAC;IAWvC,cAAc;IAgBd,mBAAmB,CACvB,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,MAAM,CAAC;yCArHP,sBAAsB;2CAAtB,sBAAsB;CA2IlC"}
@@ -7,6 +7,6 @@ export declare class RelatedRecordCardComponent {
7
7
  constructor();
8
8
  get classList(): string;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<RelatedRecordCardComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<RelatedRecordCardComponent, "gn-ui-related-record-card", never, { "record": { "alias": "record"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; }, {}, never, never, 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, true, never>;
11
11
  }
12
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;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
+ {"version":3,"file":"related-record-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,2DAA2D,CAAA;;AAQzF,qBAea,0BAA0B;IACrC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAQ;IAE3B,MAAM,EAAE,aAAa,CAAA;IACrB,UAAU,SAAK;;IAgBxB,IAAI,SAAS,WAEZ;yCAtBU,0BAA0B;2CAA1B,0BAA0B;CAuBtC"}
@@ -1,43 +1,25 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./metadata-info/metadata-info.component";
3
- import * as i2 from "./content-ghost/content-ghost.component";
4
- import * as i3 from "./download-item/download-item.component";
5
- import * as i4 from "./downloads-list/downloads-list.component";
6
- import * as i5 from "./api-card/api-card.component";
7
- import * as i6 from "./related-record-card/related-record-card.component";
8
- import * as i7 from "./metadata-contact/metadata-contact.component";
9
- import * as i8 from "./metadata-catalog/metadata-catalog.component";
10
- import * as i9 from "./metadata-quality/metadata-quality.component";
11
- import * as i10 from "./metadata-quality-item/metadata-quality-item.component";
12
- import * as i11 from "./error/error.component";
13
- import * as i12 from "./pagination/pagination.component";
14
- import * as i13 from "./avatar/avatar.component";
15
- import * as i14 from "./user-preview/user-preview.component";
16
- import * as i15 from "./metadata-info/linkify.directive";
17
- import * as i16 from "./pagination-buttons/pagination-buttons.component";
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
- import * as i31 from "./markdown-parser/markdown-parser.component";
33
- import * as i32 from "./thumbnail/thumbnail.component";
34
- import * as i33 from "./user-feedback-item/time-since.pipe";
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";
2
+ import * as i1 from "./avatar/avatar.component";
3
+ import * as i2 from "./user-preview/user-preview.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@angular/material/tooltip";
6
+ import * as i5 from "../../../widgets/src/lib/ui-widgets.module";
7
+ import * as i6 from "../../../layout/src/lib/ui-layout.module";
8
+ import * as i7 from "@ngx-translate/core";
9
+ import * as i8 from "../../../../util/shared/src/lib/util-shared.module";
10
+ import * as i9 from "@angular/router";
11
+ import * as i10 from "../../../inputs/src/lib/ui-inputs.module";
12
+ import * as i11 from "@angular/forms";
13
+ import * as i12 from "../../../widgets/src/lib/popover/popover.component";
14
+ import * as i13 from "./markdown-parser/markdown-parser.component";
15
+ import * as i14 from "./thumbnail/thumbnail.component";
16
+ import * as i15 from "./user-feedback-item/time-since.pipe";
17
+ import * as i16 from "../../../inputs/src/lib/badge/badge.component";
18
+ import * as i17 from "../../../layout/src/lib/max-lines/max-lines.component";
19
+ import * as i18 from "../../../inputs/src/lib/text-input/text-input.component";
38
20
  export declare class UiElementsModule {
39
21
  static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
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]>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.AvatarComponent, typeof i2.UserPreviewComponent], [typeof i3.CommonModule, typeof i4.MatTooltipModule, typeof i5.UiWidgetsModule, typeof i6.UiLayoutModule, typeof i7.TranslateModule, typeof i8.UtilSharedModule, typeof i9.RouterModule, typeof i10.UiInputsModule, typeof i11.FormsModule, typeof i3.NgOptimizedImage, typeof i12.PopoverComponent, typeof i13.MarkdownParserComponent, typeof i14.ThumbnailComponent, typeof i15.TimeSincePipe, typeof i16.BadgeComponent, typeof i17.MaxLinesComponent, typeof i18.TextInputComponent], [typeof i14.ThumbnailComponent, typeof i1.AvatarComponent, typeof i2.UserPreviewComponent, typeof i13.MarkdownParserComponent]>;
41
23
  static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
42
24
  }
43
25
  //# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,qBAiEa,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":";;;;;;;;;;;;;;;;;;;AAqBA,qBAiCa,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -16,6 +16,6 @@ export declare class UserFeedbackItemComponent implements OnInit {
16
16
  onNewAnswerValueChange(): void;
17
17
  publishNewAnswer(): void;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<UserFeedbackItemComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<UserFeedbackItemComponent, "gn-ui-user-feedback-item", never, { "userFeedbackParent": { "alias": "userFeedbackParent"; "required": false; }; "userFeedBacksAnswers": { "alias": "userFeedBacksAnswers"; "required": false; }; "activeUser": { "alias": "activeUser"; "required": false; }; "isLastComment": { "alias": "isLastComment"; "required": false; }; "isAddUserFeedbackLoading": { "alias": "isAddUserFeedbackLoading"; "required": false; }; }, { "newUserFeedbackAnswer": "newUserFeedbackAnswer"; }, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserFeedbackItemComponent, "gn-ui-user-feedback-item", never, { "userFeedbackParent": { "alias": "userFeedbackParent"; "required": false; }; "userFeedBacksAnswers": { "alias": "userFeedBacksAnswers"; "required": false; }; "activeUser": { "alias": "activeUser"; "required": false; }; "isLastComment": { "alias": "isLastComment"; "required": false; }; "isAddUserFeedbackLoading": { "alias": "isAddUserFeedbackLoading"; "required": false; }; }, { "newUserFeedbackAnswer": "newUserFeedbackAnswer"; }, never, never, true, never>;
20
20
  }
21
21
  //# sourceMappingURL=user-feedback-item.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"user-feedback-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,YAAY,EACZ,qBAAqB,EACtB,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAA;;AAEnF,qBAMa,yBAA0B,YAAW,MAAM;IAC7C,kBAAkB,EAAE,qBAAqB,CAAA;IACzC,oBAAoB,EAAE,qBAAqB,EAAE,CAAA;IAC7C,UAAU,EAAE,SAAS,CAAA;IACrB,aAAa,EAAE,OAAO,CAAA;IACtB,wBAAwB,EAAE,OAAO,CAAA;IAEhC,qBAAqB,6BAAmC;IAElE,UAAU,UAAQ;IAClB,SAAS,SAAK;IACd,aAAa,UAAO;IAEpB,QAAQ,IAAI,IAAI;IAIhB,sBAAsB;IAItB,gBAAgB;yCArBL,yBAAyB;2CAAzB,yBAAyB;CAyCrC"}
1
+ {"version":3,"file":"user-feedback-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,YAAY,EACZ,qBAAqB,EACtB,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAA;;AASnF,qBAqBa,yBAA0B,YAAW,MAAM;IAC7C,kBAAkB,EAAE,qBAAqB,CAAA;IACzC,oBAAoB,EAAE,qBAAqB,EAAE,CAAA;IAC7C,UAAU,EAAE,SAAS,CAAA;IACrB,aAAa,EAAE,OAAO,CAAA;IACtB,wBAAwB,EAAE,OAAO,CAAA;IAEhC,qBAAqB,6BAAmC;IAElE,UAAU,UAAQ;IAClB,SAAS,SAAK;IACd,aAAa,UAAO;IAEpB,QAAQ,IAAI,IAAI;IAIhB,sBAAsB;IAItB,gBAAgB;yCArBL,yBAAyB;2CAAzB,yBAAyB;CAyCrC"}
@@ -7,6 +7,7 @@ export * from './lib/chips-input/chips-input.component';
7
7
  export * from './lib/copy-text-button/copy-text-button.component';
8
8
  export * from './lib/date-picker/date-picker.component';
9
9
  export * from './lib/date-range-picker/date-range-picker.component';
10
+ export * from './lib/date-range-dropdown/date-range-dropdown.component';
10
11
  export * from './lib/drag-and-drop-file-input/drag-and-drop-file-input.component';
11
12
  export * from './lib/dropdown-multiselect/dropdown-multiselect.component';
12
13
  export * from './lib/dropdown-multiselect/dropdown-multiselect.model';
@@ -21,7 +22,6 @@ export * from './lib/text-input/text-input.component';
21
22
  export * from './lib/ui-inputs.module';
22
23
  export * from './lib/url-input/url-input.component';
23
24
  export * from './lib/viewport-intersector/viewport-intersector.component';
24
- export * from './lib/previous-next-buttons/previous-next-buttons.component';
25
25
  export * from './lib/switch-toggle/switch-toggle.component';
26
26
  export * from './lib/file-input/file-input.component';
27
27
  export * from './lib/image-input/image-input.component';
@@ -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,qCAAqC,CAAA;AACnD,cAAc,2DAA2D,CAAA;AACzE,cAAc,6DAA6D,CAAA;AAC3E,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,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,yDAAyD,CAAA;AACvE,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,qCAAqC,CAAA;AACnD,cAAc,2DAA2D,CAAA;AACzE,cAAc,6CAA6C,CAAA;AAC3D,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA"}
@@ -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;;AAkBhF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,qBAgBa,qBACX,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS;IAmC1C,OAAO,CAAC,KAAK;IAjChB,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;IAEtB,WAAW,UAAQ;IAClB,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;yCAjKxC,qBAAqB;2CAArB,qBAAqB;CA8KjC"}
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;;AAwBhF,MAAM,MAAM,gBAAgB,GAAG,OAAO,CAAA;AAEtC,qBAyBa,qBACX,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,SAAS;IAmC1C,OAAO,CAAC,KAAK;IAjChB,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;IAEtB,WAAW,UAAQ;IAClB,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;yCAjKxC,qBAAqB;2CAArB,qBAAqB;CA+KjC"}
@@ -1 +1 @@
1
- {"version":3,"file":"badge.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/badge/badge.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAItB,qBAQa,cAAc;IAChB,SAAS,CAAC,UAAQ;IAClB,SAAS,CAAC,UAAQ;IACjB,kBAAkB,qBAA2B;IAEvD,WAAW;yCALA,cAAc;2CAAd,cAAc;CAQ1B"}
1
+ {"version":3,"file":"badge.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/badge/badge.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAStB,qBAgBa,cAAc;IAChB,SAAS,CAAC,UAAQ;IAClB,SAAS,CAAC,UAAQ;IACjB,kBAAkB,qBAA2B;IAEvD,WAAW;yCALA,cAAc;2CAAd,cAAc;CAQ1B"}
@@ -5,8 +5,8 @@ export declare class CheckToggleComponent {
5
5
  label: string;
6
6
  value: boolean;
7
7
  color: 'primary' | 'secondary';
8
- toggled: EventEmitter<any>;
9
- toggle(event: Event): void;
8
+ toggled: EventEmitter<boolean>;
9
+ toggle(value: boolean): void;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckToggleComponent, never>;
11
11
  static ɵcmp: i0.ɵɵComponentDeclaration<CheckToggleComponent, "gn-ui-check-toggle", never, { "title": { "alias": "title"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "toggled": "toggled"; }, never, never, true, never>;
12
12
  }
@@ -1 +1 @@
1
- {"version":3,"file":"check-toggle.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAQa,oBAAoB;IACtB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,OAAO,CAAA;IACd,KAAK,EAAE,SAAS,GAAG,WAAW,CAAY;IACzC,OAAO,oBAAqB;IAEtC,MAAM,CAAC,KAAK,EAAE,KAAK;yCAPR,oBAAoB;2CAApB,oBAAoB;CAUhC"}
1
+ {"version":3,"file":"check-toggle.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAQa,oBAAoB;IACtB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,OAAO,CAAA;IACd,KAAK,EAAE,SAAS,GAAG,WAAW,CAAY;IACzC,OAAO,wBAA8B;IAE/C,MAAM,CAAC,KAAK,EAAE,OAAO;yCAPV,oBAAoB;2CAApB,oBAAoB;CAUhC"}
@@ -1 +1 @@
1
- {"version":3,"file":"chips-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAA;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAE,UAAU,EAAM,OAAO,EAAgB,MAAM,MAAM,CAAA;;AAG5D,MAAM,WAAW,KAAK;IACpB,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;CACd;AAED,qBAKa,mBAAoB,YAAW,MAAM,EAAE,SAAS;IAuC/C,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,SAAS;IAtC9C,GAAG,EAAE,CAAC,IAAI,KAAA,KAAK,MAAM,CAAA;IACrB,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,KAAK,EAAE,CAAA;IACtB,QAAQ,UAAQ;IAChB,QAAQ,UAAQ;IAChB,iBAAiB,EAAE,KAAK,EAAE,CAAK;IAC9B,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,CAAA;IAE1C,OAAO,CAAC,YAAY,CAAc;IAElC,OAAO,UAAQ;IAEf,SAAS,EAAE,OAAO,CAAC,KAAK,EAAE,CAAC,CAAA;IAE3B,KAAK,EAAE,KAAK,EAAE,CAAK;IAEnB,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,CAAA;IAEhC,QAAQ,CAAC,KAAK,KAAA;IAId,wBAAwB,SAAU,MAAM,KAAG,WAAW,GAAG,CAAC,CAczD;gBAEmB,IAAI,EAAE,UAAU,EAAU,SAAS,EAAE,gBAAgB;IAMzE,QAAQ,IAAI,IAAI;IAYhB,WAAW;yCAzDA,mBAAmB;2CAAnB,mBAAmB;CA4D/B"}
1
+ {"version":3,"file":"chips-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAoB,SAAS,EAAE,MAAM,EAAU,MAAM,eAAe,CAAA;AAE3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACtD,OAAO,EAAE,UAAU,EAAM,OAAO,EAAgB,MAAM,MAAM,CAAA;;AAG5D,MAAM,WAAW,KAAK;IACpB,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;CACd;AAED,qBAKa,mBAAoB,YAAW,MAAM,EAAE,SAAS;IAwCzD,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,SAAS;IAxCV,GAAG,EAAE,CAAC,IAAI,KAAA,KAAK,MAAM,CAAA;IACrB,WAAW,EAAE,MAAM,CAAA;IACnB,aAAa,EAAE,KAAK,EAAE,CAAA;IACtB,QAAQ,UAAQ;IAChB,QAAQ,UAAQ;IAChB,iBAAiB,EAAE,KAAK,EAAE,CAAK;IAC9B,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,CAAA;IAE1C,OAAO,CAAC,YAAY,CAAc;IAElC,OAAO,UAAQ;IAEf,SAAS,EAAE,OAAO,CAAC,KAAK,EAAE,CAAC,CAAA;IAE3B,KAAK,EAAE,KAAK,EAAE,CAAK;IAEnB,WAAW,EAAE,UAAU,CAAC,KAAK,EAAE,CAAC,CAAA;IAEhC,QAAQ,CAAC,KAAK,KAAA;IAId,wBAAwB,SAAU,MAAM,KAAG,UAAU,CAAC,GAAG,CAAC,CAczD;gBAGS,IAAI,EAAE,UAAU,EAChB,SAAS,EAAE,gBAAgB;IAOrC,QAAQ,IAAI,IAAI;IAYhB,WAAW;yCA5DA,mBAAmB;2CAAnB,mBAAmB;CA+D/B"}
@@ -6,6 +6,6 @@ export declare class CopyTextButtonComponent {
6
6
  rows: number;
7
7
  copyText(event: MouseEvent): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<CopyTextButtonComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<CopyTextButtonComponent, "gn-ui-copy-text-button", never, { "text": { "alias": "text"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "displayText": { "alias": "displayText"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CopyTextButtonComponent, "gn-ui-copy-text-button", never, { "text": { "alias": "text"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "displayText": { "alias": "displayText"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; }, {}, never, never, true, never>;
10
10
  }
11
11
  //# sourceMappingURL=copy-text-button.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"copy-text-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts"],"names":[],"mappings":";AAEA,qBAMa,uBAAuB;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,UAAO;IAClB,IAAI,SAAI;IAEjB,QAAQ,CAAC,KAAK,EAAE,UAAU;yCANf,uBAAuB;2CAAvB,uBAAuB;CAUnC"}
1
+ {"version":3,"file":"copy-text-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts"],"names":[],"mappings":";AAMA,qBASa,uBAAuB;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,UAAO;IAClB,IAAI,SAAI;IAEjB,QAAQ,CAAC,KAAK,EAAE,UAAU;yCANf,uBAAuB;2CAAvB,uBAAuB;CAUnC"}
@@ -1 +1 @@
1
- {"version":3,"file":"date-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAMtB,qBAaa,mBAAmB;IACrB,IAAI,EAAE,IAAI,CAAA;IACT,UAAU,qBAA2B;yCAFpC,mBAAmB;2CAAnB,mBAAmB;CAG/B"}
1
+ {"version":3,"file":"date-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAWtB,qBAmBa,mBAAmB;IACrB,IAAI,EAAE,IAAI,CAAA;IACT,UAAU,qBAA2B;yCAFpC,mBAAmB;2CAAnB,mBAAmB;CAG/B"}
@@ -0,0 +1,20 @@
1
+ import { AfterViewChecked, ChangeDetectorRef, ElementRef, EventEmitter } from '@angular/core';
2
+ import { OverlayContainer } from '@angular/cdk/overlay';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DateRangeDropdownComponent implements AfterViewChecked {
5
+ private overlayContainer;
6
+ private cdr;
7
+ title: string;
8
+ startDate: Date;
9
+ endDate: Date;
10
+ startDateChange: EventEmitter<Date>;
11
+ endDateChange: EventEmitter<Date>;
12
+ picker: ElementRef;
13
+ isPickerDisplayed: boolean;
14
+ constructor(overlayContainer: OverlayContainer, cdr: ChangeDetectorRef);
15
+ ngAfterViewChecked(): void;
16
+ checkPickerOverlay(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeDropdownComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeDropdownComponent, "gn-ui-date-range-dropdown", never, { "title": { "alias": "title"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; }, { "startDateChange": "startDateChange"; "endDateChange": "endDateChange"; }, never, never, true, never>;
19
+ }
20
+ //# sourceMappingURL=date-range-dropdown.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"date-range-dropdown.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAIb,MAAM,eAAe,CAAA;AAKtB,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;;AAIvD,qBAmBa,0BAA2B,YAAW,gBAAgB;IAW/D,OAAO,CAAC,gBAAgB;IACxB,OAAO,CAAC,GAAG;IAXJ,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,IAAI,CAAA;IACf,OAAO,EAAE,IAAI,CAAA;IACZ,eAAe,qBAA2B;IAC1C,aAAa,qBAA2B;IAE7B,MAAM,EAAE,UAAU,CAAA;IACvC,iBAAiB,UAAQ;gBAGf,gBAAgB,EAAE,gBAAgB,EAClC,GAAG,EAAE,iBAAiB;IAGhC,kBAAkB;IAIlB,kBAAkB;yCAnBP,0BAA0B;2CAA1B,0BAA0B;CAyBtC"}
@@ -1 +1 @@
1
- {"version":3,"file":"date-range-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAMtB,qBAaa,wBAAwB;IAC1B,SAAS,EAAE,IAAI,CAAA;IACf,OAAO,EAAE,IAAI,CAAA;IACZ,eAAe,qBAA2B;IAC1C,aAAa,qBAA2B;yCAJvC,wBAAwB;2CAAxB,wBAAwB;CAKpC"}
1
+ {"version":3,"file":"date-range-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAWtB,qBAmBa,wBAAwB;IAC1B,SAAS,EAAE,IAAI,CAAA;IACf,OAAO,EAAE,IAAI,CAAA;IACZ,eAAe,qBAA2B;IAC1C,aAAa,qBAA2B;yCAJvC,wBAAwB;2CAAxB,wBAAwB;CAKpC"}
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown-selector.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EAElB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAGL,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EAGV,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;;AAQ1D,qBAca,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,UAAO;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC9B,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;IACjC,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,SAAK;IAClB,QAAQ,SAAK;IACb,QAAQ,EAAE,OAAO,CAAA;IAChB,WAAW,wBAA8C;IACvC,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAC5D,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IAED,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IAEnC,IAAI,cAAc,IAAI,cAAc,CAKnC;IAED,IAAI,EAAE,WAEL;IAED,cAAc,IAAI,MAAM;IAIxB,QAAQ,IAAI,IAAI;IAOhB,UAAU,CAAC,MAAM,EAAE,cAAc;IAIjC,aAAa,CAAC,MAAM,EAAE,cAAc;IAMpC,WAAW;IAcX,YAAY;IAIZ,cAAc;IAId,aAAa;IAIP,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAuB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAczC,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;IAED,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc;yCAnJ/C,yBAAyB;2CAAzB,yBAAyB;CAyJrC"}
1
+ {"version":3,"file":"dropdown-selector.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EAElB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAGL,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EAGV,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;;AAa1D,qBAuBa,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,UAAO;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC9B,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;IACjC,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,SAAK;IAClB,QAAQ,SAAK;IACb,QAAQ,EAAE,OAAO,CAAA;IAChB,WAAW,wBAA8C;IACvC,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAC5D,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IAED,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IAEnC,IAAI,cAAc,IAAI,cAAc,CAKnC;IAED,IAAI,EAAE,WAEL;IAED,cAAc,IAAI,MAAM;IAIxB,QAAQ,IAAI,IAAI;IAOhB,UAAU,CAAC,MAAM,EAAE,cAAc;IAIjC,aAAa,CAAC,MAAM,EAAE,cAAc;IAMpC,WAAW;IAcX,YAAY;IAIZ,cAAc;IAId,aAAa;IAIP,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAuB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAczC,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;IAED,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc;yCAnJ/C,yBAAyB;2CAAzB,yBAAyB;CAyJrC"}
@@ -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,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"}
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;IAOnE,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,QAAQ;IAPT,iBAAiB,CAAC,EAAE,MAAM,CAAA;IACzB,oBAAoB,uBAA6B;IAE3D,aAAa,EAAE,gBAAgB,CAAA;gBAGrB,EAAE,EAAE,UAAU,EACd,QAAQ,EAAE,SAAS;IAG7B,WAAW;IAUX,eAAe;yCArBJ,sBAAsB;2CAAtB,sBAAsB;CAiDlC"}
@@ -4,6 +4,7 @@ export declare class FileInputComponent {
4
4
  private cd;
5
5
  maxSizeMB: number;
6
6
  uploadProgress?: number;
7
+ disabled?: boolean;
7
8
  fileChange: EventEmitter<File>;
8
9
  urlChange: EventEmitter<string>;
9
10
  uploadCancel: EventEmitter<void>;
@@ -15,10 +16,10 @@ export declare class FileInputComponent {
15
16
  handleDragFilesOver(dragFilesOver: boolean): void;
16
17
  handleDropFiles(files: File[]): void;
17
18
  handleFileInput(event: Event): void;
18
- handleUrlChange(url: string): void;
19
+ handleUrlChange(url: string | null): void;
19
20
  handleSecondaryTextClick(event: Event): void;
20
21
  handleCancel(): void;
21
22
  static ɵfac: i0.ɵɵFactoryDeclaration<FileInputComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<FileInputComponent, "gn-ui-file-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; }, never, never, true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileInputComponent, "gn-ui-file-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; }, never, never, true, never>;
23
24
  }
24
25
  //# sourceMappingURL=file-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"file-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/file-input/file-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAStB,qBAgBa,kBAAkB;IAajB,OAAO,CAAC,EAAE;IAZb,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;IACtB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAE/D,aAAa,UAAQ;IAErB,IAAI,kBAAkB,YAErB;gBAEmB,EAAE,EAAE,iBAAiB;IAEzC,cAAc;IAOd,gBAAgB;IAOhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAK1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAM7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAI5B,eAAe,CAAC,GAAG,EAAE,MAAM;IAI3B,wBAAwB,CAAC,KAAK,EAAE,KAAK;IAOrC,YAAY;yCAvDD,kBAAkB;2CAAlB,kBAAkB;CA0D9B"}
1
+ {"version":3,"file":"file-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/file-input/file-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AActB,qBAyBa,kBAAkB;IAcjB,OAAO,CAAC,EAAE;IAbb,SAAS,EAAE,MAAM,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,UAAQ;IAChB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAE/D,aAAa,UAAQ;IAErB,IAAI,kBAAkB,YAErB;gBAEmB,EAAE,EAAE,iBAAiB;IAEzC,cAAc;IAOd,gBAAgB;IAOhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAK1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAM7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAI5B,eAAe,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAKlC,wBAAwB,CAAC,KAAK,EAAE,KAAK;IAOrC,YAAY;yCAzDD,kBAAkB;2CAAlB,kBAAkB;CA4D9B"}
@@ -9,6 +9,7 @@ export declare class ImageInputComponent {
9
9
  altText?: string;
10
10
  uploadProgress?: number;
11
11
  uploadError?: boolean;
12
+ disabled?: boolean;
12
13
  fileChange: EventEmitter<File>;
13
14
  urlChange: EventEmitter<string>;
14
15
  uploadCancel: EventEmitter<void>;
@@ -38,6 +39,6 @@ export declare class ImageInputComponent {
38
39
  private filterTypeImage;
39
40
  private resizeAndEmit;
40
41
  static ɵfac: i0.ɵɵFactoryDeclaration<ImageInputComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<ImageInputComponent, "gn-ui-image-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "previewUrl": { "alias": "previewUrl"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "uploadError": { "alias": "uploadError"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; "delete": "delete"; "altTextChange": "altTextChange"; }, never, never, true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageInputComponent, "gn-ui-image-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "previewUrl": { "alias": "previewUrl"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "uploadError": { "alias": "uploadError"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; "delete": "delete"; "altTextChange": "altTextChange"; }, never, never, true, never>;
42
43
  }
43
44
  //# sourceMappingURL=image-input.component.d.ts.map
@@ -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;;AAYtB,qBAiBa,mBAAmB;IAwBlB,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,EAAE;IAvBvC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACrD,MAAM,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAC/C,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IAElE,aAAa,UAAQ;IACrB,YAAY,UAAQ;IACpB,aAAa,UAAQ;IACrB,gBAAgB,UAAQ;IAExB,cAAc,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IAC/B,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAEjC,IAAI,kBAAkB,YAErB;gBAEmB,IAAI,EAAE,UAAU,EAAU,EAAE,EAAE,iBAAiB;IAEnE,cAAc;IAUd,gBAAgB;IAUhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAO1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAS7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAQ5B,eAAe;IAKT,WAAW,CAAC,GAAG,EAAE,MAAM;IAiC7B,wBAAwB,CAAC,KAAK,EAAE,KAAK;IASrC,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,OAAO,EAAE,MAAM;IAInC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCAtJV,mBAAmB;2CAAnB,mBAAmB;CA6J/B"}
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;;AAwBtB,qBA8Ba,mBAAmB;IA0B5B,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,EAAE;IA1BH,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;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAQ;IACzB,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;gBAGS,IAAI,EAAE,UAAU,EAChB,EAAE,EAAE,iBAAiB;IAG/B,cAAc;IAUd,gBAAgB;IAUhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAO1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAS7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAQ5B,eAAe;IAKT,WAAW,CAAC,GAAG,EAAE,MAAM;IAiC7B,wBAAwB,CAAC,KAAK,EAAE,KAAK;IASrC,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,OAAO,EAAE,MAAM;IAInC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCA1JV,mBAAmB;2CAAnB,mBAAmB;CAiK/B"}
@@ -3,6 +3,6 @@ export declare class NavigationButtonComponent {
3
3
  label: string;
4
4
  icon: string;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<NavigationButtonComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<NavigationButtonComponent, "gn-ui-navigation-button", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, false, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavigationButtonComponent, "gn-ui-navigation-button", never, { "label": { "alias": "label"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, never, true, never>;
7
7
  }
8
8
  //# sourceMappingURL=navigation-button.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"navigation-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts"],"names":[],"mappings":";AAEA,qBAMa,yBAAyB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;yCAFV,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
1
+ {"version":3,"file":"navigation-button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts"],"names":[],"mappings":";AAGA,qBAQa,yBAAyB;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;yCAFV,yBAAyB;2CAAzB,yBAAyB;CAGrC"}
@@ -1 +1 @@
1
- {"version":3,"file":"search-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/search-input/search-input.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAwB,OAAO,EAAE,MAAM,MAAM,CAAA;;AAIpD,qBAOa,oBAAoB;IACtB,KAAK,SAAK;IACV,WAAW,SAAK;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAEnE,YAAY,CAAC,MAAM,KAAA;IAKnB,KAAK;yCAXM,oBAAoB;2CAApB,oBAAoB;CAehC"}
1
+ {"version":3,"file":"search-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/search-input/search-input.component.ts"],"names":[],"mappings":"AAMA,OAAO,EAAwB,OAAO,EAAE,MAAM,MAAM,CAAA;;AASpD,qBAaa,oBAAoB;IACtB,KAAK,SAAK;IACV,WAAW,SAAK;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAEnE,YAAY,CAAC,MAAM,KAAA;IAKnB,KAAK;yCAXM,oBAAoB;2CAApB,oBAAoB;CAehC"}
@@ -7,6 +7,6 @@ export declare class StarToggleComponent {
7
7
  overlay: ElementRef;
8
8
  toggle(event: Event): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<StarToggleComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<StarToggleComponent, "gn-ui-star-toggle", never, { "toggled": { "alias": "toggled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "newValue": "newValue"; }, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<StarToggleComponent, "gn-ui-star-toggle", never, { "toggled": { "alias": "toggled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "newValue": "newValue"; }, never, never, true, never>;
11
11
  }
12
12
  //# sourceMappingURL=star-toggle.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"star-toggle.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,EAIb,MAAM,eAAe,CAAA;;AAGtB,qBAMa,mBAAmB;IACrB,OAAO,EAAG,OAAO,CAAA;IACjB,QAAQ,UAAQ;IACf,QAAQ,wBAA8B;IACtB,OAAO,EAAE,UAAU,CAAA;IAE7C,MAAM,CAAC,KAAK,EAAE,KAAK;yCANR,mBAAmB;2CAAnB,mBAAmB;CAmB/B"}
1
+ {"version":3,"file":"star-toggle.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,EAIb,MAAM,eAAe,CAAA;;AAMtB,qBASa,mBAAmB;IACrB,OAAO,EAAG,OAAO,CAAA;IACjB,QAAQ,UAAQ;IACf,QAAQ,wBAA8B;IACtB,OAAO,EAAE,UAAU,CAAA;IAE7C,MAAM,CAAC,KAAK,EAAE,KAAK;yCANR,mBAAmB;2CAAnB,mBAAmB;CAmB/B"}
@@ -9,9 +9,10 @@ export declare class SwitchToggleComponent {
9
9
  options: SwitchToggleOption[];
10
10
  ariaLabel?: string;
11
11
  extraClasses?: string;
12
+ disabled?: boolean;
12
13
  selectedValue: EventEmitter<SwitchToggleOption>;
13
14
  onChange(selectedOption: SwitchToggleOption): void;
14
15
  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
+ 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; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "selectedValue": "selectedValue"; }, never, never, true, never>;
16
17
  }
17
18
  //# sourceMappingURL=switch-toggle.component.d.ts.map
@@ -1 +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;;AAItB,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,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"}
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;;AAItB,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,OAAO,EAAE,OAAO,CAAA;CACjB,CAAA;AAED,qBAQa,qBAAqB;IACvB,OAAO,EAAE,kBAAkB,EAAE,CAAA;IAC7B,SAAS,CAAC,SAAK;IACf,YAAY,CAAC,SAAK;IAClB,QAAQ,CAAC,UAAQ;IAChB,aAAa,mCAAyC;IAEhE,QAAQ,CAAC,cAAc,EAAE,kBAAkB;yCAPhC,qBAAqB;2CAArB,qBAAqB;CAcjC"}
@@ -1,39 +1,36 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./drag-and-drop-file-input/drag-and-drop-file-input.component";
3
3
  import * as i2 from "./chips-input/chips-input.component";
4
- import * as i3 from "./navigation-button/navigation-button.component";
5
- import * as i4 from "./star-toggle/star-toggle.component";
6
- import * as i5 from "./dropdown-multiselect/dropdown-multiselect.component";
7
- import * as i6 from "./viewport-intersector/viewport-intersector.component";
8
- import * as i7 from "./copy-text-button/copy-text-button.component";
9
- import * as i8 from "./checkbox/checkbox.component";
10
- import * as i9 from "@angular/common";
11
- import * as i10 from "@ngx-translate/core";
12
- import * as i11 from "ngx-dropzone";
13
- import * as i12 from "@angular/forms";
14
- import * as i13 from "ngx-chips";
15
- import * as i14 from "../../../../util/shared/src/lib/util-shared.module";
16
- import * as i15 from "@angular/material/autocomplete";
17
- import * as i16 from "@angular/material/icon";
18
- import * as i17 from "../../../widgets/src/lib/ui-widgets.module";
19
- import * as i18 from "@angular/cdk/overlay";
20
- import * as i19 from "@angular/material/checkbox";
21
- import * as i20 from "@angular/material/tooltip";
22
- import * as i21 from "@angular/material/form-field";
23
- import * as i22 from "@angular/material/input";
24
- import * as i23 from "@angular/material/datepicker";
25
- import * as i24 from "@angular/material/core";
26
- import * as i25 from "./editable-label/editable-label.directive";
27
- import * as i26 from "./text-area/text-area.component";
28
- import * as i27 from "./button/button.component";
29
- import * as i28 from "./image-input/image-input.component";
30
- import * as i29 from "./dropdown-selector/dropdown-selector.component";
31
- import * as i30 from "./date-range-picker/date-range-picker.component";
32
- import * as i31 from "./check-toggle/check-toggle.component";
33
- import * as i32 from "./badge/badge.component";
4
+ import * as i3 from "./dropdown-multiselect/dropdown-multiselect.component";
5
+ import * as i4 from "./viewport-intersector/viewport-intersector.component";
6
+ import * as i5 from "./checkbox/checkbox.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@ngx-translate/core";
9
+ import * as i8 from "ngx-dropzone";
10
+ import * as i9 from "@angular/forms";
11
+ import * as i10 from "ngx-chips";
12
+ import * as i11 from "../../../../util/shared/src/lib/util-shared.module";
13
+ import * as i12 from "@angular/material/autocomplete";
14
+ import * as i13 from "../../../widgets/src/lib/ui-widgets.module";
15
+ import * as i14 from "@angular/cdk/overlay";
16
+ import * as i15 from "@angular/material/checkbox";
17
+ import * as i16 from "@angular/material/tooltip";
18
+ import * as i17 from "@angular/material/form-field";
19
+ import * as i18 from "@angular/material/input";
20
+ import * as i19 from "@angular/material/datepicker";
21
+ import * as i20 from "@angular/material/core";
22
+ import * as i21 from "./editable-label/editable-label.directive";
23
+ import * as i22 from "./text-area/text-area.component";
24
+ import * as i23 from "./button/button.component";
25
+ import * as i24 from "./image-input/image-input.component";
26
+ import * as i25 from "./dropdown-selector/dropdown-selector.component";
27
+ import * as i26 from "./date-range-picker/date-range-picker.component";
28
+ import * as i27 from "./check-toggle/check-toggle.component";
29
+ import * as i28 from "./badge/badge.component";
30
+ import * as i29 from "@ng-icons/core";
34
31
  export declare class UiInputsModule {
35
32
  static ɵfac: i0.ɵɵFactoryDeclaration<UiInputsModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DragAndDropFileInputComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent], [typeof i9.CommonModule, typeof i10.TranslateModule, typeof i11.NgxDropzoneModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.TagInputModule, typeof i14.UtilSharedModule, typeof i15.MatAutocompleteModule, typeof i16.MatIconModule, typeof i17.UiWidgetsModule, typeof i18.OverlayModule, typeof i19.MatCheckboxModule, typeof i20.MatTooltipModule, typeof i21.MatFormFieldModule, typeof i22.MatInputModule, typeof i23.MatDatepickerModule, typeof i24.MatNativeDateModule, typeof i25.EditableLabelDirective, typeof i26.TextAreaComponent, typeof i27.ButtonComponent, typeof i28.ImageInputComponent, typeof i29.DropdownSelectorComponent, typeof i30.DateRangePickerComponent, typeof i31.CheckToggleComponent, typeof i32.BadgeComponent], [typeof i29.DropdownSelectorComponent, typeof i27.ButtonComponent, typeof i1.DragAndDropFileInputComponent, typeof i26.TextAreaComponent, typeof i2.ChipsInputComponent, typeof i3.NavigationButtonComponent, typeof i4.StarToggleComponent, typeof i5.DropdownMultiselectComponent, typeof i6.ViewportIntersectorComponent, typeof i31.CheckToggleComponent, typeof i7.CopyTextButtonComponent, typeof i8.CheckboxComponent, typeof i30.DateRangePickerComponent, typeof i25.EditableLabelDirective, typeof i28.ImageInputComponent, typeof i32.BadgeComponent]>;
33
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiInputsModule, [typeof i1.DragAndDropFileInputComponent, typeof i2.ChipsInputComponent, typeof i3.DropdownMultiselectComponent, typeof i4.ViewportIntersectorComponent, typeof i5.CheckboxComponent], [typeof i6.CommonModule, typeof i7.TranslateModule, typeof i8.NgxDropzoneModule, typeof i9.FormsModule, typeof i9.ReactiveFormsModule, typeof i10.TagInputModule, typeof i11.UtilSharedModule, typeof i12.MatAutocompleteModule, typeof i13.UiWidgetsModule, typeof i14.OverlayModule, typeof i15.MatCheckboxModule, typeof i16.MatTooltipModule, typeof i17.MatFormFieldModule, typeof i18.MatInputModule, typeof i19.MatDatepickerModule, typeof i20.MatNativeDateModule, typeof i21.EditableLabelDirective, typeof i22.TextAreaComponent, typeof i23.ButtonComponent, typeof i24.ImageInputComponent, typeof i25.DropdownSelectorComponent, typeof i26.DateRangePickerComponent, typeof i27.CheckToggleComponent, typeof i28.BadgeComponent, typeof i29.NgIcon], [typeof i25.DropdownSelectorComponent, typeof i23.ButtonComponent, typeof i1.DragAndDropFileInputComponent, typeof i22.TextAreaComponent, typeof i2.ChipsInputComponent, typeof i3.DropdownMultiselectComponent, typeof i4.ViewportIntersectorComponent, typeof i27.CheckToggleComponent, typeof i5.CheckboxComponent, typeof i26.DateRangePickerComponent, typeof i21.EditableLabelDirective, typeof i24.ImageInputComponent, typeof i28.BadgeComponent]>;
37
34
  static ɵinj: i0.ɵɵInjectorDeclaration<UiInputsModule>;
38
35
  }
39
36
  //# sourceMappingURL=ui-inputs.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA,qBAyDa,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
1
+ {"version":3,"file":"ui-inputs.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/inputs/src/lib/ui-inputs.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwCA,qBA6Da,cAAc;yCAAd,cAAc;0CAAd,cAAc;0CAAd,cAAc;CAAG"}
@@ -1,21 +1,23 @@
1
- import { ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
2
- import { Subject } from 'rxjs';
1
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
3
2
  import * as i0 from "@angular/core";
4
- export declare class UrlInputComponent implements OnChanges {
3
+ export declare class UrlInputComponent {
5
4
  private cd;
6
- value: string;
5
+ set value(v: string);
7
6
  extraClass: string;
8
7
  placeholder: string;
9
8
  disabled: boolean;
10
- urlCanParse?: boolean;
11
- rawChange: Subject<string>;
12
- valueChange: import("rxjs").Observable<string>;
9
+ showUploadButton: boolean;
10
+ /**
11
+ * This will emit null if the field is emptied
12
+ */
13
+ valueChange: EventEmitter<string>;
14
+ uploadClick: EventEmitter<string>;
15
+ inputValue: string;
13
16
  constructor(cd: ChangeDetectorRef);
14
- ngOnChanges(changes: SimpleChanges): void;
15
- handleInput(): void;
16
- handleChange(element: HTMLInputElement): void;
17
- URLcanParse(url: string): boolean;
17
+ handleInput(event: Event): void;
18
+ handleUpload(element: HTMLInputElement): void;
19
+ isValidUrl(url: string): boolean;
18
20
  static ɵfac: i0.ɵɵFactoryDeclaration<UrlInputComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "urlCanParse": { "alias": "urlCanParse"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlInputComponent, "gn-ui-url-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "showUploadButton": { "alias": "showUploadButton"; "required": false; }; }, { "valueChange": "valueChange"; "uploadClick": "uploadClick"; }, never, never, true, never>;
20
22
  }
21
23
  //# sourceMappingURL=url-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"url-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/url-input/url-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EAGjB,SAAS,EAET,aAAa,EACd,MAAM,eAAe,CAAA;AAKtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAOa,iBAAkB,YAAW,SAAS;IASrC,OAAO,CAAC,EAAE;IARb,KAAK,SAAK;IACV,UAAU,SAAK;IACf,WAAW,SAAa;IACxB,QAAQ,EAAE,OAAO,CAAA;IACjB,WAAW,CAAC,EAAE,OAAO,CAAA;IAC9B,SAAS,kBAAwB;IACvB,WAAW,oCAA0C;gBAE3C,EAAE,EAAE,iBAAiB;IAEzC,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAMzC,WAAW;IAIX,YAAY,CAAC,OAAO,EAAE,gBAAgB;IAKtC,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;yCA1BtB,iBAAiB;2CAAjB,iBAAiB;CAkC7B"}
1
+ {"version":3,"file":"url-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/url-input/url-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAUtB,qBAca,iBAAiB;IA0BhB,OAAO,CAAC,EAAE;IAzBtB,IAAa,KAAK,CAAC,CAAC,EAAE,MAAM,EAW3B;IACQ,UAAU,SAAK;IACf,WAAW,SAAa;IACxB,QAAQ,EAAE,OAAO,CAAA;IACjB,gBAAgB,UAAO;IAEhC;;OAEG;IACO,WAAW,uBAAoC;IAC/C,WAAW,uBAA6B;IAElD,UAAU,SAAK;gBAEK,EAAE,EAAE,iBAAiB;IAEzC,WAAW,CAAC,KAAK,EAAE,KAAK;IAWxB,YAAY,CAAC,OAAO,EAAE,gBAAgB;IAMtC,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO;yCA7CrB,iBAAiB;2CAAjB,iBAAiB;CAqD7B"}
@@ -10,5 +10,10 @@ export * from './lib/sticky-header/sticky-header.component';
10
10
  export * from './lib/block-list/block-list.component';
11
11
  export * from './lib/sortable-list/sortable-list.component';
12
12
  export * from './lib/modal-dialog/modal-dialog.component';
13
+ export * from './lib/pagination/pagination.component';
14
+ export * from './lib/pagination-buttons/pagination-buttons.component';
15
+ export * from './lib/pagination-dots/pagination-dots.component';
16
+ export * from './lib/previous-next-buttons/previous-next-buttons.component';
17
+ export * from './lib/paginable.interface';
13
18
  export * from './lib/ui-layout.module';
14
19
  //# sourceMappingURL=index.d.ts.map