geonetwork-ui 2.4.0-dev.fe59f179 → 2.4.1-dev.1d2ade24e

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 (1522) hide show
  1. package/README.md +1 -7
  2. package/esm2022/libs/api/metadata-converter/src/index.mjs +4 -1
  3. package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +64 -0
  5. package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +38 -0
  6. package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +14 -0
  7. package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +1 -1
  8. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +270 -0
  9. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/index.mjs +2 -0
  10. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.mjs +17 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +227 -0
  12. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +57 -0
  13. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +96 -0
  14. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.mjs +2 -0
  15. package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +47 -0
  16. package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +11 -1
  17. package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +1 -1
  18. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  19. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +10 -8
  20. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +44 -21
  21. package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +5 -5
  22. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +1 -1
  23. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  24. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  25. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +14 -8
  26. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +39 -12
  27. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +58 -43
  28. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +156 -98
  29. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +143 -29
  30. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  31. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +1 -1
  32. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +1 -1
  33. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +1 -1
  34. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +6 -62
  35. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +198 -105
  36. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +118 -24
  37. package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +36 -9
  38. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +5 -5
  39. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.mjs +12 -0
  40. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +50 -25
  41. package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +2 -1
  42. package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +4 -4
  43. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +163 -39
  44. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +4 -4
  45. package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +5 -5
  46. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +15 -5
  47. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +82 -10
  48. package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +4 -4
  49. package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +4 -4
  50. package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +1 -1
  51. package/esm2022/libs/common/domain/src/lib/model/error/index.mjs +2 -0
  52. package/esm2022/libs/common/domain/src/lib/model/error/publication-version.error.mjs +8 -0
  53. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +46 -19
  54. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  55. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +27 -1
  56. package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
  57. package/esm2022/libs/common/domain/src/lib/model/record/translation.model.mjs +2 -0
  58. package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +1 -1
  59. package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +2 -1
  60. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  61. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  62. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  63. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  64. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  65. package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +6 -6
  66. package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +6 -6
  67. package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +6 -6
  68. package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +6 -6
  69. package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +6 -6
  70. package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +6 -6
  71. package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +6 -6
  72. package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +6 -6
  73. package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +6 -6
  74. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +6 -6
  75. package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +6 -6
  76. package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +6 -6
  77. package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +6 -6
  78. package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +6 -6
  79. package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +6 -6
  80. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +13 -11
  81. package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +6 -6
  82. package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +6 -6
  83. package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +6 -6
  84. package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +6 -6
  85. package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +6 -6
  86. package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +6 -6
  87. package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +6 -6
  88. package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +6 -6
  89. package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +6 -6
  90. package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +6 -6
  91. package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +6 -6
  92. package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +6 -6
  93. package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +6 -6
  94. package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +6 -6
  95. package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +6 -6
  96. package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +6 -6
  97. package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +7 -7
  98. package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +1 -1
  99. package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +4 -4
  100. package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +17 -21
  101. package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +4 -4
  102. package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +41 -16
  103. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -4
  104. package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +6 -6
  105. package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +5 -5
  106. package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +4 -4
  107. package/esm2022/libs/feature/dataviz/src/index.mjs +1 -2
  108. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +18 -11
  109. package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +7 -6
  110. package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +4 -4
  111. package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +38 -51
  112. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +20 -9
  113. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +16 -10
  114. package/esm2022/libs/feature/editor/src/index.mjs +2 -1
  115. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +8 -1
  116. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +38 -12
  117. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +34 -8
  118. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  119. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +40 -6
  120. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +19 -7
  121. package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +68 -0
  122. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +16 -0
  123. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +88 -0
  124. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +113 -0
  125. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +85 -0
  126. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +179 -0
  127. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +3 -3
  128. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +76 -0
  129. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.mjs +35 -0
  130. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +130 -0
  131. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +109 -0
  132. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +157 -0
  133. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.mjs +19 -0
  134. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +5 -5
  135. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +32 -41
  136. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +47 -51
  137. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +79 -0
  138. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +3 -3
  139. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +152 -0
  140. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +201 -0
  141. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  142. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +104 -0
  143. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +14 -18
  144. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +12 -30
  145. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +117 -6
  146. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.mjs +44 -0
  147. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +53 -70
  148. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +50 -72
  149. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +71 -49
  150. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  151. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +16 -10
  152. package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +6 -6
  153. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +12 -12
  154. package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +5 -5
  155. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  156. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -8
  157. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +275 -57
  158. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  159. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  160. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +26 -13
  161. package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +5 -5
  162. package/esm2022/libs/feature/map/src/index.mjs +2 -9
  163. package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +4 -7
  164. package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +13 -19
  165. package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +13 -44
  166. package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +3 -2
  167. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +9 -9
  168. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +21 -20
  169. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +26 -17
  170. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +18 -17
  171. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +21 -16
  172. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +19 -14
  173. package/esm2022/libs/feature/map/src/lib/constant/index.mjs +1 -2
  174. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +12 -75
  175. package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +44 -30
  176. package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +6 -6
  177. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +65 -22
  178. package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +27 -0
  179. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  180. package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +4 -4
  181. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +14 -173
  182. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +4 -4
  183. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +4 -4
  184. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +6 -5
  185. package/esm2022/libs/feature/record/src/index.mjs +4 -1
  186. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +17 -10
  187. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +51 -30
  188. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +27 -11
  189. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +59 -23
  190. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +28 -22
  191. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +24 -51
  192. package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +169 -0
  193. package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +45 -0
  194. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +81 -57
  195. package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +45 -0
  196. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +5 -5
  197. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +17 -7
  198. package/esm2022/libs/feature/router/src/lib/default/constants.mjs +1 -1
  199. package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +6 -6
  200. package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +5 -5
  201. package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +5 -5
  202. package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +4 -4
  203. package/esm2022/libs/feature/router/src/lib/default/state/query-params.utils.mjs +50 -0
  204. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +8 -8
  205. package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -8
  206. package/esm2022/libs/feature/search/src/index.mjs +3 -1
  207. package/esm2022/libs/feature/search/src/lib/constants.mjs +2 -2
  208. package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +4 -4
  209. package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +4 -4
  210. package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +5 -5
  211. package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +7 -7
  212. package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +22 -19
  213. package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +30 -8
  214. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +6 -6
  215. package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +5 -5
  216. package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +4 -4
  217. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +5 -5
  218. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +15 -10
  219. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +54 -10
  220. package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +67 -0
  221. package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +84 -0
  222. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +9 -5
  223. package/esm2022/libs/feature/search/src/lib/state/actions.mjs +1 -1
  224. package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +6 -6
  225. package/esm2022/libs/feature/search/src/lib/state/effects.mjs +6 -6
  226. package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +1 -1
  227. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +12 -10
  228. package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +1 -9
  229. package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +1 -1
  230. package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +63 -8
  231. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +19 -8
  232. package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +4 -4
  233. package/esm2022/libs/ui/catalog/src/index.mjs +1 -2
  234. package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +6 -5
  235. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +15 -19
  236. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +17 -7
  237. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +9 -9
  238. package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +6 -5
  239. package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +6 -6
  240. package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +7 -7
  241. package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +6 -6
  242. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  243. package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +33 -7
  244. package/esm2022/libs/ui/elements/src/index.mjs +4 -4
  245. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +28 -9
  246. package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +3 -3
  247. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  248. package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +6 -5
  249. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +20 -9
  250. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +40 -12
  251. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +25 -7
  252. package/esm2022/libs/ui/elements/src/lib/image-input/image-input.component.mjs +213 -0
  253. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +17 -9
  254. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +18 -8
  255. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +8 -9
  256. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +7 -5
  257. package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +7 -6
  258. package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +28 -8
  259. package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +7 -6
  260. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +43 -15
  261. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +16 -15
  262. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +10 -8
  263. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +38 -7
  264. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +40 -35
  265. package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +20 -11
  266. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +6 -6
  267. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +40 -106
  268. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +6 -6
  269. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +29 -11
  270. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -5
  271. package/esm2022/libs/ui/inputs/src/index.mjs +6 -2
  272. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +53 -18
  273. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +21 -5
  274. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +12 -4
  275. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +7 -7
  276. package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +3 -3
  277. package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +5 -5
  278. package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +10 -7
  279. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +23 -6
  280. package/esm2022/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.mjs +65 -0
  281. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +24 -8
  282. package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +3 -3
  283. package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +8 -8
  284. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +25 -9
  285. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +28 -26
  286. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +108 -0
  287. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +4 -4
  288. package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +7 -7
  289. package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +19 -7
  290. package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -6
  291. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +37 -0
  292. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +9 -23
  293. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +8 -19
  294. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +49 -59
  295. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +93 -0
  296. package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +5 -5
  297. package/esm2022/libs/ui/layout/src/index.mjs +8 -1
  298. package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +5 -5
  299. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +20 -15
  300. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +27 -22
  301. package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +9 -7
  302. package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +8 -6
  303. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +9 -6
  304. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +6 -4
  305. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +17 -8
  306. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +6 -6
  307. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  308. package/esm2022/libs/ui/layout/src/lib/paginable.interface.mjs +2 -0
  309. package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +52 -0
  310. package/esm2022/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.mjs +52 -0
  311. package/esm2022/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.mjs +36 -0
  312. package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +26 -0
  313. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +35 -0
  314. package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +6 -6
  315. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +17 -26
  316. package/esm2022/libs/ui/map/src/index.mjs +5 -3
  317. package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +10 -8
  318. package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +147 -0
  319. package/esm2022/libs/ui/map/src/lib/components/map-container/map-settings.token.mjs +13 -0
  320. package/esm2022/libs/ui/map/src/lib/components/map-legend/map-legend.component.mjs +32 -0
  321. package/esm2022/libs/ui/map/src/lib/map-utils.mjs +37 -0
  322. package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +7 -7
  323. package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +6 -6
  324. package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +3 -3
  325. package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +4 -4
  326. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  327. package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +3 -3
  328. package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +5 -5
  329. package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +3 -3
  330. package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +8 -7
  331. package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +3 -3
  332. package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +10 -9
  333. package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +3 -3
  334. package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +3 -3
  335. package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
  336. package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +1 -1
  337. package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
  338. package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +5 -5
  339. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +59 -0
  340. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +103 -41
  341. package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +34 -12
  342. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  343. package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
  344. package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +7 -6
  345. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  346. package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +8 -8
  347. package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +5 -5
  348. package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +5 -5
  349. package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +5 -5
  350. package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +9 -34
  351. package/esm2022/libs/util/app-config/src/index.mjs +2 -1
  352. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +9 -2
  353. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +11 -10
  354. package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +33 -0
  355. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  356. package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +1 -1
  357. package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +1 -1
  358. package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +1 -1
  359. package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +3 -3
  360. package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +1 -1
  361. package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +1 -1
  362. package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +1 -1
  363. package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +1 -1
  364. package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +1 -1
  365. package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +1 -1
  366. package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +1 -1
  367. package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +13 -11
  368. package/esm2022/libs/util/i18n/src/index.mjs +2 -1
  369. package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +1 -38
  370. package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +4 -4
  371. package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +6 -6
  372. package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +40 -0
  373. package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +6 -6
  374. package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +5 -5
  375. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +6 -4
  376. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +53 -17
  377. package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +3 -3
  378. package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +12 -9
  379. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +5 -4
  380. package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -4
  381. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  382. package/esm2022/libs/util/shared/src/lib/utils/format-fields.mjs +9 -0
  383. package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +1 -1
  384. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +1 -1
  385. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +3 -1
  386. package/esm2022/libs/util/shared/src/lib/utils/no-duplicate-file-name.mjs +19 -0
  387. package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +1 -1
  388. package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +1 -1
  389. package/esm2022/libs/util/shared/src/lib/utils/url.mjs +1 -1
  390. package/esm2022/translations/de.json +224 -49
  391. package/esm2022/translations/en.json +252 -80
  392. package/esm2022/translations/es.json +202 -27
  393. package/esm2022/translations/fr.json +278 -106
  394. package/esm2022/translations/it.json +273 -96
  395. package/esm2022/translations/nl.json +202 -27
  396. package/esm2022/translations/pt.json +202 -27
  397. package/fesm2022/geonetwork-ui.mjs +13662 -8015
  398. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  399. package/libs/api/metadata-converter/src/index.d.ts +3 -0
  400. package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
  401. package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
  402. package/libs/api/metadata-converter/src/lib/common/license.d.ts +3 -0
  403. package/libs/api/metadata-converter/src/lib/common/license.d.ts.map +1 -0
  404. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +5 -0
  405. package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -0
  406. package/libs/api/metadata-converter/src/lib/common/url.d.ts +7 -0
  407. package/libs/api/metadata-converter/src/lib/common/url.d.ts.map +1 -0
  408. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +13 -0
  409. package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -0
  410. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts +2 -0
  411. package/libs/api/metadata-converter/src/lib/dcat-ap/index.d.ts.map +1 -0
  412. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts +16 -0
  413. package/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.d.ts.map +1 -0
  414. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +21 -0
  415. package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -0
  416. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +15 -0
  417. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -0
  418. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts +8 -0
  419. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -0
  420. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts +2 -0
  421. package/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.d.ts.map +1 -0
  422. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts +6 -0
  423. package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -0
  424. package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +1 -1
  425. package/libs/api/metadata-converter/src/lib/function-utils.d.ts +1 -1
  426. package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -1
  427. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +4 -4
  428. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  429. package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +1 -1
  430. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  431. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  432. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +1 -1
  433. package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -1
  434. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  435. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  436. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +13 -10
  437. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  438. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  439. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +7 -4
  440. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  441. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +6 -4
  442. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  443. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +4 -2
  444. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  445. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +25 -9
  446. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  447. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  448. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  449. package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts.map +1 -1
  450. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +26 -18
  451. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  452. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +106 -4
  453. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  454. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +14 -2
  455. package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
  456. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts +4 -0
  457. package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts.map +1 -0
  458. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +5 -1
  459. package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
  460. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +1 -0
  461. package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -1
  462. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +33 -14
  463. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  464. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  465. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +13 -5
  466. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  467. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +1 -1
  468. package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -1
  469. package/libs/common/domain/src/lib/model/error/index.d.ts +2 -0
  470. package/libs/common/domain/src/lib/model/error/index.d.ts.map +1 -0
  471. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts +5 -0
  472. package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts.map +1 -0
  473. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +3 -2
  474. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  475. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  476. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  477. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +38 -15
  478. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  479. package/libs/common/domain/src/lib/model/record/organization.model.d.ts +2 -0
  480. package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
  481. package/libs/common/domain/src/lib/model/record/translation.model.d.ts +26 -0
  482. package/libs/common/domain/src/lib/model/record/translation.model.d.ts.map +1 -0
  483. package/libs/common/domain/src/lib/model/search/filter.model.d.ts +16 -1
  484. package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -1
  485. package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +1 -1
  486. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  487. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  488. package/libs/common/domain/src/lib/platform.service.interface.d.ts +17 -1
  489. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  490. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +31 -1
  491. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  492. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  493. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  494. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  495. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  496. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +3 -0
  497. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  498. package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -1
  499. package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +1 -1
  500. package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -1
  501. package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -1
  502. package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +1 -1
  503. package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +1 -1
  504. package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -1
  505. package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +1 -1
  506. package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +1 -1
  507. package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -1
  508. package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -1
  509. package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -1
  510. package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -1
  511. package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -1
  512. package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -1
  513. package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -1
  514. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +8 -8
  515. package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
  516. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +10 -3
  517. package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
  518. package/libs/feature/dataviz/src/index.d.ts +0 -1
  519. package/libs/feature/dataviz/src/index.d.ts.map +1 -1
  520. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +3 -3
  521. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  522. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +1 -1
  523. package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
  524. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +14 -21
  525. package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
  526. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +9 -7
  527. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  528. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +4 -4
  529. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  530. package/libs/feature/editor/src/index.d.ts +1 -0
  531. package/libs/feature/editor/src/index.d.ts.map +1 -1
  532. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +47 -9
  533. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  534. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +26 -9
  535. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  536. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +20 -9
  537. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  538. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +9 -1
  539. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  540. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +10 -4
  541. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  542. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +14 -10
  543. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  544. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts +16 -0
  545. package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -0
  546. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  547. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  548. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  549. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  550. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts +34 -0
  551. package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -0
  552. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  553. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  554. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +65 -0
  555. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -0
  556. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts +18 -0
  557. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -0
  558. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts +6 -0
  559. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts.map +1 -0
  560. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts +32 -0
  561. 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
  562. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts +38 -0
  563. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.d.ts.map +1 -0
  564. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +41 -0
  565. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  566. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts +9 -0
  567. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts.map +1 -0
  568. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
  569. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  570. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +15 -34
  571. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  572. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +15 -0
  573. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  574. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  575. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  576. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +48 -0
  577. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -0
  578. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +14 -0
  579. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  580. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  581. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  582. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  583. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  584. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +5 -10
  585. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  586. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +24 -0
  587. 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
  588. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts +14 -0
  589. 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
  590. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  591. 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
  592. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +6 -6
  593. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  594. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +20 -20
  595. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  596. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  597. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  598. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  599. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  600. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  601. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  602. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  603. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  604. package/libs/feature/editor/src/lib/fields.config.d.ts +64 -2
  605. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  606. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +45 -0
  607. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  608. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  609. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  610. package/libs/feature/editor/src/lib/services/editor.service.d.ts +8 -3
  611. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  612. package/libs/feature/map/src/index.d.ts +1 -8
  613. package/libs/feature/map/src/index.d.ts.map +1 -1
  614. package/libs/feature/map/src/lib/+state/map.actions.d.ts +13 -39
  615. package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
  616. package/libs/feature/map/src/lib/+state/map.facade.d.ts +9 -10
  617. package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -1
  618. package/libs/feature/map/src/lib/+state/map.reducer.d.ts +4 -2
  619. package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -1
  620. package/libs/feature/map/src/lib/+state/map.selectors.d.ts +6 -1
  621. package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -1
  622. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  623. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  624. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +8 -10
  625. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  626. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  627. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  628. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +3 -3
  629. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  630. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +2 -2
  631. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  632. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +2 -2
  633. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  634. package/libs/feature/map/src/lib/constant/index.d.ts +0 -1
  635. package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -1
  636. package/libs/feature/map/src/lib/feature-map.module.d.ts +11 -23
  637. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  638. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts +7 -7
  639. package/libs/feature/map/src/lib/geocoding/geocoding.component.d.ts.map +1 -1
  640. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +5 -4
  641. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  642. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts +14 -0
  643. package/libs/feature/map/src/lib/map-state-container/map-state-container.component.d.ts.map +1 -0
  644. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  645. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  646. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +0 -30
  647. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  648. package/libs/feature/notifications/src/lib/notifications.service.d.ts +1 -1
  649. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -1
  650. package/libs/feature/record/src/index.d.ts +3 -0
  651. package/libs/feature/record/src/index.d.ts.map +1 -1
  652. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +4 -4
  653. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  654. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  655. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  656. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  657. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  658. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  659. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  660. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +10 -7
  661. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  662. package/libs/feature/record/src/lib/feature-record.module.d.ts +15 -23
  663. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  664. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts +74 -0
  665. package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -0
  666. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts +19 -0
  667. package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -0
  668. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +21 -21
  669. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  670. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +14 -0
  671. package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts.map +1 -0
  672. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +13 -13
  673. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  674. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -9
  675. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  676. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  677. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  678. package/libs/feature/router/src/lib/default/constants.d.ts +3 -2
  679. package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
  680. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts +4 -0
  681. package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts.map +1 -0
  682. package/libs/feature/router/src/lib/default/state/router.actions.d.ts +3 -3
  683. package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -1
  684. package/libs/feature/router/src/lib/default/state/router.effects.d.ts +5 -5
  685. package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -1
  686. package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -1
  687. package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
  688. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +1 -1
  689. package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -1
  690. package/libs/feature/search/src/index.d.ts +2 -0
  691. package/libs/feature/search/src/index.d.ts.map +1 -1
  692. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +1 -1
  693. package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
  694. package/libs/feature/search/src/lib/feature-search.module.d.ts +17 -15
  695. package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
  696. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +7 -1
  697. package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -1
  698. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +1 -0
  699. package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
  700. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +17 -6
  701. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  702. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +22 -0
  703. package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -0
  704. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts +34 -0
  705. package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -0
  706. package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -1
  707. package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -1
  708. package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -2
  709. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  710. package/libs/feature/search/src/lib/state/selectors.d.ts +0 -2
  711. package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
  712. package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -1
  713. package/libs/feature/search/src/lib/utils/service/fields.d.ts +24 -6
  714. package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
  715. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +4 -2
  716. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  717. package/libs/ui/catalog/src/index.d.ts +0 -1
  718. package/libs/ui/catalog/src/index.d.ts.map +1 -1
  719. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +1 -1
  720. package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -1
  721. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +10 -8
  722. package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
  723. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
  724. package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
  725. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts +1 -1
  726. package/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.d.ts.map +1 -1
  727. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +1 -1
  728. package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -1
  729. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  730. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  731. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +3 -3
  732. package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
  733. package/libs/ui/elements/src/index.d.ts +3 -3
  734. package/libs/ui/elements/src/index.d.ts.map +1 -1
  735. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +1 -1
  736. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  737. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  738. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  739. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +1 -1
  740. package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -1
  741. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +4 -4
  742. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  743. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +10 -9
  744. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  745. package/libs/ui/elements/src/lib/error/error.component.d.ts +1 -1
  746. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
  747. package/libs/ui/{inputs → elements}/src/lib/image-input/image-input.component.d.ts +6 -6
  748. package/libs/ui/elements/src/lib/image-input/image-input.component.d.ts.map +1 -0
  749. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +1 -1
  750. package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +1 -1
  751. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  752. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  753. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  754. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  755. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +2 -1
  756. package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +1 -1
  757. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +1 -1
  758. package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -1
  759. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -1
  760. package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
  761. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +2 -2
  762. package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -1
  763. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +1 -1
  764. package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
  765. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +1 -4
  766. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  767. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +2 -2
  768. package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
  769. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +1 -0
  770. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -1
  771. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +7 -18
  772. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  773. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +1 -1
  774. package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
  775. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +20 -34
  776. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  777. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +1 -1
  778. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -1
  779. package/libs/ui/inputs/src/index.d.ts +5 -1
  780. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  781. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  782. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  783. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  784. package/libs/ui/inputs/src/lib/button/button.component.d.ts +2 -2
  785. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  786. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +2 -2
  787. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
  788. package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -1
  789. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +1 -1
  790. package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -1
  791. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  792. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts +20 -0
  793. package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts.map +1 -0
  794. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  795. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
  796. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  797. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  798. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +25 -0
  799. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  800. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +1 -1
  801. package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -1
  802. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts +1 -1
  803. package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
  804. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +1 -1
  805. package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
  806. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +18 -0
  807. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  808. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  809. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  810. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  811. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  812. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +29 -35
  813. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  814. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +24 -0
  815. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  816. package/libs/ui/layout/src/index.d.ts +7 -0
  817. package/libs/ui/layout/src/index.d.ts.map +1 -1
  818. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +7 -5
  819. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
  820. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +9 -7
  821. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
  822. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +1 -1
  823. package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
  824. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +1 -1
  825. package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -1
  826. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  827. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  828. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +3 -2
  829. package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +1 -1
  830. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts +2 -1
  831. package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
  832. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  833. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  834. package/libs/ui/layout/src/lib/paginable.interface.d.ts +15 -0
  835. package/libs/ui/layout/src/lib/paginable.interface.d.ts.map +1 -0
  836. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts +11 -0
  837. package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts.map +1 -0
  838. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts +9 -0
  839. package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
  840. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts +10 -0
  841. package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts.map +1 -0
  842. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +8 -0
  843. package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
  844. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  845. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  846. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +6 -8
  847. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  848. package/libs/ui/map/src/index.d.ts +4 -2
  849. package/libs/ui/map/src/index.d.ts.map +1 -1
  850. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +3 -4
  851. package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -1
  852. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts +37 -0
  853. package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -0
  854. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts +18 -0
  855. package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -0
  856. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts +12 -0
  857. package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts.map +1 -0
  858. package/libs/ui/map/src/lib/map-utils.d.ts +7 -0
  859. package/libs/ui/map/src/lib/map-utils.d.ts.map +1 -0
  860. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  861. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  862. package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -1
  863. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +24 -0
  864. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  865. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +23 -10
  866. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  867. package/libs/ui/search/src/lib/ui-search.module.d.ts +6 -5
  868. package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
  869. package/libs/ui/widgets/src/index.d.ts +1 -0
  870. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  871. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +1 -1
  872. package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -1
  873. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  874. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  875. package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -1
  876. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +1 -1
  877. package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -1
  878. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +1 -1
  879. package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -1
  880. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +9 -13
  881. package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -1
  882. package/libs/util/app-config/src/index.d.ts +1 -0
  883. package/libs/util/app-config/src/index.d.ts.map +1 -1
  884. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  885. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  886. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  887. package/libs/util/app-config/src/lib/map-layers.d.ts +4 -0
  888. package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -0
  889. package/libs/util/app-config/src/lib/model.d.ts +6 -1
  890. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  891. package/libs/util/data-fetcher/src/lib/model.d.ts +2 -2
  892. package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -1
  893. package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -1
  894. package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -1
  895. package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -1
  896. package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -1
  897. package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -1
  898. package/libs/util/data-fetcher/src/lib/utils.d.ts +1 -1
  899. package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -1
  900. package/libs/util/i18n/src/index.d.ts +1 -0
  901. package/libs/util/i18n/src/index.d.ts.map +1 -1
  902. package/libs/util/i18n/src/lib/i18n.constants.d.ts +0 -35
  903. package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
  904. package/libs/util/i18n/src/lib/language-codes.d.ts +38 -0
  905. package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -0
  906. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  907. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  908. package/libs/util/shared/src/lib/links/link-utils.d.ts +23 -22
  909. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  910. package/libs/util/shared/src/lib/services/proxy.service.d.ts +4 -2
  911. package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -1
  912. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  913. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  914. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  915. package/libs/util/shared/src/lib/utils/format-fields.d.ts +2 -0
  916. package/libs/util/shared/src/lib/utils/format-fields.d.ts.map +1 -0
  917. package/libs/util/shared/src/lib/utils/index.d.ts +2 -0
  918. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  919. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts +2 -0
  920. package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts.map +1 -0
  921. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +4 -1
  922. package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +1 -1
  923. package/package.json +50 -41
  924. package/src/libs/api/metadata-converter/src/index.ts +3 -0
  925. package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
  926. package/src/libs/api/metadata-converter/src/lib/common/license.ts +66 -0
  927. package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +50 -0
  928. package/src/libs/api/metadata-converter/src/lib/common/url.ts +15 -0
  929. package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +1 -1
  930. package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +504 -0
  931. package/src/libs/api/metadata-converter/src/lib/dcat-ap/index.ts +1 -0
  932. package/src/libs/api/metadata-converter/src/lib/dcat-ap/namespaces.ts +17 -0
  933. package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +463 -0
  934. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +110 -0
  935. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/individual-name.ts +20 -0
  936. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/keyword.mapper.ts +16 -0
  937. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/role.mapper.ts +48 -0
  938. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +127 -0
  939. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/status.mapper.ts +19 -0
  940. package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/uri.ts +1 -0
  941. package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +101 -0
  942. package/src/libs/api/metadata-converter/src/lib/find-converter.ts +13 -0
  943. package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +743 -0
  944. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +43 -5
  945. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +246 -0
  946. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +101 -0
  947. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +187 -0
  948. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +26 -5
  949. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +374 -18
  950. package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +216 -0
  951. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +90 -4
  952. package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +437 -0
  953. package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +487 -0
  954. package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +76 -0
  955. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +451 -0
  956. package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +289 -0
  957. package/src/libs/api/metadata-converter/src/lib/function-utils.ts +1 -1
  958. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  959. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +6 -4
  960. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +55 -40
  961. package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +1 -1
  962. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  963. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +13 -10
  964. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +20 -9
  965. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +75 -18
  966. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +118 -65
  967. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +174 -95
  968. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +354 -56
  969. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  970. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.ts +9 -62
  971. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +632 -312
  972. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +145 -29
  973. package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +35 -6
  974. package/src/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.ts +13 -0
  975. package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +58 -23
  976. package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +1 -0
  977. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +290 -101
  978. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +13 -2
  979. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +173 -16
  980. package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +1 -1
  981. package/src/libs/common/domain/src/lib/model/error/index.ts +1 -0
  982. package/src/libs/common/domain/src/lib/model/error/publication-version.error.ts +9 -0
  983. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +30 -2
  984. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  985. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +83 -22
  986. package/src/libs/common/domain/src/lib/model/record/organization.model.ts +4 -0
  987. package/src/libs/common/domain/src/lib/model/record/translation.model.ts +49 -0
  988. package/src/libs/common/domain/src/lib/model/search/filter.model.ts +17 -1
  989. package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -0
  990. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  991. package/src/libs/common/domain/src/lib/platform.service.interface.ts +32 -1
  992. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +39 -2
  993. package/src/libs/common/fixtures/src/index.ts +6 -1
  994. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +163 -0
  995. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  996. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  997. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  998. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1675 -4
  999. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  1000. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  1001. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  1002. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  1003. package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.fixtures.ts +13374 -0
  1004. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  1005. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  1006. package/src/libs/common/fixtures/src/lib/individual.fixtures.ts +61 -0
  1007. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +242 -164
  1008. package/src/libs/common/fixtures/src/lib/map/index.ts +1 -0
  1009. package/src/libs/common/fixtures/src/lib/map/map-context.fixtures.ts +53 -0
  1010. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  1011. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
  1012. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  1013. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +288 -23
  1014. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  1015. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  1016. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  1017. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +45 -15
  1018. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  1019. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  1020. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +25 -9
  1021. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  1022. package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +8 -9
  1023. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -5
  1024. package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +41 -5
  1025. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  1026. package/src/libs/feature/dataviz/src/index.ts +0 -1
  1027. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +1 -1
  1028. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +23 -5
  1029. package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +3 -1
  1030. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  1031. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +5 -2
  1032. package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +43 -78
  1033. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +36 -13
  1034. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -1
  1035. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +19 -6
  1036. package/src/libs/feature/editor/src/index.ts +1 -0
  1037. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +33 -1
  1038. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +114 -27
  1039. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +41 -10
  1040. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +12 -1
  1041. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +56 -17
  1042. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +34 -10
  1043. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.css +4 -0
  1044. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +28 -0
  1045. package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +71 -0
  1046. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  1047. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +17 -0
  1048. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +3 -0
  1049. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +27 -0
  1050. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +100 -0
  1051. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +46 -0
  1052. package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +153 -0
  1053. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  1054. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +92 -0
  1055. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +90 -0
  1056. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +222 -0
  1057. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.css +4 -0
  1058. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.html +24 -0
  1059. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +85 -0
  1060. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.ts +42 -0
  1061. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.css +4 -0
  1062. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.html +34 -0
  1063. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +210 -0
  1064. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +40 -0
  1065. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +170 -0
  1066. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
  1067. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +66 -0
  1068. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +221 -0
  1069. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.html +4 -0
  1070. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.ts +21 -0
  1071. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.html +1 -1
  1072. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
  1073. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +44 -45
  1074. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  1075. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +11 -8
  1076. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +55 -47
  1077. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +1 -0
  1078. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +86 -0
  1079. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +49 -0
  1080. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +190 -0
  1081. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +75 -0
  1082. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +256 -0
  1083. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  1084. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +51 -0
  1085. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  1086. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +13 -0
  1087. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +129 -0
  1088. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +16 -9
  1089. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  1090. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +4 -23
  1091. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +12 -25
  1092. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +15 -1
  1093. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +172 -1
  1094. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.css +0 -0
  1095. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.html +5 -0
  1096. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.ts +60 -0
  1097. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  1098. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +32 -4
  1099. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +54 -86
  1100. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  1101. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +17 -14
  1102. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +59 -85
  1103. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +162 -68
  1104. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +83 -46
  1105. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  1106. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +54 -9
  1107. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  1108. package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
  1109. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  1110. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  1111. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  1112. package/src/libs/feature/editor/src/lib/fields.config.ts +323 -57
  1113. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +73 -0
  1114. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  1115. package/src/libs/feature/editor/src/lib/services/editor.service.ts +45 -21
  1116. package/src/libs/feature/map/src/index.ts +1 -8
  1117. package/src/libs/feature/map/src/lib/+state/map.actions.ts +10 -25
  1118. package/src/libs/feature/map/src/lib/+state/map.facade.ts +11 -15
  1119. package/src/libs/feature/map/src/lib/+state/map.reducer.ts +16 -53
  1120. package/src/libs/feature/map/src/lib/+state/map.selectors.ts +7 -2
  1121. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  1122. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +23 -22
  1123. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +22 -11
  1124. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  1125. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +21 -19
  1126. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  1127. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +17 -10
  1128. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +3 -3
  1129. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +17 -10
  1130. package/src/libs/feature/map/src/lib/constant/index.ts +0 -1
  1131. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -43
  1132. package/src/libs/feature/map/src/lib/geocoding/geocoding.component.ts +38 -20
  1133. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +5 -7
  1134. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +58 -6
  1135. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.css +0 -0
  1136. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.html +4 -0
  1137. package/src/libs/feature/map/src/lib/map-state-container/map-state-container.component.ts +29 -0
  1138. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  1139. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -232
  1140. package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -1
  1141. package/src/libs/feature/record/src/index.ts +3 -0
  1142. package/src/libs/feature/record/src/lib/data-view/data-view.component.html +1 -1
  1143. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +18 -3
  1144. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +41 -19
  1145. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  1146. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +27 -1
  1147. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +64 -12
  1148. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +1 -1
  1149. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +37 -21
  1150. package/src/libs/feature/record/src/lib/feature-record.module.ts +10 -29
  1151. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.css +22 -0
  1152. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +132 -0
  1153. package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +253 -0
  1154. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.css +0 -0
  1155. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.html +37 -0
  1156. package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +43 -0
  1157. package/src/libs/feature/record/src/lib/map-view/map-view.component.html +54 -16
  1158. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +107 -76
  1159. package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +45 -0
  1160. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +15 -2
  1161. package/src/libs/feature/router/src/lib/default/constants.ts +6 -1
  1162. package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +61 -0
  1163. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  1164. package/src/libs/feature/router/src/lib/default/state/router.facade.ts +6 -4
  1165. package/src/libs/feature/search/src/index.ts +2 -0
  1166. package/src/libs/feature/search/src/lib/constants.ts +1 -1
  1167. package/src/libs/feature/search/src/lib/facets/facets.service.ts +4 -4
  1168. package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +3 -0
  1169. package/src/libs/feature/search/src/lib/feature-search.module.ts +15 -8
  1170. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +20 -10
  1171. package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +32 -1
  1172. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  1173. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -6
  1174. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +12 -1
  1175. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +7 -2
  1176. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +71 -5
  1177. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.css +0 -0
  1178. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.html +17 -0
  1179. package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +78 -0
  1180. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.css +0 -0
  1181. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.html +20 -0
  1182. package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +118 -0
  1183. package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +4 -0
  1184. package/src/libs/feature/search/src/lib/state/actions.ts +69 -17
  1185. package/src/libs/feature/search/src/lib/state/effects.ts +1 -1
  1186. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  1187. package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -8
  1188. package/src/libs/feature/search/src/lib/state/selectors.ts +0 -18
  1189. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +36 -5
  1190. package/src/libs/feature/search/src/lib/utils/service/fields.ts +91 -12
  1191. package/src/libs/ui/catalog/src/index.ts +0 -1
  1192. package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +3 -0
  1193. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
  1194. package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +15 -21
  1195. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +2 -3
  1196. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +11 -0
  1197. package/src/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.ts +8 -1
  1198. package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +3 -0
  1199. package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +1 -1
  1200. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  1201. package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +7 -5
  1202. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  1203. package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +17 -2
  1204. package/src/libs/ui/elements/src/index.ts +3 -3
  1205. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +37 -27
  1206. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +21 -1
  1207. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  1208. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  1209. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  1210. package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +3 -0
  1211. package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +7 -5
  1212. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +16 -5
  1213. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +1 -1
  1214. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +57 -11
  1215. package/src/libs/ui/elements/src/lib/error/error.component.css +24 -19
  1216. package/src/libs/ui/elements/src/lib/error/error.component.html +11 -21
  1217. package/src/libs/ui/elements/src/lib/error/error.component.ts +19 -0
  1218. package/src/libs/ui/elements/src/lib/image-input/image-input.component.css +4 -0
  1219. package/src/libs/ui/elements/src/lib/image-input/image-input.component.html +143 -0
  1220. package/src/libs/ui/{inputs → elements}/src/lib/image-input/image-input.component.ts +57 -21
  1221. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +3 -6
  1222. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +15 -0
  1223. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +2 -6
  1224. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +16 -5
  1225. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  1226. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -3
  1227. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  1228. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.html +4 -1
  1229. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +1 -0
  1230. package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +4 -1
  1231. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +20 -22
  1232. package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +24 -0
  1233. package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +7 -3
  1234. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +1 -1
  1235. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +59 -34
  1236. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +43 -1
  1237. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  1238. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +18 -11
  1239. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  1240. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +7 -1
  1241. package/src/libs/ui/elements/src/lib/notification/notification.component.html +10 -14
  1242. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +33 -2
  1243. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.css +2 -2
  1244. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  1245. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +44 -35
  1246. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +4 -4
  1247. package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +15 -0
  1248. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +24 -63
  1249. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +2 -2
  1250. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +2 -6
  1251. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +22 -0
  1252. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -4
  1253. package/src/libs/ui/inputs/src/index.ts +5 -1
  1254. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +20 -20
  1255. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +39 -25
  1256. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +37 -6
  1257. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +11 -3
  1258. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +15 -1
  1259. package/src/libs/ui/inputs/src/lib/button/button.component.ts +17 -2
  1260. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +4 -1
  1261. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -3
  1262. package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +4 -1
  1263. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +5 -6
  1264. package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +7 -0
  1265. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  1266. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +12 -6
  1267. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +19 -2
  1268. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +5 -0
  1269. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +30 -0
  1270. package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +63 -0
  1271. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  1272. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +26 -23
  1273. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +19 -2
  1274. package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +16 -20
  1275. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +7 -7
  1276. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +16 -2
  1277. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +44 -27
  1278. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  1279. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +90 -0
  1280. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +108 -0
  1281. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -3
  1282. package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +4 -1
  1283. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +2 -2
  1284. package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +16 -1
  1285. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -9
  1286. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +2 -6
  1287. package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +6 -0
  1288. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +32 -0
  1289. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +15 -0
  1290. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +40 -0
  1291. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  1292. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  1293. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  1294. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  1295. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +37 -36
  1296. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  1297. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +34 -0
  1298. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +93 -0
  1299. package/src/libs/ui/layout/src/index.ts +7 -0
  1300. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +0 -16
  1301. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +4 -12
  1302. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +20 -11
  1303. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -16
  1304. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -12
  1305. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +22 -19
  1306. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +2 -4
  1307. package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +8 -2
  1308. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +2 -6
  1309. package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +6 -0
  1310. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +9 -4
  1311. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +5 -4
  1312. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +1 -0
  1313. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +5 -9
  1314. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +23 -11
  1315. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +11 -3
  1316. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +2 -1
  1317. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  1318. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  1319. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  1320. package/src/libs/ui/layout/src/lib/paginable.interface.ts +14 -0
  1321. package/src/libs/ui/layout/src/lib/pagination/pagination.component.css +0 -0
  1322. package/src/libs/ui/{elements → layout}/src/lib/pagination/pagination.component.html +12 -13
  1323. package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +45 -0
  1324. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
  1325. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.html +51 -0
  1326. package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.ts +50 -0
  1327. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.css +16 -0
  1328. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.html +15 -0
  1329. package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.ts +31 -0
  1330. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +18 -0
  1331. package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +29 -0
  1332. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +4 -2
  1333. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  1334. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +45 -0
  1335. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +8 -15
  1336. package/src/libs/ui/map/src/index.ts +4 -2
  1337. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +1 -1
  1338. package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +8 -5
  1339. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.css +0 -0
  1340. package/src/libs/ui/map/src/lib/components/{map/map.component.html → map-container/map-container.component.html} +4 -3
  1341. package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +214 -0
  1342. package/src/libs/ui/map/src/lib/components/map-container/map-settings.token.ts +23 -0
  1343. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.css +5 -0
  1344. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.html +1 -0
  1345. package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.ts +39 -0
  1346. package/src/libs/ui/map/src/lib/map-utils.ts +54 -0
  1347. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  1348. package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +17 -13
  1349. package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +16 -10
  1350. package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +1 -1
  1351. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  1352. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +59 -0
  1353. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +61 -0
  1354. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +78 -28
  1355. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +120 -46
  1356. package/src/libs/ui/search/src/lib/ui-search.module.ts +22 -3
  1357. package/src/libs/ui/widgets/src/index.ts +1 -0
  1358. package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +4 -6
  1359. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  1360. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  1361. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  1362. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +2 -4
  1363. package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +8 -2
  1364. package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +1 -0
  1365. package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +1 -0
  1366. package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +2 -2
  1367. package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +2 -18
  1368. package/src/libs/util/app-config/src/index.ts +1 -0
  1369. package/src/libs/util/app-config/src/lib/app-config.ts +9 -2
  1370. package/src/libs/util/app-config/src/lib/fixtures.ts +10 -9
  1371. package/src/libs/util/app-config/src/lib/map-layers.ts +37 -0
  1372. package/src/libs/util/app-config/src/lib/model.ts +6 -1
  1373. package/src/libs/util/data-fetcher/src/lib/model.ts +6 -6
  1374. package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -1
  1375. package/src/libs/util/data-fetcher/src/lib/utils.ts +13 -11
  1376. package/src/libs/util/i18n/src/index.ts +1 -0
  1377. package/src/libs/util/i18n/src/lib/i18n.constants.ts +0 -43
  1378. package/src/libs/util/i18n/src/lib/lang.service.ts +1 -1
  1379. package/src/libs/util/i18n/src/lib/language-codes.ts +44 -0
  1380. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +6 -3
  1381. package/src/libs/util/shared/src/lib/links/link-utils.ts +70 -23
  1382. package/src/libs/util/shared/src/lib/services/proxy.service.ts +7 -3
  1383. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  1384. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  1385. package/src/libs/util/shared/src/lib/utils/format-fields.ts +11 -0
  1386. package/src/libs/util/shared/src/lib/utils/index.ts +2 -0
  1387. package/src/libs/util/shared/src/lib/utils/no-duplicate-file-name.ts +23 -0
  1388. package/src/libs/util/shared/src/lib/utils/temporal-extent-union.ts +6 -1
  1389. package/tailwind.base.config.js +3 -0
  1390. package/tailwind.base.css +69 -13
  1391. package/translations/de.json +224 -49
  1392. package/translations/en.json +252 -80
  1393. package/translations/es.json +202 -27
  1394. package/translations/fr.json +278 -106
  1395. package/translations/it.json +273 -96
  1396. package/translations/nl.json +202 -27
  1397. package/translations/pt.json +202 -27
  1398. package/translations/sk.json +205 -30
  1399. package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +0 -71
  1400. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  1401. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  1402. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  1403. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  1404. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  1405. package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +0 -15
  1406. package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +0 -2
  1407. package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +0 -8
  1408. package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +0 -17
  1409. package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +0 -38
  1410. package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +0 -19
  1411. package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +0 -19
  1412. package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +0 -27
  1413. package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +0 -46
  1414. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +0 -10
  1415. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +0 -289
  1416. package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +0 -62
  1417. package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +0 -54
  1418. package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +0 -66
  1419. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  1420. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +0 -183
  1421. package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +0 -29
  1422. package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +0 -40
  1423. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +0 -33
  1424. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +0 -21
  1425. package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +0 -1
  1426. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  1427. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
  1428. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  1429. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  1430. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  1431. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  1432. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  1433. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  1434. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  1435. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  1436. package/libs/feature/map/src/lib/+state/map.effects.d.ts +0 -9
  1437. package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +0 -1
  1438. package/libs/feature/map/src/lib/+state/map.models.d.ts +0 -9
  1439. package/libs/feature/map/src/lib/+state/map.models.d.ts.map +0 -1
  1440. package/libs/feature/map/src/lib/constant/map-options.d.ts +0 -9
  1441. package/libs/feature/map/src/lib/constant/map-options.d.ts.map +0 -1
  1442. package/libs/feature/map/src/lib/constant/style.constant.d.ts +0 -4
  1443. package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +0 -1
  1444. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +0 -16
  1445. package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +0 -1
  1446. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +0 -9
  1447. package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +0 -1
  1448. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +0 -11
  1449. package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +0 -1
  1450. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +0 -12
  1451. package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +0 -1
  1452. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +0 -26
  1453. package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +0 -1
  1454. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +0 -77
  1455. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +0 -1
  1456. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +0 -26
  1457. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +0 -1
  1458. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +0 -18
  1459. package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +0 -1
  1460. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +0 -16
  1461. package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +0 -1
  1462. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +0 -17
  1463. package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +0 -1
  1464. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  1465. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  1466. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +0 -1
  1467. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +0 -12
  1468. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +0 -1
  1469. package/libs/ui/map/src/lib/components/map/map.component.d.ts +0 -19
  1470. package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +0 -1
  1471. package/libs/ui/map/src/lib/ui-map.module.d.ts +0 -13
  1472. package/libs/ui/map/src/lib/ui-map.module.d.ts.map +0 -1
  1473. package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.ts +0 -445
  1474. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  1475. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  1476. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  1477. package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +0 -44
  1478. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  1479. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  1480. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  1481. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  1482. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  1483. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  1484. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  1485. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  1486. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  1487. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  1488. package/src/libs/feature/map/src/lib/+state/map.effects.ts +0 -7
  1489. package/src/libs/feature/map/src/lib/+state/map.models.ts +0 -9
  1490. package/src/libs/feature/map/src/lib/constant/map-options.ts +0 -17
  1491. package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +0 -42
  1492. package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +0 -10
  1493. package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +0 -13
  1494. package/src/libs/feature/map/src/lib/map-container/map-container.component.html +0 -1
  1495. package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +0 -26
  1496. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +0 -1
  1497. package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +0 -57
  1498. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +0 -51
  1499. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +0 -95
  1500. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +0 -318
  1501. package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -38
  1502. package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +0 -50
  1503. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +0 -33
  1504. package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +0 -68
  1505. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  1506. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +0 -56
  1507. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +0 -146
  1508. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +0 -26
  1509. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +0 -32
  1510. package/src/libs/ui/map/src/lib/components/map/map.component.ts +0 -57
  1511. package/src/libs/ui/map/src/lib/ui-map.module.ts +0 -19
  1512. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  1513. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → import-record/import-record.component.css} +0 -0
  1514. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  1515. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → online-service-resource-input/online-service-resource-input.component.css} +0 -0
  1516. /package/src/libs/feature/{map/src/lib/map-container/map-container.component.css → editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.css} +0 -0
  1517. /package/src/libs/feature/{map/src/lib/map-context/component/map-context.component.css → editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.css} +0 -0
  1518. /package/src/libs/{ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css} +0 -0
  1519. /package/src/libs/{ui/elements/src/lib/pagination/pagination.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css} +0 -0
  1520. /package/src/libs/{ui/inputs/src/lib/image-input/image-input.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.css} +0 -0
  1521. /package/src/libs/{ui/map/src/lib/components/map/map.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css} +0 -0
  1522. /package/src/libs/ui/{inputs → layout}/src/lib/previous-next-buttons/previous-next-buttons.component.css +0 -0
@@ -54,13 +54,13 @@ export class ChipsInputComponent {
54
54
  ngOnDestroy() {
55
55
  this.subscription.unsubscribe();
56
56
  }
57
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChipsInputComponent, deps: [{ token: i1.HttpClient }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
58
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChipsInputComponent, selector: "gn-ui-chips-input", inputs: { url: "url", placeholder: "placeholder", selectedItems: "selectedItems", required: "required", loadOnce: "loadOnce", autocompleteItems: "autocompleteItems" }, outputs: { itemsChange: "itemsChange" }, ngImport: i0, template: "<tag-input\n [ngModel]=\"items\"\n (ngModelChange)=\"onChange($event)\"\n onlyFromAutocomplete=\"true\"\n [placeholder]=\"placeholder\"\n [secondaryPlaceholder]=\"placeholder\"\n [ripple]=\"false\"\n [animationDuration]=\"{ enter: '0ms', leave: '0ms' }\"\n [onTextChangeDebounce]=\"100\"\n class=\"border-2 border-primary h-full rounded-lg p-2 bg-white text-sm focus:border-primary\"\n [ngClass]=\"{ invalid: invalid }\"\n>\n <tag-input-dropdown\n [autocompleteObservable]=\"requestAutocompleteItems\"\n [minimumTextLength]=\"0\"\n [keepOpen]=\"false\"\n [showDropdownIfEmpty]=\"true\"\n >\n <ng-template let-item=\"item\" let-index=\"index\">\n {{ item.display }}\n </ng-template>\n </tag-input-dropdown>\n</tag-input>\n", styles: ["tag-input::ng-deep .ng2-tag-input{border-bottom:none}tag-input::ng-deep .ng2-tag-input.ng2-tag-input--focused{border-bottom:none}tag-input::ng-deep tag{border-radius:5px;background:var(--color-primary-lightest);font-family:inherit;align-content:center;font-style:italic}tag-input::ng-deep tag::ng-deep:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover,tag-input::ng-deep tag:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover{background:var(--color-primary)!important}tag-input::ng-deep .tag__text{padding-right:7px}tag-input::ng-deep div,tag-input::ng-deep form{height:100%}tag-input.invalid{border-color:var(--color-secondary)}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i5.TagInputComponent, selector: "tag-input", inputs: ["separatorKeys", "separatorKeyCodes", "placeholder", "secondaryPlaceholder", "maxItems", "validators", "asyncValidators", "onlyFromAutocomplete", "errorMessages", "theme", "onTextChangeDebounce", "inputId", "inputClass", "clearOnBlur", "hideForm", "addOnBlur", "addOnPaste", "pasteSplitPattern", "blinkIfDupe", "removable", "editable", "allowDupes", "modelAsStrings", "trimTags", "inputText", "ripple", "tabindex", "disable", "dragZone", "onRemoving", "onAdding", "animationDuration"], outputs: ["onAdd", "onRemove", "onSelect", "onFocus", "onBlur", "onTextChange", "onPaste", "onValidationError", "onTagEdited", "inputTextChange"] }, { kind: "component", type: i5.TagInputDropdown, selector: "tag-input-dropdown", inputs: ["offset", "focusFirstElement", "showDropdownIfEmpty", "autocompleteObservable", "minimumTextLength", "limitItemsTo", "displayBy", "identifyBy", "matchingFn", "appendToBody", "keepOpen", "dynamicUpdate", "zIndex", "autocompleteItems"] }] }); }
57
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ChipsInputComponent, deps: [{ token: i1.HttpClient }, { token: i2.TranslateService }], target: i0.ɵɵFactoryTarget.Component }); }
58
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ChipsInputComponent, selector: "gn-ui-chips-input", inputs: { url: "url", placeholder: "placeholder", selectedItems: "selectedItems", required: "required", loadOnce: "loadOnce", autocompleteItems: "autocompleteItems" }, outputs: { itemsChange: "itemsChange" }, ngImport: i0, template: "<tag-input\n [ngModel]=\"items\"\n (ngModelChange)=\"onChange($event)\"\n onlyFromAutocomplete=\"true\"\n [placeholder]=\"placeholder\"\n [secondaryPlaceholder]=\"placeholder\"\n [ripple]=\"false\"\n [animationDuration]=\"{ enter: '0ms', leave: '0ms' }\"\n [onTextChangeDebounce]=\"100\"\n class=\"border-2 border-primary h-full rounded-lg p-2 bg-white text-sm focus:border-primary\"\n [ngClass]=\"{ invalid: invalid }\"\n>\n <tag-input-dropdown\n [autocompleteObservable]=\"requestAutocompleteItems\"\n [minimumTextLength]=\"0\"\n [keepOpen]=\"false\"\n [showDropdownIfEmpty]=\"true\"\n >\n <ng-template let-item=\"item\" let-index=\"index\">\n {{ item.display }}\n </ng-template>\n </tag-input-dropdown>\n</tag-input>\n", styles: ["tag-input::ng-deep .ng2-tag-input{border-bottom:none}tag-input::ng-deep .ng2-tag-input.ng2-tag-input--focused{border-bottom:none}tag-input::ng-deep tag{border-radius:5px;background:var(--color-primary-lightest);font-family:inherit;align-content:center;font-style:italic}tag-input::ng-deep tag::ng-deep:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover,tag-input::ng-deep tag:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover{background:var(--color-primary)!important}tag-input::ng-deep .tag__text{padding-right:7px}tag-input::ng-deep div,tag-input::ng-deep form{height:100%}tag-input.invalid{border-color:var(--color-secondary)}\n"], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i5.TagInputComponent, selector: "tag-input", inputs: ["separatorKeys", "separatorKeyCodes", "placeholder", "secondaryPlaceholder", "maxItems", "validators", "asyncValidators", "onlyFromAutocomplete", "errorMessages", "theme", "onTextChangeDebounce", "inputId", "inputClass", "clearOnBlur", "hideForm", "addOnBlur", "addOnPaste", "pasteSplitPattern", "blinkIfDupe", "removable", "editable", "allowDupes", "modelAsStrings", "trimTags", "inputText", "ripple", "tabindex", "disable", "dragZone", "onRemoving", "onAdding", "animationDuration"], outputs: ["onAdd", "onRemove", "onSelect", "onFocus", "onBlur", "onTextChange", "onPaste", "onValidationError", "onTagEdited", "inputTextChange"] }, { kind: "component", type: i5.TagInputDropdown, selector: "tag-input-dropdown", inputs: ["offset", "focusFirstElement", "showDropdownIfEmpty", "autocompleteObservable", "minimumTextLength", "limitItemsTo", "displayBy", "identifyBy", "matchingFn", "appendToBody", "keepOpen", "dynamicUpdate", "zIndex", "autocompleteItems"] }] }); }
59
59
  }
60
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChipsInputComponent, decorators: [{
60
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ChipsInputComponent, decorators: [{
61
61
  type: Component,
62
62
  args: [{ selector: 'gn-ui-chips-input', template: "<tag-input\n [ngModel]=\"items\"\n (ngModelChange)=\"onChange($event)\"\n onlyFromAutocomplete=\"true\"\n [placeholder]=\"placeholder\"\n [secondaryPlaceholder]=\"placeholder\"\n [ripple]=\"false\"\n [animationDuration]=\"{ enter: '0ms', leave: '0ms' }\"\n [onTextChangeDebounce]=\"100\"\n class=\"border-2 border-primary h-full rounded-lg p-2 bg-white text-sm focus:border-primary\"\n [ngClass]=\"{ invalid: invalid }\"\n>\n <tag-input-dropdown\n [autocompleteObservable]=\"requestAutocompleteItems\"\n [minimumTextLength]=\"0\"\n [keepOpen]=\"false\"\n [showDropdownIfEmpty]=\"true\"\n >\n <ng-template let-item=\"item\" let-index=\"index\">\n {{ item.display }}\n </ng-template>\n </tag-input-dropdown>\n</tag-input>\n", styles: ["tag-input::ng-deep .ng2-tag-input{border-bottom:none}tag-input::ng-deep .ng2-tag-input.ng2-tag-input--focused{border-bottom:none}tag-input::ng-deep tag{border-radius:5px;background:var(--color-primary-lightest);font-family:inherit;align-content:center;font-style:italic}tag-input::ng-deep tag::ng-deep:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover,tag-input::ng-deep tag:not(:focus):not(.tag--editing):not(:active):not(.readonly):hover{background:var(--color-primary)!important}tag-input::ng-deep .tag__text{padding-right:7px}tag-input::ng-deep div,tag-input::ng-deep form{height:100%}tag-input.invalid{border-color:var(--color-secondary)}\n"] }]
63
- }], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: i2.TranslateService }]; }, propDecorators: { url: [{
63
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: i2.TranslateService }], propDecorators: { url: [{
64
64
  type: Input
65
65
  }], placeholder: [{
66
66
  type: Input
@@ -75,4 +75,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
75
75
  }], itemsChange: [{
76
76
  type: Output
77
77
  }] } });
78
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9jaGlwcy1pbnB1dC9jaGlwcy1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NoaXBzLWlucHV0L2NoaXBzLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUNqRCxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBcUIsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQzNFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFBO0FBQ3pFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3RELE9BQU8sRUFBRSxVQUFVLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDNUQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLEdBQUcsRUFBRSxXQUFXLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7Ozs7Ozs7QUFZNUUsTUFBTSxPQUFPLG1CQUFtQjtJQW1COUIsUUFBUSxDQUFDLEtBQUs7UUFDWixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTtJQUM1QixDQUFDO0lBa0JELFlBQW9CLElBQWdCLEVBQVUsU0FBMkI7UUFBckQsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUFVLGNBQVMsR0FBVCxTQUFTLENBQWtCO1FBbkNoRSxhQUFRLEdBQUcsS0FBSyxDQUFBO1FBQ2hCLGFBQVEsR0FBRyxLQUFLLENBQUE7UUFDaEIsc0JBQWlCLEdBQVksRUFBRSxDQUFBO1FBS3hDLFlBQU8sR0FBRyxLQUFLLENBQUE7UUFJZixVQUFLLEdBQVksRUFBRSxDQUFBO1FBUW5CLDZCQUF3QixHQUFHLENBQUMsSUFBWSxFQUFtQixFQUFFO1lBQzNELElBQUksSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDWixJQUFJLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRTtvQkFDckMsT0FBTyxJQUFJLENBQUMsV0FBVyxDQUFBO2lCQUN4QjtnQkFDRCxNQUFNLEdBQUcsR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxDQUFBO2dCQUUxQixNQUFNLElBQUksR0FBRyxrQkFBa0IsQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLFdBQVcsQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLENBQUE7Z0JBQ3ZFLE9BQU8sSUFBSSxDQUFDLElBQUk7cUJBQ2IsR0FBRyxDQUFNLEdBQUcsQ0FBQyxPQUFPLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxDQUFDO3FCQUN0QyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO2FBQ3hEO2lCQUFNO2dCQUNMLE9BQU8sRUFBRSxDQUFDLElBQUksQ0FBQyxpQkFBaUIsSUFBSSxFQUFFLENBQUMsQ0FBQTthQUN4QztRQUNILENBQUMsQ0FBQTtRQUdDLElBQUksQ0FBQyxTQUFTLEdBQUcsSUFBSSxPQUFPLEVBQVcsQ0FBQTtRQUN2QyxJQUFJLENBQUMsV0FBVyxHQUFHLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLG9CQUFvQixFQUFFLENBQUMsQ0FBQTtRQUM5RCxJQUFJLENBQUMsWUFBWSxHQUFHLElBQUksWUFBWSxFQUFFLENBQUE7SUFDeEMsQ0FBQztJQUVELFFBQVE7UUFDTixJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDakIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO1NBQzNFO1FBRUQsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFBO1FBQy9CLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLFNBQVM7YUFDL0IsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxJQUFJLENBQUMsT0FBTyxHQUFHLENBQUMsQ0FBQyxNQUFNLEtBQUssQ0FBQyxDQUFDLENBQUMsQ0FBQzthQUNqRCxTQUFTLEVBQUUsQ0FBQTtRQUNkLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTtJQUNqQyxDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxZQUFZLENBQUMsV0FBVyxFQUFFLENBQUE7SUFDakMsQ0FBQzsrR0EzRFUsbUJBQW1CO21HQUFuQixtQkFBbUIsMFFDakJoQyx1dkJBdUJBOzs0RkROYSxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0UsbUJBQW1CO2dJQUtwQixHQUFHO3NCQUFYLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxhQUFhO3NCQUFyQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxpQkFBaUI7c0JBQXpCLEtBQUs7Z0JBQ0ksV0FBVztzQkFBcEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCdcbmltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uRGVzdHJveSwgT25Jbml0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgTEFOR18yX1RPXzNfTUFQUEVSIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL2kxOG4vc3JjJ1xuaW1wb3J0IHsgVHJhbnNsYXRlU2VydmljZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBvZiwgU3ViamVjdCwgU3Vic2NyaXB0aW9uIH0gZnJvbSAncnhqcydcbmltcG9ydCB7IGRpc3RpbmN0VW50aWxDaGFuZ2VkLCBtYXAsIHNoYXJlUmVwbGF5LCB0YXAgfSBmcm9tICdyeGpzL29wZXJhdG9ycydcblxuZXhwb3J0IGludGVyZmFjZSBJdGVtcyB7XG4gIGRpc3BsYXk6IHN0cmluZ1xuICB2YWx1ZTogc3RyaW5nXG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWNoaXBzLWlucHV0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NoaXBzLWlucHV0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY2hpcHMtaW5wdXQuY29tcG9uZW50LmNzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBDaGlwc0lucHV0Q29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBASW5wdXQoKSB1cmw6ICh0ZXh0KSA9PiBzdHJpbmdcbiAgQElucHV0KCkgcGxhY2Vob2xkZXI6IHN0cmluZ1xuICBASW5wdXQoKSBzZWxlY3RlZEl0ZW1zOiBJdGVtc1tdXG4gIEBJbnB1dCgpIHJlcXVpcmVkID0gZmFsc2VcbiAgQElucHV0KCkgbG9hZE9uY2UgPSBmYWxzZVxuICBASW5wdXQoKSBhdXRvY29tcGxldGVJdGVtczogSXRlbXNbXSA9IFtdXG4gIEBPdXRwdXQoKSBpdGVtc0NoYW5nZTogT2JzZXJ2YWJsZTxJdGVtc1tdPlxuXG4gIHByaXZhdGUgc3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb25cblxuICBpbnZhbGlkID0gZmFsc2VcblxuICByYXdDaGFuZ2U6IFN1YmplY3Q8SXRlbXNbXT5cblxuICBpdGVtczogSXRlbXNbXSA9IFtdXG5cbiAgbG9hZGVkSXRlbXM6IE9ic2VydmFibGU8SXRlbXNbXT5cblxuICBvbkNoYW5nZShldmVudCkge1xuICAgIHRoaXMucmF3Q2hhbmdlLm5leHQoZXZlbnQpXG4gIH1cblxuICByZXF1ZXN0QXV0b2NvbXBsZXRlSXRlbXMgPSAodGV4dDogc3RyaW5nKTogT2JzZXJ2YWJsZTxhbnk+ID0+IHtcbiAgICBpZiAodGhpcy51cmwpIHtcbiAgICAgIGlmICh0aGlzLmxvYWRPbmNlICYmIHRoaXMubG9hZGVkSXRlbXMpIHtcbiAgICAgICAgcmV0dXJuIHRoaXMubG9hZGVkSXRlbXNcbiAgICAgIH1cbiAgICAgIGNvbnN0IHVybCA9IHRoaXMudXJsKHRleHQpXG5cbiAgICAgIGNvbnN0IGxhbmcgPSBMQU5HXzJfVE9fM19NQVBQRVJbdGhpcy50cmFuc2xhdGUuY3VycmVudExhbmcuc2xpY2UoMCwgMildXG4gICAgICByZXR1cm4gdGhpcy5odHRwXG4gICAgICAgIC5nZXQ8YW55Pih1cmwucmVwbGFjZSgnJHtsYW5nfScsIGxhbmcpKVxuICAgICAgICAucGlwZShtYXAoKGl0ZW0pID0+IGl0ZW0ubWFwKChpKSA9PiBpLnZhbHVlc1tsYW5nXSkpKVxuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gb2YodGhpcy5hdXRvY29tcGxldGVJdGVtcyB8fCBbXSlcbiAgICB9XG4gIH1cblxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIGh0dHA6IEh0dHBDbGllbnQsIHByaXZhdGUgdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlKSB7XG4gICAgdGhpcy5yYXdDaGFuZ2UgPSBuZXcgU3ViamVjdDxJdGVtc1tdPigpXG4gICAgdGhpcy5pdGVtc0NoYW5nZSA9IHRoaXMucmF3Q2hhbmdlLnBpcGUoZGlzdGluY3RVbnRpbENoYW5nZWQoKSlcbiAgICB0aGlzLnN1YnNjcmlwdGlvbiA9IG5ldyBTdWJzY3JpcHRpb24oKVxuICB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgaWYgKHRoaXMubG9hZE9uY2UpIHtcbiAgICAgIHRoaXMubG9hZGVkSXRlbXMgPSB0aGlzLnJlcXVlc3RBdXRvY29tcGxldGVJdGVtcygnKicpLnBpcGUoc2hhcmVSZXBsYXkoMSkpXG4gICAgfVxuXG4gICAgdGhpcy5pdGVtcyA9IHRoaXMuc2VsZWN0ZWRJdGVtc1xuICAgIHRoaXMuc3Vic2NyaXB0aW9uID0gdGhpcy5yYXdDaGFuZ2VcbiAgICAgIC5waXBlKHRhcCgodikgPT4gKHRoaXMuaW52YWxpZCA9IHYubGVuZ3RoID09PSAwKSkpXG4gICAgICAuc3Vic2NyaWJlKClcbiAgICB0aGlzLnJhd0NoYW5nZS5uZXh0KHRoaXMuaXRlbXMpXG4gIH1cblxuICBuZ09uRGVzdHJveSgpIHtcbiAgICB0aGlzLnN1YnNjcmlwdGlvbi51bnN1YnNjcmliZSgpXG4gIH1cbn1cbiIsIjx0YWctaW5wdXRcbiAgW25nTW9kZWxdPVwiaXRlbXNcIlxuICAobmdNb2RlbENoYW5nZSk9XCJvbkNoYW5nZSgkZXZlbnQpXCJcbiAgb25seUZyb21BdXRvY29tcGxldGU9XCJ0cnVlXCJcbiAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcbiAgW3NlY29uZGFyeVBsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcbiAgW3JpcHBsZV09XCJmYWxzZVwiXG4gIFthbmltYXRpb25EdXJhdGlvbl09XCJ7IGVudGVyOiAnMG1zJywgbGVhdmU6ICcwbXMnIH1cIlxuICBbb25UZXh0Q2hhbmdlRGVib3VuY2VdPVwiMTAwXCJcbiAgY2xhc3M9XCJib3JkZXItMiBib3JkZXItcHJpbWFyeSBoLWZ1bGwgcm91bmRlZC1sZyBwLTIgYmctd2hpdGUgdGV4dC1zbSBmb2N1czpib3JkZXItcHJpbWFyeVwiXG4gIFtuZ0NsYXNzXT1cInsgaW52YWxpZDogaW52YWxpZCB9XCJcbj5cbiAgPHRhZy1pbnB1dC1kcm9wZG93blxuICAgIFthdXRvY29tcGxldGVPYnNlcnZhYmxlXT1cInJlcXVlc3RBdXRvY29tcGxldGVJdGVtc1wiXG4gICAgW21pbmltdW1UZXh0TGVuZ3RoXT1cIjBcIlxuICAgIFtrZWVwT3Blbl09XCJmYWxzZVwiXG4gICAgW3Nob3dEcm9wZG93bklmRW1wdHldPVwidHJ1ZVwiXG4gID5cbiAgICA8bmctdGVtcGxhdGUgbGV0LWl0ZW09XCJpdGVtXCIgbGV0LWluZGV4PVwiaW5kZXhcIj5cbiAgICAgIHt7IGl0ZW0uZGlzcGxheSB9fVxuICAgIDwvbmctdGVtcGxhdGU+XG4gIDwvdGFnLWlucHV0LWRyb3Bkb3duPlxuPC90YWctaW5wdXQ+XG4iXX0=
78
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMtaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9jaGlwcy1pbnB1dC9jaGlwcy1pbnB1dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NoaXBzLWlucHV0L2NoaXBzLWlucHV0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQTtBQUNqRCxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBcUIsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQzNFLE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFBO0FBQ3pFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHFCQUFxQixDQUFBO0FBQ3RELE9BQU8sRUFBRSxVQUFVLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxNQUFNLENBQUE7QUFDNUQsT0FBTyxFQUFFLG9CQUFvQixFQUFFLEdBQUcsRUFBRSxXQUFXLEVBQUUsR0FBRyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7Ozs7Ozs7QUFZNUUsTUFBTSxPQUFPLG1CQUFtQjtJQW1COUIsUUFBUSxDQUFDLEtBQUs7UUFDWixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQTtJQUM1QixDQUFDO0lBa0JELFlBQ1UsSUFBZ0IsRUFDaEIsU0FBMkI7UUFEM0IsU0FBSSxHQUFKLElBQUksQ0FBWTtRQUNoQixjQUFTLEdBQVQsU0FBUyxDQUFrQjtRQXJDNUIsYUFBUSxHQUFHLEtBQUssQ0FBQTtRQUNoQixhQUFRLEdBQUcsS0FBSyxDQUFBO1FBQ2hCLHNCQUFpQixHQUFZLEVBQUUsQ0FBQTtRQUt4QyxZQUFPLEdBQUcsS0FBSyxDQUFBO1FBSWYsVUFBSyxHQUFZLEVBQUUsQ0FBQTtRQVFuQiw2QkFBd0IsR0FBRyxDQUFDLElBQVksRUFBbUIsRUFBRTtZQUMzRCxJQUFJLElBQUksQ0FBQyxHQUFHLEVBQUUsQ0FBQztnQkFDYixJQUFJLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO29CQUN0QyxPQUFPLElBQUksQ0FBQyxXQUFXLENBQUE7Z0JBQ3pCLENBQUM7Z0JBQ0QsTUFBTSxHQUFHLEdBQUcsSUFBSSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsQ0FBQTtnQkFFMUIsTUFBTSxJQUFJLEdBQUcsa0JBQWtCLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFBO2dCQUN2RSxPQUFPLElBQUksQ0FBQyxJQUFJO3FCQUNiLEdBQUcsQ0FBTSxHQUFHLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxJQUFJLENBQUMsQ0FBQztxQkFDdEMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQTtZQUN6RCxDQUFDO2lCQUFNLENBQUM7Z0JBQ04sT0FBTyxFQUFFLENBQUMsSUFBSSxDQUFDLGlCQUFpQixJQUFJLEVBQUUsQ0FBQyxDQUFBO1lBQ3pDLENBQUM7UUFDSCxDQUFDLENBQUE7UUFNQyxJQUFJLENBQUMsU0FBUyxHQUFHLElBQUksT0FBTyxFQUFXLENBQUE7UUFDdkMsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxvQkFBb0IsRUFBRSxDQUFDLENBQUE7UUFDOUQsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFBO0lBQ3hDLENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFLENBQUM7WUFDbEIsSUFBSSxDQUFDLFdBQVcsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsR0FBRyxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFBO1FBQzVFLENBQUM7UUFFRCxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUE7UUFDL0IsSUFBSSxDQUFDLFlBQVksR0FBRyxJQUFJLENBQUMsU0FBUzthQUMvQixJQUFJLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLEdBQUcsQ0FBQyxDQUFDLE1BQU0sS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDO2FBQ2pELFNBQVMsRUFBRSxDQUFBO1FBQ2QsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxDQUFBO0lBQ2pDLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFlBQVksQ0FBQyxXQUFXLEVBQUUsQ0FBQTtJQUNqQyxDQUFDOytHQTlEVSxtQkFBbUI7bUdBQW5CLG1CQUFtQiwwUUNqQmhDLHV2QkF1QkE7OzRGRE5hLG1CQUFtQjtrQkFML0IsU0FBUzsrQkFDRSxtQkFBbUI7OEdBS3BCLEdBQUc7c0JBQVgsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLGFBQWE7c0JBQXJCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLGlCQUFpQjtzQkFBekIsS0FBSztnQkFDSSxXQUFXO3NCQUFwQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cENsaWVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJ1xuaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25EZXN0cm95LCBPbkluaXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBMQU5HXzJfVE9fM19NQVBQRVIgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvaTE4bi9zcmMnXG5pbXBvcnQgeyBUcmFuc2xhdGVTZXJ2aWNlIH0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSdcbmltcG9ydCB7IE9ic2VydmFibGUsIG9mLCBTdWJqZWN0LCBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJ1xuaW1wb3J0IHsgZGlzdGluY3RVbnRpbENoYW5nZWQsIG1hcCwgc2hhcmVSZXBsYXksIHRhcCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJ1xuXG5leHBvcnQgaW50ZXJmYWNlIEl0ZW1zIHtcbiAgZGlzcGxheTogc3RyaW5nXG4gIHZhbHVlOiBzdHJpbmdcbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktY2hpcHMtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vY2hpcHMtaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jaGlwcy1pbnB1dC5jb21wb25lbnQuY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIENoaXBzSW5wdXRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIEBJbnB1dCgpIHVybDogKHRleHQpID0+IHN0cmluZ1xuICBASW5wdXQoKSBwbGFjZWhvbGRlcjogc3RyaW5nXG4gIEBJbnB1dCgpIHNlbGVjdGVkSXRlbXM6IEl0ZW1zW11cbiAgQElucHV0KCkgcmVxdWlyZWQgPSBmYWxzZVxuICBASW5wdXQoKSBsb2FkT25jZSA9IGZhbHNlXG4gIEBJbnB1dCgpIGF1dG9jb21wbGV0ZUl0ZW1zOiBJdGVtc1tdID0gW11cbiAgQE91dHB1dCgpIGl0ZW1zQ2hhbmdlOiBPYnNlcnZhYmxlPEl0ZW1zW10+XG5cbiAgcHJpdmF0ZSBzdWJzY3JpcHRpb246IFN1YnNjcmlwdGlvblxuXG4gIGludmFsaWQgPSBmYWxzZVxuXG4gIHJhd0NoYW5nZTogU3ViamVjdDxJdGVtc1tdPlxuXG4gIGl0ZW1zOiBJdGVtc1tdID0gW11cblxuICBsb2FkZWRJdGVtczogT2JzZXJ2YWJsZTxJdGVtc1tdPlxuXG4gIG9uQ2hhbmdlKGV2ZW50KSB7XG4gICAgdGhpcy5yYXdDaGFuZ2UubmV4dChldmVudClcbiAgfVxuXG4gIHJlcXVlc3RBdXRvY29tcGxldGVJdGVtcyA9ICh0ZXh0OiBzdHJpbmcpOiBPYnNlcnZhYmxlPGFueT4gPT4ge1xuICAgIGlmICh0aGlzLnVybCkge1xuICAgICAgaWYgKHRoaXMubG9hZE9uY2UgJiYgdGhpcy5sb2FkZWRJdGVtcykge1xuICAgICAgICByZXR1cm4gdGhpcy5sb2FkZWRJdGVtc1xuICAgICAgfVxuICAgICAgY29uc3QgdXJsID0gdGhpcy51cmwodGV4dClcblxuICAgICAgY29uc3QgbGFuZyA9IExBTkdfMl9UT18zX01BUFBFUlt0aGlzLnRyYW5zbGF0ZS5jdXJyZW50TGFuZy5zbGljZSgwLCAyKV1cbiAgICAgIHJldHVybiB0aGlzLmh0dHBcbiAgICAgICAgLmdldDxhbnk+KHVybC5yZXBsYWNlKCcke2xhbmd9JywgbGFuZykpXG4gICAgICAgIC5waXBlKG1hcCgoaXRlbSkgPT4gaXRlbS5tYXAoKGkpID0+IGkudmFsdWVzW2xhbmddKSkpXG4gICAgfSBlbHNlIHtcbiAgICAgIHJldHVybiBvZih0aGlzLmF1dG9jb21wbGV0ZUl0ZW1zIHx8IFtdKVxuICAgIH1cbiAgfVxuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgaHR0cDogSHR0cENsaWVudCxcbiAgICBwcml2YXRlIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZVxuICApIHtcbiAgICB0aGlzLnJhd0NoYW5nZSA9IG5ldyBTdWJqZWN0PEl0ZW1zW10+KClcbiAgICB0aGlzLml0ZW1zQ2hhbmdlID0gdGhpcy5yYXdDaGFuZ2UucGlwZShkaXN0aW5jdFVudGlsQ2hhbmdlZCgpKVxuICAgIHRoaXMuc3Vic2NyaXB0aW9uID0gbmV3IFN1YnNjcmlwdGlvbigpXG4gIH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5sb2FkT25jZSkge1xuICAgICAgdGhpcy5sb2FkZWRJdGVtcyA9IHRoaXMucmVxdWVzdEF1dG9jb21wbGV0ZUl0ZW1zKCcqJykucGlwZShzaGFyZVJlcGxheSgxKSlcbiAgICB9XG5cbiAgICB0aGlzLml0ZW1zID0gdGhpcy5zZWxlY3RlZEl0ZW1zXG4gICAgdGhpcy5zdWJzY3JpcHRpb24gPSB0aGlzLnJhd0NoYW5nZVxuICAgICAgLnBpcGUodGFwKCh2KSA9PiAodGhpcy5pbnZhbGlkID0gdi5sZW5ndGggPT09IDApKSlcbiAgICAgIC5zdWJzY3JpYmUoKVxuICAgIHRoaXMucmF3Q2hhbmdlLm5leHQodGhpcy5pdGVtcylcbiAgfVxuXG4gIG5nT25EZXN0cm95KCkge1xuICAgIHRoaXMuc3Vic2NyaXB0aW9uLnVuc3Vic2NyaWJlKClcbiAgfVxufVxuIiwiPHRhZy1pbnB1dFxuICBbbmdNb2RlbF09XCJpdGVtc1wiXG4gIChuZ01vZGVsQ2hhbmdlKT1cIm9uQ2hhbmdlKCRldmVudClcIlxuICBvbmx5RnJvbUF1dG9jb21wbGV0ZT1cInRydWVcIlxuICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICBbc2Vjb25kYXJ5UGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICBbcmlwcGxlXT1cImZhbHNlXCJcbiAgW2FuaW1hdGlvbkR1cmF0aW9uXT1cInsgZW50ZXI6ICcwbXMnLCBsZWF2ZTogJzBtcycgfVwiXG4gIFtvblRleHRDaGFuZ2VEZWJvdW5jZV09XCIxMDBcIlxuICBjbGFzcz1cImJvcmRlci0yIGJvcmRlci1wcmltYXJ5IGgtZnVsbCByb3VuZGVkLWxnIHAtMiBiZy13aGl0ZSB0ZXh0LXNtIGZvY3VzOmJvcmRlci1wcmltYXJ5XCJcbiAgW25nQ2xhc3NdPVwieyBpbnZhbGlkOiBpbnZhbGlkIH1cIlxuPlxuICA8dGFnLWlucHV0LWRyb3Bkb3duXG4gICAgW2F1dG9jb21wbGV0ZU9ic2VydmFibGVdPVwicmVxdWVzdEF1dG9jb21wbGV0ZUl0ZW1zXCJcbiAgICBbbWluaW11bVRleHRMZW5ndGhdPVwiMFwiXG4gICAgW2tlZXBPcGVuXT1cImZhbHNlXCJcbiAgICBbc2hvd0Ryb3Bkb3duSWZFbXB0eV09XCJ0cnVlXCJcbiAgPlxuICAgIDxuZy10ZW1wbGF0ZSBsZXQtaXRlbT1cIml0ZW1cIiBsZXQtaW5kZXg9XCJpbmRleFwiPlxuICAgICAge3sgaXRlbS5kaXNwbGF5IH19XG4gICAgPC9uZy10ZW1wbGF0ZT5cbiAgPC90YWctaW5wdXQtZHJvcGRvd24+XG48L3RhZy1pbnB1dD5cbiJdfQ==
@@ -1,8 +1,11 @@
1
1
  import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatTooltipModule } from '@angular/material/tooltip';
4
+ import { NgIcon, provideIcons } from '@ng-icons/core';
5
+ import { matContentCopy } from '@ng-icons/material-icons/baseline';
2
6
  import * as i0 from "@angular/core";
3
7
  import * as i1 from "@angular/common";
4
- import * as i2 from "@angular/material/icon";
5
- import * as i3 from "@angular/material/tooltip";
8
+ import * as i2 from "@angular/material/tooltip";
6
9
  export class CopyTextButtonComponent {
7
10
  constructor() {
8
11
  this.displayText = true;
@@ -12,12 +15,12 @@ export class CopyTextButtonComponent {
12
15
  navigator.clipboard.writeText(this.text);
13
16
  event.target.blur();
14
17
  }
15
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CopyTextButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
16
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CopyTextButtonComponent, selector: "gn-ui-copy-text-button", inputs: { text: "text", tooltipText: "tooltipText", displayText: "displayText", rows: "rows" }, ngImport: i0, template: "<div class=\"flex\">\n <input\n *ngIf=\"displayText && rows <= 1\"\n type=\"text\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 truncate\"\n value=\"{{ text }}\"\n readonly\n />\n <textarea\n *ngIf=\"displayText && rows > 1\"\n [rows]=\"rows\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 overflow-y-auto h-max\"\n readonly\n >{{ text }}</textarea\n >\n <button\n type=\"button\"\n (click)=\"copyText($event)\"\n [ngClass]=\"{\n 'py-2 px-4 rounded-r-md bg-gray-400 hover:bg-gray-600 focus:bg-gray-800 text-white':\n displayText\n }\"\n mat-raised-button\n [matTooltip]=\"tooltipText\"\n matTooltipPosition=\"above\"\n >\n <mat-icon\n class=\"material-symbols-outlined pointer-events-none align-middle card-icon\"\n >content_copy</mat-icon\n >\n </button>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i3.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopyTextButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
19
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: CopyTextButtonComponent, isStandalone: true, selector: "gn-ui-copy-text-button", inputs: { text: "text", tooltipText: "tooltipText", displayText: "displayText", rows: "rows" }, ngImport: i0, template: "<div class=\"flex\">\n <input\n *ngIf=\"displayText && rows <= 1\"\n type=\"text\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 truncate\"\n value=\"{{ text }}\"\n readonly\n />\n <textarea\n *ngIf=\"displayText && rows > 1\"\n [rows]=\"rows\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 overflow-y-auto h-max\"\n readonly\n >{{ text }}</textarea\n >\n <button\n type=\"button\"\n (click)=\"copyText($event)\"\n [ngClass]=\"{\n 'py-2 px-4 rounded-r-md bg-gray-400 hover:bg-gray-600 focus:bg-gray-800 text-white':\n displayText,\n }\"\n [matTooltip]=\"tooltipText\"\n matTooltipPosition=\"above\"\n >\n <ng-icon\n name=\"matContentCopy\"\n class=\"pointer-events-none align-middle card-icon\"\n ></ng-icon>\n </button>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i2.MatTooltip, selector: "[matTooltip]", inputs: ["matTooltipPosition", "matTooltipPositionAtOrigin", "matTooltipDisabled", "matTooltipShowDelay", "matTooltipHideDelay", "matTooltipTouchGestures", "matTooltip", "matTooltipClass"], exportAs: ["matTooltip"] }, { kind: "component", type: NgIcon, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }], viewProviders: [provideIcons({ matContentCopy })], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
17
20
  }
18
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CopyTextButtonComponent, decorators: [{
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: CopyTextButtonComponent, decorators: [{
19
22
  type: Component,
20
- args: [{ selector: 'gn-ui-copy-text-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"flex\">\n <input\n *ngIf=\"displayText && rows <= 1\"\n type=\"text\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 truncate\"\n value=\"{{ text }}\"\n readonly\n />\n <textarea\n *ngIf=\"displayText && rows > 1\"\n [rows]=\"rows\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 overflow-y-auto h-max\"\n readonly\n >{{ text }}</textarea\n >\n <button\n type=\"button\"\n (click)=\"copyText($event)\"\n [ngClass]=\"{\n 'py-2 px-4 rounded-r-md bg-gray-400 hover:bg-gray-600 focus:bg-gray-800 text-white':\n displayText\n }\"\n mat-raised-button\n [matTooltip]=\"tooltipText\"\n matTooltipPosition=\"above\"\n >\n <mat-icon\n class=\"material-symbols-outlined pointer-events-none align-middle card-icon\"\n >content_copy</mat-icon\n >\n </button>\n</div>\n" }]
23
+ args: [{ selector: 'gn-ui-copy-text-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, MatTooltipModule, NgIcon], viewProviders: [provideIcons({ matContentCopy })], template: "<div class=\"flex\">\n <input\n *ngIf=\"displayText && rows <= 1\"\n type=\"text\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 truncate\"\n value=\"{{ text }}\"\n readonly\n />\n <textarea\n *ngIf=\"displayText && rows > 1\"\n [rows]=\"rows\"\n class=\"grow py-2 px-4 bg-gray-200 opacity-50 rounded-l-md border border-gray-300 overflow-y-auto h-max\"\n readonly\n >{{ text }}</textarea\n >\n <button\n type=\"button\"\n (click)=\"copyText($event)\"\n [ngClass]=\"{\n 'py-2 px-4 rounded-r-md bg-gray-400 hover:bg-gray-600 focus:bg-gray-800 text-white':\n displayText,\n }\"\n [matTooltip]=\"tooltipText\"\n matTooltipPosition=\"above\"\n >\n <ng-icon\n name=\"matContentCopy\"\n class=\"pointer-events-none align-middle card-icon\"\n ></ng-icon>\n </button>\n</div>\n" }]
21
24
  }], propDecorators: { text: [{
22
25
  type: Input
23
26
  }], tooltipText: [{
@@ -27,4 +30,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
27
30
  }], rows: [{
28
31
  type: Input
29
32
  }] } });
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NvcHktdGV4dC1idXR0b24vY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NvcHktdGV4dC1idXR0b24vY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTs7Ozs7QUFRekUsTUFBTSxPQUFPLHVCQUF1QjtJQU5wQztRQVNXLGdCQUFXLEdBQUcsSUFBSSxDQUFBO1FBQ2xCLFNBQUksR0FBRyxDQUFDLENBQUE7S0FNbEI7SUFKQyxRQUFRLENBQUMsS0FBaUI7UUFDeEIsU0FBUyxDQUFDLFNBQVMsQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUN2QztRQUFDLEtBQUssQ0FBQyxNQUFzQixDQUFDLElBQUksRUFBRSxDQUFBO0lBQ3ZDLENBQUM7K0dBVFUsdUJBQXVCO21HQUF2Qix1QkFBdUIsOEpDUnBDLGs2QkFnQ0E7OzRGRHhCYSx1QkFBdUI7a0JBTm5DLFNBQVM7K0JBQ0Usd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktY29weS10ZXh0LWJ1dHRvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9jb3B5LXRleHQtYnV0dG9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBDb3B5VGV4dEJ1dHRvbkNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHRleHQ6IHN0cmluZ1xuICBASW5wdXQoKSB0b29sdGlwVGV4dDogc3RyaW5nXG4gIEBJbnB1dCgpIGRpc3BsYXlUZXh0ID0gdHJ1ZVxuICBASW5wdXQoKSByb3dzID0gMVxuXG4gIGNvcHlUZXh0KGV2ZW50OiBNb3VzZUV2ZW50KSB7XG4gICAgbmF2aWdhdG9yLmNsaXBib2FyZC53cml0ZVRleHQodGhpcy50ZXh0KVxuICAgIDsoZXZlbnQudGFyZ2V0IGFzIEhUTUxFbGVtZW50KS5ibHVyKClcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImZsZXhcIj5cbiAgPGlucHV0XG4gICAgKm5nSWY9XCJkaXNwbGF5VGV4dCAmJiByb3dzIDw9IDFcIlxuICAgIHR5cGU9XCJ0ZXh0XCJcbiAgICBjbGFzcz1cImdyb3cgcHktMiBweC00IGJnLWdyYXktMjAwIG9wYWNpdHktNTAgcm91bmRlZC1sLW1kIGJvcmRlciBib3JkZXItZ3JheS0zMDAgdHJ1bmNhdGVcIlxuICAgIHZhbHVlPVwie3sgdGV4dCB9fVwiXG4gICAgcmVhZG9ubHlcbiAgLz5cbiAgPHRleHRhcmVhXG4gICAgKm5nSWY9XCJkaXNwbGF5VGV4dCAmJiByb3dzID4gMVwiXG4gICAgW3Jvd3NdPVwicm93c1wiXG4gICAgY2xhc3M9XCJncm93IHB5LTIgcHgtNCBiZy1ncmF5LTIwMCBvcGFjaXR5LTUwIHJvdW5kZWQtbC1tZCBib3JkZXIgYm9yZGVyLWdyYXktMzAwIG92ZXJmbG93LXktYXV0byBoLW1heFwiXG4gICAgcmVhZG9ubHlcbiAgICA+e3sgdGV4dCB9fTwvdGV4dGFyZWFcbiAgPlxuICA8YnV0dG9uXG4gICAgdHlwZT1cImJ1dHRvblwiXG4gICAgKGNsaWNrKT1cImNvcHlUZXh0KCRldmVudClcIlxuICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICdweS0yIHB4LTQgcm91bmRlZC1yLW1kIGJnLWdyYXktNDAwIGhvdmVyOmJnLWdyYXktNjAwIGZvY3VzOmJnLWdyYXktODAwIHRleHQtd2hpdGUnOlxuICAgICAgICBkaXNwbGF5VGV4dFxuICAgIH1cIlxuICAgIG1hdC1yYWlzZWQtYnV0dG9uXG4gICAgW21hdFRvb2x0aXBdPVwidG9vbHRpcFRleHRcIlxuICAgIG1hdFRvb2x0aXBQb3NpdGlvbj1cImFib3ZlXCJcbiAgPlxuICAgIDxtYXQtaWNvblxuICAgICAgY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIHBvaW50ZXItZXZlbnRzLW5vbmUgYWxpZ24tbWlkZGxlIGNhcmQtaWNvblwiXG4gICAgICA+Y29udGVudF9jb3B5PC9tYXQtaWNvblxuICAgID5cbiAgPC9idXR0b24+XG48L2Rpdj5cbiJdfQ==
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NvcHktdGV4dC1idXR0b24vY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2NvcHktdGV4dC1idXR0b24vY29weS10ZXh0LWJ1dHRvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUE7QUFDOUMsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMkJBQTJCLENBQUE7QUFDNUQsT0FBTyxFQUFFLE1BQU0sRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTtBQUNyRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sbUNBQW1DLENBQUE7Ozs7QUFXbEUsTUFBTSxPQUFPLHVCQUF1QjtJQVRwQztRQVlXLGdCQUFXLEdBQUcsSUFBSSxDQUFBO1FBQ2xCLFNBQUksR0FBRyxDQUFDLENBQUE7S0FNbEI7SUFKQyxRQUFRLENBQUMsS0FBaUI7UUFDeEIsU0FBUyxDQUFDLFNBQVMsQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUN2QztRQUFDLEtBQUssQ0FBQyxNQUFzQixDQUFDLElBQUksRUFBRSxDQUFBO0lBQ3ZDLENBQUM7K0dBVFUsdUJBQXVCO21HQUF2Qix1QkFBdUIsa0xDZnBDLDIzQkErQkEseUREbkJZLFlBQVksZ09BQUUsZ0JBQWdCLDZUQUFFLE1BQU0sa0dBQ2pDLENBQUMsWUFBWSxDQUFDLEVBQUUsY0FBYyxFQUFFLENBQUMsQ0FBQzs7NEZBRXRDLHVCQUF1QjtrQkFUbkMsU0FBUzsrQkFDRSx3QkFBd0IsbUJBR2pCLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGdCQUFnQixFQUFFLE1BQU0sQ0FBQyxpQkFDbEMsQ0FBQyxZQUFZLENBQUMsRUFBRSxjQUFjLEVBQUUsQ0FBQyxDQUFDOzhCQUd4QyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcbmltcG9ydCB7IE1hdFRvb2x0aXBNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90b29sdGlwJ1xuaW1wb3J0IHsgTmdJY29uLCBwcm92aWRlSWNvbnMgfSBmcm9tICdAbmctaWNvbnMvY29yZSdcbmltcG9ydCB7IG1hdENvbnRlbnRDb3B5IH0gZnJvbSAnQG5nLWljb25zL21hdGVyaWFsLWljb25zL2Jhc2VsaW5lJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1jb3B5LXRleHQtYnV0dG9uJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NvcHktdGV4dC1idXR0b24uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jb3B5LXRleHQtYnV0dG9uLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIE1hdFRvb2x0aXBNb2R1bGUsIE5nSWNvbl0sXG4gIHZpZXdQcm92aWRlcnM6IFtwcm92aWRlSWNvbnMoeyBtYXRDb250ZW50Q29weSB9KV0sXG59KVxuZXhwb3J0IGNsYXNzIENvcHlUZXh0QnV0dG9uQ29tcG9uZW50IHtcbiAgQElucHV0KCkgdGV4dDogc3RyaW5nXG4gIEBJbnB1dCgpIHRvb2x0aXBUZXh0OiBzdHJpbmdcbiAgQElucHV0KCkgZGlzcGxheVRleHQgPSB0cnVlXG4gIEBJbnB1dCgpIHJvd3MgPSAxXG5cbiAgY29weVRleHQoZXZlbnQ6IE1vdXNlRXZlbnQpIHtcbiAgICBuYXZpZ2F0b3IuY2xpcGJvYXJkLndyaXRlVGV4dCh0aGlzLnRleHQpXG4gICAgOyhldmVudC50YXJnZXQgYXMgSFRNTEVsZW1lbnQpLmJsdXIoKVxuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZmxleFwiPlxuICA8aW5wdXRcbiAgICAqbmdJZj1cImRpc3BsYXlUZXh0ICYmIHJvd3MgPD0gMVwiXG4gICAgdHlwZT1cInRleHRcIlxuICAgIGNsYXNzPVwiZ3JvdyBweS0yIHB4LTQgYmctZ3JheS0yMDAgb3BhY2l0eS01MCByb3VuZGVkLWwtbWQgYm9yZGVyIGJvcmRlci1ncmF5LTMwMCB0cnVuY2F0ZVwiXG4gICAgdmFsdWU9XCJ7eyB0ZXh0IH19XCJcbiAgICByZWFkb25seVxuICAvPlxuICA8dGV4dGFyZWFcbiAgICAqbmdJZj1cImRpc3BsYXlUZXh0ICYmIHJvd3MgPiAxXCJcbiAgICBbcm93c109XCJyb3dzXCJcbiAgICBjbGFzcz1cImdyb3cgcHktMiBweC00IGJnLWdyYXktMjAwIG9wYWNpdHktNTAgcm91bmRlZC1sLW1kIGJvcmRlciBib3JkZXItZ3JheS0zMDAgb3ZlcmZsb3cteS1hdXRvIGgtbWF4XCJcbiAgICByZWFkb25seVxuICAgID57eyB0ZXh0IH19PC90ZXh0YXJlYVxuICA+XG4gIDxidXR0b25cbiAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAoY2xpY2spPVwiY29weVRleHQoJGV2ZW50KVwiXG4gICAgW25nQ2xhc3NdPVwie1xuICAgICAgJ3B5LTIgcHgtNCByb3VuZGVkLXItbWQgYmctZ3JheS00MDAgaG92ZXI6YmctZ3JheS02MDAgZm9jdXM6YmctZ3JheS04MDAgdGV4dC13aGl0ZSc6XG4gICAgICAgIGRpc3BsYXlUZXh0LFxuICAgIH1cIlxuICAgIFttYXRUb29sdGlwXT1cInRvb2x0aXBUZXh0XCJcbiAgICBtYXRUb29sdGlwUG9zaXRpb249XCJhYm92ZVwiXG4gID5cbiAgICA8bmctaWNvblxuICAgICAgbmFtZT1cIm1hdENvbnRlbnRDb3B5XCJcbiAgICAgIGNsYXNzPVwicG9pbnRlci1ldmVudHMtbm9uZSBhbGlnbi1taWRkbGUgY2FyZC1pY29uXCJcbiAgICA+PC9uZy1pY29uPlxuICA8L2J1dHRvbj5cbjwvZGl2PlxuIl19
@@ -1,22 +1,39 @@
1
1
  import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
2
2
  import { MatNativeDateModule } from '@angular/material/core';
3
3
  import { MatDatepickerModule } from '@angular/material/datepicker';
4
- import { MatIconModule } from '@angular/material/icon';
4
+ import { ButtonComponent } from '../button/button.component';
5
+ import { NgIconComponent, provideIcons, provideNgIconsConfig, } from '@ng-icons/core';
6
+ import { iconoirCalendar } from '@ng-icons/iconoir';
5
7
  import * as i0 from "@angular/core";
6
8
  import * as i1 from "@angular/material/datepicker";
7
9
  export class DatePickerComponent {
8
10
  constructor() {
9
11
  this.dateChange = new EventEmitter();
10
12
  }
11
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
12
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DatePickerComponent, isStandalone: true, selector: "gn-ui-date-picker", inputs: { date: "date" }, outputs: { dateChange: "dateChange" }, ngImport: i0, template: "<div\n class=\"flex items-center justify-between rounded-lg border border-gray-300 bg-white\"\n>\n <input\n class=\"pl-3\"\n [matDatepicker]=\"picker\"\n [value]=\"date\"\n (dateChange)=\"dateChange.emit($event.value)\"\n />\n <mat-datepicker-toggle matIconSuffix [for]=\"picker\"></mat-datepicker-toggle>\n</div>\n<mat-datepicker #picker></mat-datepicker>\n", styles: ["mat-datepicker-toggle{@apply text-primary;}\n"], dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatNativeDateModule }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i1.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DatePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DatePickerComponent, isStandalone: true, selector: "gn-ui-date-picker", inputs: { date: "date" }, outputs: { dateChange: "dateChange" }, providers: [
15
+ provideIcons({ iconoirCalendar }),
16
+ provideNgIconsConfig({
17
+ size: '1.5rem',
18
+ }),
19
+ ], ngImport: i0, template: "<span class=\"w-full inline-block relative\">\n <input\n class=\"gn-ui-text-input pr-[var(--text-padding)]\"\n [matDatepicker]=\"picker\"\n [value]=\"date\"\n (dateChange)=\"dateChange.emit($event.value)\"\n />\n <gn-ui-button\n type=\"light\"\n class=\"absolute inset-y-[var(--side-padding)] right-[var(--side-padding)] z-10\"\n (buttonClick)=\"picker.open()\"\n data-cy=\"date-picker-button\"\n extraClass=\"h-full\"\n >\n <ng-icon name=\"iconoirCalendar\" class=\"text-primary\"></ng-icon>\n </gn-ui-button>\n</span>\n<mat-datepicker #picker></mat-datepicker>\n", styles: [":host{--gn-ui-button-rounded: 8px;--gn-ui-button-width: 32px;--gn-ui-button-padding: 0;--side-padding: calc(var(--gn-ui-text-input-padding, .6em) - 6px);--text-padding: calc(var(--side-padding) + 40px)}\n"], dependencies: [{ kind: "ngmodule", type: MatNativeDateModule }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i1.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i1.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
13
20
  }
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatePickerComponent, decorators: [{
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DatePickerComponent, decorators: [{
15
22
  type: Component,
16
- args: [{ selector: 'gn-ui-date-picker', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, MatNativeDateModule, MatDatepickerModule], template: "<div\n class=\"flex items-center justify-between rounded-lg border border-gray-300 bg-white\"\n>\n <input\n class=\"pl-3\"\n [matDatepicker]=\"picker\"\n [value]=\"date\"\n (dateChange)=\"dateChange.emit($event.value)\"\n />\n <mat-datepicker-toggle matIconSuffix [for]=\"picker\"></mat-datepicker-toggle>\n</div>\n<mat-datepicker #picker></mat-datepicker>\n", styles: ["mat-datepicker-toggle{@apply text-primary;}\n"] }]
23
+ args: [{ selector: 'gn-ui-date-picker', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
24
+ MatNativeDateModule,
25
+ MatDatepickerModule,
26
+ ButtonComponent,
27
+ NgIconComponent,
28
+ ], providers: [
29
+ provideIcons({ iconoirCalendar }),
30
+ provideNgIconsConfig({
31
+ size: '1.5rem',
32
+ }),
33
+ ], template: "<span class=\"w-full inline-block relative\">\n <input\n class=\"gn-ui-text-input pr-[var(--text-padding)]\"\n [matDatepicker]=\"picker\"\n [value]=\"date\"\n (dateChange)=\"dateChange.emit($event.value)\"\n />\n <gn-ui-button\n type=\"light\"\n class=\"absolute inset-y-[var(--side-padding)] right-[var(--side-padding)] z-10\"\n (buttonClick)=\"picker.open()\"\n data-cy=\"date-picker-button\"\n extraClass=\"h-full\"\n >\n <ng-icon name=\"iconoirCalendar\" class=\"text-primary\"></ng-icon>\n </gn-ui-button>\n</span>\n<mat-datepicker #picker></mat-datepicker>\n", styles: [":host{--gn-ui-button-rounded: 8px;--gn-ui-button-width: 32px;--gn-ui-button-padding: 0;--side-padding: calc(var(--gn-ui-text-input-padding, .6em) - 6px);--text-padding: calc(var(--side-padding) + 40px)}\n"] }]
17
34
  }], propDecorators: { date: [{
18
35
  type: Input
19
36
  }], dateChange: [{
20
37
  type: Output
21
38
  }] } });
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1waWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9kYXRlLXBpY2tlci9kYXRlLXBpY2tlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcGlja2VyL2RhdGUtcGlja2VyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxHQUNQLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQzVELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFBO0FBQ2xFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQTs7O0FBVXRELE1BQU0sT0FBTyxtQkFBbUI7SUFSaEM7UUFVWSxlQUFVLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQTtLQUNoRDsrR0FIWSxtQkFBbUI7bUdBQW5CLG1CQUFtQiw4SUNuQmhDLHdYQVlBLHNHREtZLGFBQWEsOEJBQUUsbUJBQW1CLDhCQUFFLG1CQUFtQjs7NEZBRXRELG1CQUFtQjtrQkFSL0IsU0FBUzsrQkFDRSxtQkFBbUIsbUJBR1osdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxhQUFhLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CLENBQUM7OEJBR3pELElBQUk7c0JBQVosS0FBSztnQkFDSSxVQUFVO3NCQUFuQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgTWF0TmF0aXZlRGF0ZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnXG5pbXBvcnQgeyBNYXREYXRlcGlja2VyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGF0ZXBpY2tlcidcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1kYXRlLXBpY2tlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRlLXBpY2tlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2RhdGUtcGlja2VyLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtNYXRJY29uTW9kdWxlLCBNYXROYXRpdmVEYXRlTW9kdWxlLCBNYXREYXRlcGlja2VyTW9kdWxlXSxcbn0pXG5leHBvcnQgY2xhc3MgRGF0ZVBpY2tlckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGRhdGU6IERhdGVcbiAgQE91dHB1dCgpIGRhdGVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPERhdGU+KClcbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWJldHdlZW4gcm91bmRlZC1sZyBib3JkZXIgYm9yZGVyLWdyYXktMzAwIGJnLXdoaXRlXCJcbj5cbiAgPGlucHV0XG4gICAgY2xhc3M9XCJwbC0zXCJcbiAgICBbbWF0RGF0ZXBpY2tlcl09XCJwaWNrZXJcIlxuICAgIFt2YWx1ZV09XCJkYXRlXCJcbiAgICAoZGF0ZUNoYW5nZSk9XCJkYXRlQ2hhbmdlLmVtaXQoJGV2ZW50LnZhbHVlKVwiXG4gIC8+XG4gIDxtYXQtZGF0ZXBpY2tlci10b2dnbGUgbWF0SWNvblN1ZmZpeCBbZm9yXT1cInBpY2tlclwiPjwvbWF0LWRhdGVwaWNrZXItdG9nZ2xlPlxuPC9kaXY+XG48bWF0LWRhdGVwaWNrZXIgI3BpY2tlcj48L21hdC1kYXRlcGlja2VyPlxuIl19
39
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1waWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9kYXRlLXBpY2tlci9kYXRlLXBpY2tlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcGlja2VyL2RhdGUtcGlja2VyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxHQUNQLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQzVELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFBO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQTtBQUM1RCxPQUFPLEVBQ0wsZUFBZSxFQUNmLFlBQVksRUFDWixvQkFBb0IsR0FDckIsTUFBTSxnQkFBZ0IsQ0FBQTtBQUN2QixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sbUJBQW1CLENBQUE7OztBQXFCbkQsTUFBTSxPQUFPLG1CQUFtQjtJQW5CaEM7UUFxQlksZUFBVSxHQUFHLElBQUksWUFBWSxFQUFRLENBQUE7S0FDaEQ7K0dBSFksbUJBQW1CO21HQUFuQixtQkFBbUIsaUlBUG5CO1lBQ1QsWUFBWSxDQUFDLEVBQUUsZUFBZSxFQUFFLENBQUM7WUFDakMsb0JBQW9CLENBQUM7Z0JBQ25CLElBQUksRUFBRSxRQUFRO2FBQ2YsQ0FBQztTQUNILDBCQ2xDSCx5bEJBa0JBLHFRRE1JLG1CQUFtQiw4QkFDbkIsbUJBQW1CLCtUQUNuQixlQUFlLCtIQUNmLGVBQWU7OzRGQVNOLG1CQUFtQjtrQkFuQi9CLFNBQVM7K0JBQ0UsbUJBQW1CLG1CQUdaLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQO3dCQUNQLG1CQUFtQjt3QkFDbkIsbUJBQW1CO3dCQUNuQixlQUFlO3dCQUNmLGVBQWU7cUJBQ2hCLGFBQ1U7d0JBQ1QsWUFBWSxDQUFDLEVBQUUsZUFBZSxFQUFFLENBQUM7d0JBQ2pDLG9CQUFvQixDQUFDOzRCQUNuQixJQUFJLEVBQUUsUUFBUTt5QkFDZixDQUFDO3FCQUNIOzhCQUdRLElBQUk7c0JBQVosS0FBSztnQkFDSSxVQUFVO3NCQUFuQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgTWF0TmF0aXZlRGF0ZU1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnXG5pbXBvcnQgeyBNYXREYXRlcGlja2VyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZGF0ZXBpY2tlcidcbmltcG9ydCB7IEJ1dHRvbkNvbXBvbmVudCB9IGZyb20gJy4uL2J1dHRvbi9idXR0b24uY29tcG9uZW50J1xuaW1wb3J0IHtcbiAgTmdJY29uQ29tcG9uZW50LFxuICBwcm92aWRlSWNvbnMsXG4gIHByb3ZpZGVOZ0ljb25zQ29uZmlnLFxufSBmcm9tICdAbmctaWNvbnMvY29yZSdcbmltcG9ydCB7IGljb25vaXJDYWxlbmRhciB9IGZyb20gJ0BuZy1pY29ucy9pY29ub2lyJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1kYXRlLXBpY2tlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRlLXBpY2tlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2RhdGUtcGlja2VyLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBNYXROYXRpdmVEYXRlTW9kdWxlLFxuICAgIE1hdERhdGVwaWNrZXJNb2R1bGUsXG4gICAgQnV0dG9uQ29tcG9uZW50LFxuICAgIE5nSWNvbkNvbXBvbmVudCxcbiAgXSxcbiAgcHJvdmlkZXJzOiBbXG4gICAgcHJvdmlkZUljb25zKHsgaWNvbm9pckNhbGVuZGFyIH0pLFxuICAgIHByb3ZpZGVOZ0ljb25zQ29uZmlnKHtcbiAgICAgIHNpemU6ICcxLjVyZW0nLFxuICAgIH0pLFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBEYXRlUGlja2VyQ29tcG9uZW50IHtcbiAgQElucHV0KCkgZGF0ZTogRGF0ZVxuICBAT3V0cHV0KCkgZGF0ZUNoYW5nZSA9IG5ldyBFdmVudEVtaXR0ZXI8RGF0ZT4oKVxufVxuIiwiPHNwYW4gY2xhc3M9XCJ3LWZ1bGwgaW5saW5lLWJsb2NrIHJlbGF0aXZlXCI+XG4gIDxpbnB1dFxuICAgIGNsYXNzPVwiZ24tdWktdGV4dC1pbnB1dCBwci1bdmFyKC0tdGV4dC1wYWRkaW5nKV1cIlxuICAgIFttYXREYXRlcGlja2VyXT1cInBpY2tlclwiXG4gICAgW3ZhbHVlXT1cImRhdGVcIlxuICAgIChkYXRlQ2hhbmdlKT1cImRhdGVDaGFuZ2UuZW1pdCgkZXZlbnQudmFsdWUpXCJcbiAgLz5cbiAgPGduLXVpLWJ1dHRvblxuICAgIHR5cGU9XCJsaWdodFwiXG4gICAgY2xhc3M9XCJhYnNvbHV0ZSBpbnNldC15LVt2YXIoLS1zaWRlLXBhZGRpbmcpXSByaWdodC1bdmFyKC0tc2lkZS1wYWRkaW5nKV0gei0xMFwiXG4gICAgKGJ1dHRvbkNsaWNrKT1cInBpY2tlci5vcGVuKClcIlxuICAgIGRhdGEtY3k9XCJkYXRlLXBpY2tlci1idXR0b25cIlxuICAgIGV4dHJhQ2xhc3M9XCJoLWZ1bGxcIlxuICA+XG4gICAgPG5nLWljb24gbmFtZT1cImljb25vaXJDYWxlbmRhclwiIGNsYXNzPVwidGV4dC1wcmltYXJ5XCI+PC9uZy1pY29uPlxuICA8L2duLXVpLWJ1dHRvbj5cbjwvc3Bhbj5cbjxtYXQtZGF0ZXBpY2tlciAjcGlja2VyPjwvbWF0LWRhdGVwaWNrZXI+XG4iXX0=
@@ -0,0 +1,65 @@
1
+ import { ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, Output, ViewChild, } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatNativeDateModule } from '@angular/material/core';
4
+ import { MatDatepickerModule } from '@angular/material/datepicker';
5
+ import { ButtonComponent } from '../button/button.component';
6
+ import { OverlayContainer } from '@angular/cdk/overlay';
7
+ import { NgIconComponent, provideIcons } from '@ng-icons/core';
8
+ import { matExpandLess, matExpandMore } from '@ng-icons/material-icons/baseline';
9
+ import * as i0 from "@angular/core";
10
+ import * as i1 from "@angular/cdk/overlay";
11
+ import * as i2 from "@angular/material/datepicker";
12
+ export class DateRangeDropdownComponent {
13
+ constructor(overlayContainer, cdr) {
14
+ this.overlayContainer = overlayContainer;
15
+ this.cdr = cdr;
16
+ this.startDateChange = new EventEmitter();
17
+ this.endDateChange = new EventEmitter();
18
+ this.isPickerDisplayed = false;
19
+ }
20
+ ngAfterViewChecked() {
21
+ this.checkPickerOverlay();
22
+ }
23
+ checkPickerOverlay() {
24
+ const overlayContainerElement = this.overlayContainer.getContainerElement();
25
+ this.isPickerDisplayed =
26
+ overlayContainerElement.querySelector('.mat-datepicker-content') !== null;
27
+ this.cdr.detectChanges();
28
+ }
29
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangeDropdownComponent, deps: [{ token: i1.OverlayContainer }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
30
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DateRangeDropdownComponent, isStandalone: true, selector: "gn-ui-date-range-dropdown", inputs: { title: "title", startDate: "startDate", endDate: "endDate" }, outputs: { startDateChange: "startDateChange", endDateChange: "endDateChange" }, providers: [
31
+ provideIcons({
32
+ matExpandMore,
33
+ matExpandLess,
34
+ }),
35
+ ], viewQueries: [{ propertyName: "picker", first: true, predicate: ["picker"], descendants: true }], ngImport: i0, template: "<gn-ui-button\n type=\"outline\"\n extraClass=\"bg-background w-full !p-[8px] !pl-[16px]\"\n (buttonClick)=\"picker.open()\"\n>\n <div class=\"grow flex items-center mr-2 gap-2 overflow-hidden\">\n <div class=\"text-left font-medium truncate py-1\">\n {{ title }}\n </div>\n </div>\n <ng-icon\n [name]=\"isPickerDisplayed ? 'matExpandLess' : 'matExpandMore'\"\n class=\"shrink-0 opacity-40\"\n >\n </ng-icon>\n</gn-ui-button>\n<!--date range input is just present for output events and hidden from the DOM-->\n<mat-date-range-input [rangePicker]=\"picker\">\n <input\n matStartDate\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n</mat-date-range-input>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: [":host .mat-date-range-input-container{display:none}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }, { kind: "ngmodule", type: MatNativeDateModule }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i2.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i2.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i2.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i2.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }] }); }
36
+ }
37
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangeDropdownComponent, decorators: [{
38
+ type: Component,
39
+ args: [{ selector: 'gn-ui-date-range-dropdown', standalone: true, imports: [
40
+ CommonModule,
41
+ NgIconComponent,
42
+ MatNativeDateModule,
43
+ MatDatepickerModule,
44
+ ButtonComponent,
45
+ ], providers: [
46
+ provideIcons({
47
+ matExpandMore,
48
+ matExpandLess,
49
+ }),
50
+ ], template: "<gn-ui-button\n type=\"outline\"\n extraClass=\"bg-background w-full !p-[8px] !pl-[16px]\"\n (buttonClick)=\"picker.open()\"\n>\n <div class=\"grow flex items-center mr-2 gap-2 overflow-hidden\">\n <div class=\"text-left font-medium truncate py-1\">\n {{ title }}\n </div>\n </div>\n <ng-icon\n [name]=\"isPickerDisplayed ? 'matExpandLess' : 'matExpandMore'\"\n class=\"shrink-0 opacity-40\"\n >\n </ng-icon>\n</gn-ui-button>\n<!--date range input is just present for output events and hidden from the DOM-->\n<mat-date-range-input [rangePicker]=\"picker\">\n <input\n matStartDate\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n</mat-date-range-input>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: [":host .mat-date-range-input-container{display:none}\n"] }]
51
+ }], ctorParameters: () => [{ type: i1.OverlayContainer }, { type: i0.ChangeDetectorRef }], propDecorators: { title: [{
52
+ type: Input
53
+ }], startDate: [{
54
+ type: Input
55
+ }], endDate: [{
56
+ type: Input
57
+ }], startDateChange: [{
58
+ type: Output
59
+ }], endDateChange: [{
60
+ type: Output
61
+ }], picker: [{
62
+ type: ViewChild,
63
+ args: ['picker']
64
+ }] } });
65
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS1kcm9wZG93bi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcmFuZ2UtZHJvcGRvd24vZGF0ZS1yYW5nZS1kcm9wZG93bi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcmFuZ2UtZHJvcGRvd24vZGF0ZS1yYW5nZS1kcm9wZG93bi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBRUwsaUJBQWlCLEVBQ2pCLFNBQVMsRUFDVCxVQUFVLEVBQ1YsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEVBQ04sU0FBUyxHQUNWLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQTtBQUM5QyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQTtBQUM1RCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQTtBQUNsRSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sNEJBQTRCLENBQUE7QUFDNUQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sc0JBQXNCLENBQUE7QUFDdkQsT0FBTyxFQUFFLGVBQWUsRUFBRSxZQUFZLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTtBQUM5RCxPQUFPLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxNQUFNLG1DQUFtQyxDQUFBOzs7O0FBcUJoRixNQUFNLE9BQU8sMEJBQTBCO0lBVXJDLFlBQ1UsZ0JBQWtDLEVBQ2xDLEdBQXNCO1FBRHRCLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBa0I7UUFDbEMsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUFSdEIsb0JBQWUsR0FBRyxJQUFJLFlBQVksRUFBUSxDQUFBO1FBQzFDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQTtRQUdsRCxzQkFBaUIsR0FBRyxLQUFLLENBQUE7SUFLdEIsQ0FBQztJQUVKLGtCQUFrQjtRQUNoQixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQTtJQUMzQixDQUFDO0lBRUQsa0JBQWtCO1FBQ2hCLE1BQU0sdUJBQXVCLEdBQUcsSUFBSSxDQUFDLGdCQUFnQixDQUFDLG1CQUFtQixFQUFFLENBQUE7UUFDM0UsSUFBSSxDQUFDLGlCQUFpQjtZQUNwQix1QkFBdUIsQ0FBQyxhQUFhLENBQUMseUJBQXlCLENBQUMsS0FBSyxJQUFJLENBQUE7UUFDM0UsSUFBSSxDQUFDLEdBQUcsQ0FBQyxhQUFhLEVBQUUsQ0FBQTtJQUMxQixDQUFDOytHQXhCVSwwQkFBMEI7bUdBQTFCLDBCQUEwQixpT0FUMUI7WUFDVCxZQUFZLENBQUM7Z0JBQ1gsYUFBYTtnQkFDYixhQUFhO2FBQ2QsQ0FBQztTQUNILDRIQ2pDSCxnNEJBOEJBLDhHRFJJLFlBQVksK0JBQ1osZUFBZSw0R0FDZixtQkFBbUIsOEJBQ25CLG1CQUFtQixrbkJBQ25CLGVBQWU7OzRGQVdOLDBCQUEwQjtrQkFuQnRDLFNBQVM7K0JBQ0UsMkJBQTJCLGNBQ3pCLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLGVBQWU7d0JBQ2YsbUJBQW1CO3dCQUNuQixtQkFBbUI7d0JBQ25CLGVBQWU7cUJBQ2hCLGFBQ1U7d0JBQ1QsWUFBWSxDQUFDOzRCQUNYLGFBQWE7NEJBQ2IsYUFBYTt5QkFDZCxDQUFDO3FCQUNIO3FIQUtRLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDSSxlQUFlO3NCQUF4QixNQUFNO2dCQUNHLGFBQWE7c0JBQXRCLE1BQU07Z0JBRWMsTUFBTTtzQkFBMUIsU0FBUzt1QkFBQyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWZ0ZXJWaWV3Q2hlY2tlZCxcbiAgQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gIENvbXBvbmVudCxcbiAgRWxlbWVudFJlZixcbiAgRXZlbnRFbWl0dGVyLFxuICBJbnB1dCxcbiAgT3V0cHV0LFxuICBWaWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQgeyBNYXROYXRpdmVEYXRlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSdcbmltcG9ydCB7IE1hdERhdGVwaWNrZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kYXRlcGlja2VyJ1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vYnV0dG9uL2J1dHRvbi5jb21wb25lbnQnXG5pbXBvcnQgeyBPdmVybGF5Q29udGFpbmVyIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL292ZXJsYXknXG5pbXBvcnQgeyBOZ0ljb25Db21wb25lbnQsIHByb3ZpZGVJY29ucyB9IGZyb20gJ0BuZy1pY29ucy9jb3JlJ1xuaW1wb3J0IHsgbWF0RXhwYW5kTGVzcywgbWF0RXhwYW5kTW9yZSB9IGZyb20gJ0BuZy1pY29ucy9tYXRlcmlhbC1pY29ucy9iYXNlbGluZSdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZGF0ZS1yYW5nZS1kcm9wZG93bicsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTmdJY29uQ29tcG9uZW50LFxuICAgIE1hdE5hdGl2ZURhdGVNb2R1bGUsXG4gICAgTWF0RGF0ZXBpY2tlck1vZHVsZSxcbiAgICBCdXR0b25Db21wb25lbnQsXG4gIF0sXG4gIHByb3ZpZGVyczogW1xuICAgIHByb3ZpZGVJY29ucyh7XG4gICAgICBtYXRFeHBhbmRNb3JlLFxuICAgICAgbWF0RXhwYW5kTGVzcyxcbiAgICB9KSxcbiAgXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGUtcmFuZ2UtZHJvcGRvd24uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRlLXJhbmdlLWRyb3Bkb3duLmNvbXBvbmVudC5jc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgRGF0ZVJhbmdlRHJvcGRvd25Db21wb25lbnQgaW1wbGVtZW50cyBBZnRlclZpZXdDaGVja2VkIHtcbiAgQElucHV0KCkgdGl0bGU6IHN0cmluZ1xuICBASW5wdXQoKSBzdGFydERhdGU6IERhdGVcbiAgQElucHV0KCkgZW5kRGF0ZTogRGF0ZVxuICBAT3V0cHV0KCkgc3RhcnREYXRlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxEYXRlPigpXG4gIEBPdXRwdXQoKSBlbmREYXRlQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxEYXRlPigpXG5cbiAgQFZpZXdDaGlsZCgncGlja2VyJykgcGlja2VyOiBFbGVtZW50UmVmXG4gIGlzUGlja2VyRGlzcGxheWVkID0gZmFsc2VcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIG92ZXJsYXlDb250YWluZXI6IE92ZXJsYXlDb250YWluZXIsXG4gICAgcHJpdmF0ZSBjZHI6IENoYW5nZURldGVjdG9yUmVmXG4gICkge31cblxuICBuZ0FmdGVyVmlld0NoZWNrZWQoKSB7XG4gICAgdGhpcy5jaGVja1BpY2tlck92ZXJsYXkoKVxuICB9XG5cbiAgY2hlY2tQaWNrZXJPdmVybGF5KCkge1xuICAgIGNvbnN0IG92ZXJsYXlDb250YWluZXJFbGVtZW50ID0gdGhpcy5vdmVybGF5Q29udGFpbmVyLmdldENvbnRhaW5lckVsZW1lbnQoKVxuICAgIHRoaXMuaXNQaWNrZXJEaXNwbGF5ZWQgPVxuICAgICAgb3ZlcmxheUNvbnRhaW5lckVsZW1lbnQucXVlcnlTZWxlY3RvcignLm1hdC1kYXRlcGlja2VyLWNvbnRlbnQnKSAhPT0gbnVsbFxuICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKVxuICB9XG59XG4iLCI8Z24tdWktYnV0dG9uXG4gIHR5cGU9XCJvdXRsaW5lXCJcbiAgZXh0cmFDbGFzcz1cImJnLWJhY2tncm91bmQgdy1mdWxsICFwLVs4cHhdICFwbC1bMTZweF1cIlxuICAoYnV0dG9uQ2xpY2spPVwicGlja2VyLm9wZW4oKVwiXG4+XG4gIDxkaXYgY2xhc3M9XCJncm93IGZsZXggaXRlbXMtY2VudGVyIG1yLTIgZ2FwLTIgb3ZlcmZsb3ctaGlkZGVuXCI+XG4gICAgPGRpdiBjbGFzcz1cInRleHQtbGVmdCBmb250LW1lZGl1bSB0cnVuY2F0ZSBweS0xXCI+XG4gICAgICB7eyB0aXRsZSB9fVxuICAgIDwvZGl2PlxuICA8L2Rpdj5cbiAgPG5nLWljb25cbiAgICBbbmFtZV09XCJpc1BpY2tlckRpc3BsYXllZCA/ICdtYXRFeHBhbmRMZXNzJyA6ICdtYXRFeHBhbmRNb3JlJ1wiXG4gICAgY2xhc3M9XCJzaHJpbmstMCBvcGFjaXR5LTQwXCJcbiAgPlxuICA8L25nLWljb24+XG48L2duLXVpLWJ1dHRvbj5cbjwhLS1kYXRlIHJhbmdlIGlucHV0IGlzIGp1c3QgcHJlc2VudCBmb3Igb3V0cHV0IGV2ZW50cyBhbmQgaGlkZGVuIGZyb20gdGhlIERPTS0tPlxuPG1hdC1kYXRlLXJhbmdlLWlucHV0IFtyYW5nZVBpY2tlcl09XCJwaWNrZXJcIj5cbiAgPGlucHV0XG4gICAgbWF0U3RhcnREYXRlXG4gICAgW3ZhbHVlXT1cInN0YXJ0RGF0ZVwiXG4gICAgKGRhdGVJbnB1dCk9XCJzdGFydERhdGVDaGFuZ2UuZW1pdCgkZXZlbnQudmFsdWUpXCJcbiAgLz5cbiAgPGlucHV0XG4gICAgbWF0RW5kRGF0ZVxuICAgIFt2YWx1ZV09XCJlbmREYXRlXCJcbiAgICAoZGF0ZUlucHV0KT1cImVuZERhdGVDaGFuZ2UuZW1pdCgkZXZlbnQudmFsdWUpXCJcbiAgLz5cbjwvbWF0LWRhdGUtcmFuZ2UtaW5wdXQ+XG48bWF0LWRhdGUtcmFuZ2UtcGlja2VyICNwaWNrZXI+PC9tYXQtZGF0ZS1yYW5nZS1waWNrZXI+XG4iXX0=
@@ -1,21 +1,37 @@
1
1
  import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
2
2
  import { MatNativeDateModule } from '@angular/material/core';
3
3
  import { MatDatepickerModule } from '@angular/material/datepicker';
4
- import { MatIconModule } from '@angular/material/icon';
4
+ import { ButtonComponent } from '../button/button.component';
5
+ import { NgIconComponent, provideIcons, provideNgIconsConfig, } from '@ng-icons/core';
6
+ import { iconoirCalendar } from '@ng-icons/iconoir';
5
7
  import * as i0 from "@angular/core";
6
- import * as i1 from "@angular/material/icon";
7
- import * as i2 from "@angular/material/datepicker";
8
+ import * as i1 from "@angular/material/datepicker";
8
9
  export class DateRangePickerComponent {
9
10
  constructor() {
10
11
  this.startDateChange = new EventEmitter();
11
12
  this.endDateChange = new EventEmitter();
12
13
  }
13
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
14
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DateRangePickerComponent, isStandalone: true, selector: "gn-ui-date-range-picker", inputs: { startDate: "startDate", endDate: "endDate" }, outputs: { startDateChange: "startDateChange", endDateChange: "endDateChange" }, ngImport: i0, template: "<div\n class=\"flex items-center justify-between rounded-lg border border-gray-300 bg-white\"\n>\n <div class=\"pl-3 flex justify-center\">\n <mat-date-range-input [rangePicker]=\"picker\" class=\"w-full\">\n <input\n matStartDate\n placeholder=\"Start date\"\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n placeholder=\"End date\"\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n </mat-date-range-input>\n </div>\n <mat-datepicker-toggle matSuffix [for]=\"picker\">\n <mat-icon>calendar_today</mat-icon>\n </mat-datepicker-toggle>\n</div>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: ["mat-datepicker-toggle{@apply text-primary;}\n"], dependencies: [{ kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatNativeDateModule }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i2.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "component", type: i2.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i2.MatStartDate, selector: "input[matStartDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i2.MatEndDate, selector: "input[matEndDate]", inputs: ["errorStateMatcher"], outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i2.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangePickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
15
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DateRangePickerComponent, isStandalone: true, selector: "gn-ui-date-range-picker", inputs: { startDate: "startDate", endDate: "endDate" }, outputs: { startDateChange: "startDateChange", endDateChange: "endDateChange" }, providers: [
16
+ provideIcons({ iconoirCalendar }),
17
+ provideNgIconsConfig({
18
+ size: '1.5rem',
19
+ }),
20
+ ], ngImport: i0, template: "<span class=\"w-full inline-block relative\">\n <mat-date-range-input [rangePicker]=\"picker\" class=\"gn-ui-text-input\">\n <input\n matStartDate\n placeholder=\"Start date\"\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n placeholder=\"End date\"\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n </mat-date-range-input>\n\n <gn-ui-button\n type=\"light\"\n class=\"absolute inset-y-[var(--side-padding)] right-[var(--side-padding)] z-10\"\n (buttonClick)=\"picker.open()\"\n extraClass=\"h-full\"\n data-cy=\"date-picker-button\"\n >\n <ng-icon name=\"iconoirCalendar\" class=\"text-primary\"></ng-icon>\n </gn-ui-button>\n</span>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: [":host{--gn-ui-button-rounded: 8px;--gn-ui-button-width: 32px;--gn-ui-button-padding: 0;--side-padding: calc(var(--gn-ui-text-input-padding, .6em) - 6px);--text-padding: calc(var(--side-padding) + 40px)}\n"], dependencies: [{ kind: "ngmodule", type: MatNativeDateModule }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i1.MatDateRangeInput, selector: "mat-date-range-input", inputs: ["rangePicker", "required", "dateFilter", "min", "max", "disabled", "separator", "comparisonStart", "comparisonEnd"], exportAs: ["matDateRangeInput"] }, { kind: "directive", type: i1.MatStartDate, selector: "input[matStartDate]", outputs: ["dateChange", "dateInput"] }, { kind: "directive", type: i1.MatEndDate, selector: "input[matEndDate]", outputs: ["dateChange", "dateInput"] }, { kind: "component", type: i1.MatDateRangePicker, selector: "mat-date-range-picker", exportAs: ["matDateRangePicker"] }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }, { kind: "component", type: NgIconComponent, selector: "ng-icon", inputs: ["name", "svg", "size", "strokeWidth", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
15
21
  }
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DateRangePickerComponent, decorators: [{
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DateRangePickerComponent, decorators: [{
17
23
  type: Component,
18
- args: [{ selector: 'gn-ui-date-range-picker', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [MatIconModule, MatNativeDateModule, MatDatepickerModule], template: "<div\n class=\"flex items-center justify-between rounded-lg border border-gray-300 bg-white\"\n>\n <div class=\"pl-3 flex justify-center\">\n <mat-date-range-input [rangePicker]=\"picker\" class=\"w-full\">\n <input\n matStartDate\n placeholder=\"Start date\"\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n placeholder=\"End date\"\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n </mat-date-range-input>\n </div>\n <mat-datepicker-toggle matSuffix [for]=\"picker\">\n <mat-icon>calendar_today</mat-icon>\n </mat-datepicker-toggle>\n</div>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: ["mat-datepicker-toggle{@apply text-primary;}\n"] }]
24
+ args: [{ selector: 'gn-ui-date-range-picker', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
25
+ MatNativeDateModule,
26
+ MatDatepickerModule,
27
+ ButtonComponent,
28
+ NgIconComponent,
29
+ ], providers: [
30
+ provideIcons({ iconoirCalendar }),
31
+ provideNgIconsConfig({
32
+ size: '1.5rem',
33
+ }),
34
+ ], template: "<span class=\"w-full inline-block relative\">\n <mat-date-range-input [rangePicker]=\"picker\" class=\"gn-ui-text-input\">\n <input\n matStartDate\n placeholder=\"Start date\"\n [value]=\"startDate\"\n (dateInput)=\"startDateChange.emit($event.value)\"\n />\n <input\n matEndDate\n placeholder=\"End date\"\n [value]=\"endDate\"\n (dateInput)=\"endDateChange.emit($event.value)\"\n />\n </mat-date-range-input>\n\n <gn-ui-button\n type=\"light\"\n class=\"absolute inset-y-[var(--side-padding)] right-[var(--side-padding)] z-10\"\n (buttonClick)=\"picker.open()\"\n extraClass=\"h-full\"\n data-cy=\"date-picker-button\"\n >\n <ng-icon name=\"iconoirCalendar\" class=\"text-primary\"></ng-icon>\n </gn-ui-button>\n</span>\n<mat-date-range-picker #picker></mat-date-range-picker>\n", styles: [":host{--gn-ui-button-rounded: 8px;--gn-ui-button-width: 32px;--gn-ui-button-padding: 0;--side-padding: calc(var(--gn-ui-text-input-padding, .6em) - 6px);--text-padding: calc(var(--side-padding) + 40px)}\n"] }]
19
35
  }], propDecorators: { startDate: [{
20
36
  type: Input
21
37
  }], endDate: [{
@@ -25,4 +41,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
25
41
  }], endDateChange: [{
26
42
  type: Output
27
43
  }] } });
28
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9kYXRlLXJhbmdlLXBpY2tlci9kYXRlLXJhbmdlLXBpY2tlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcmFuZ2UtcGlja2VyL2RhdGUtcmFuZ2UtcGlja2VyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxHQUNQLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQzVELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFBO0FBQ2xFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQTs7OztBQVV0RCxNQUFNLE9BQU8sd0JBQXdCO0lBUnJDO1FBV1ksb0JBQWUsR0FBRyxJQUFJLFlBQVksRUFBUSxDQUFBO1FBQzFDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQTtLQUNuRDsrR0FMWSx3QkFBd0I7bUdBQXhCLHdCQUF3Qiw0TkNuQnJDLDR3QkF3QkEsc0dEUFksYUFBYSxtTEFBRSxtQkFBbUIsOEJBQUUsbUJBQW1COzs0RkFFdEQsd0JBQXdCO2tCQVJwQyxTQUFTOytCQUNFLHlCQUF5QixtQkFHbEIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxhQUFhLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CLENBQUM7OEJBR3pELFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csT0FBTztzQkFBZixLQUFLO2dCQUNJLGVBQWU7c0JBQXhCLE1BQU07Z0JBQ0csYUFBYTtzQkFBdEIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IE1hdE5hdGl2ZURhdGVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jb3JlJ1xuaW1wb3J0IHsgTWF0RGF0ZXBpY2tlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RhdGVwaWNrZXInXG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbidcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZGF0ZS1yYW5nZS1waWNrZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRlLXJhbmdlLXBpY2tlci5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbTWF0SWNvbk1vZHVsZSwgTWF0TmF0aXZlRGF0ZU1vZHVsZSwgTWF0RGF0ZXBpY2tlck1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIERhdGVSYW5nZVBpY2tlckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHN0YXJ0RGF0ZTogRGF0ZVxuICBASW5wdXQoKSBlbmREYXRlOiBEYXRlXG4gIEBPdXRwdXQoKSBzdGFydERhdGVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPERhdGU+KClcbiAgQE91dHB1dCgpIGVuZERhdGVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPERhdGU+KClcbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJmbGV4IGl0ZW1zLWNlbnRlciBqdXN0aWZ5LWJldHdlZW4gcm91bmRlZC1sZyBib3JkZXIgYm9yZGVyLWdyYXktMzAwIGJnLXdoaXRlXCJcbj5cbiAgPGRpdiBjbGFzcz1cInBsLTMgZmxleCBqdXN0aWZ5LWNlbnRlclwiPlxuICAgIDxtYXQtZGF0ZS1yYW5nZS1pbnB1dCBbcmFuZ2VQaWNrZXJdPVwicGlja2VyXCIgY2xhc3M9XCJ3LWZ1bGxcIj5cbiAgICAgIDxpbnB1dFxuICAgICAgICBtYXRTdGFydERhdGVcbiAgICAgICAgcGxhY2Vob2xkZXI9XCJTdGFydCBkYXRlXCJcbiAgICAgICAgW3ZhbHVlXT1cInN0YXJ0RGF0ZVwiXG4gICAgICAgIChkYXRlSW5wdXQpPVwic3RhcnREYXRlQ2hhbmdlLmVtaXQoJGV2ZW50LnZhbHVlKVwiXG4gICAgICAvPlxuICAgICAgPGlucHV0XG4gICAgICAgIG1hdEVuZERhdGVcbiAgICAgICAgcGxhY2Vob2xkZXI9XCJFbmQgZGF0ZVwiXG4gICAgICAgIFt2YWx1ZV09XCJlbmREYXRlXCJcbiAgICAgICAgKGRhdGVJbnB1dCk9XCJlbmREYXRlQ2hhbmdlLmVtaXQoJGV2ZW50LnZhbHVlKVwiXG4gICAgICAvPlxuICAgIDwvbWF0LWRhdGUtcmFuZ2UtaW5wdXQ+XG4gIDwvZGl2PlxuICA8bWF0LWRhdGVwaWNrZXItdG9nZ2xlIG1hdFN1ZmZpeCBbZm9yXT1cInBpY2tlclwiPlxuICAgIDxtYXQtaWNvbj5jYWxlbmRhcl90b2RheTwvbWF0LWljb24+XG4gIDwvbWF0LWRhdGVwaWNrZXItdG9nZ2xlPlxuPC9kaXY+XG48bWF0LWRhdGUtcmFuZ2UtcGlja2VyICNwaWNrZXI+PC9tYXQtZGF0ZS1yYW5nZS1waWNrZXI+XG4iXX0=
44
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9kYXRlLXJhbmdlLXBpY2tlci9kYXRlLXJhbmdlLXBpY2tlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2RhdGUtcmFuZ2UtcGlja2VyL2RhdGUtcmFuZ2UtcGlja2VyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULFlBQVksRUFDWixLQUFLLEVBQ0wsTUFBTSxHQUNQLE1BQU0sZUFBZSxDQUFBO0FBQ3RCLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQzVELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFBO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQTtBQUM1RCxPQUFPLEVBQ0wsZUFBZSxFQUNmLFlBQVksRUFDWixvQkFBb0IsR0FDckIsTUFBTSxnQkFBZ0IsQ0FBQTtBQUN2QixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sbUJBQW1CLENBQUE7OztBQXFCbkQsTUFBTSxPQUFPLHdCQUF3QjtJQW5CckM7UUFzQlksb0JBQWUsR0FBRyxJQUFJLFlBQVksRUFBUSxDQUFBO1FBQzFDLGtCQUFhLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQTtLQUNuRDsrR0FMWSx3QkFBd0I7bUdBQXhCLHdCQUF3QiwrTUFQeEI7WUFDVCxZQUFZLENBQUMsRUFBRSxlQUFlLEVBQUUsQ0FBQztZQUNqQyxvQkFBb0IsQ0FBQztnQkFDbkIsSUFBSSxFQUFFLFFBQVE7YUFDZixDQUFDO1NBQ0gsMEJDbENILHkxQkEyQkEscVFESEksbUJBQW1CLDhCQUNuQixtQkFBbUIsa25CQUNuQixlQUFlLCtIQUNmLGVBQWU7OzRGQVNOLHdCQUF3QjtrQkFuQnBDLFNBQVM7K0JBQ0UseUJBQXlCLG1CQUdsQix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUDt3QkFDUCxtQkFBbUI7d0JBQ25CLG1CQUFtQjt3QkFDbkIsZUFBZTt3QkFDZixlQUFlO3FCQUNoQixhQUNVO3dCQUNULFlBQVksQ0FBQyxFQUFFLGVBQWUsRUFBRSxDQUFDO3dCQUNqQyxvQkFBb0IsQ0FBQzs0QkFDbkIsSUFBSSxFQUFFLFFBQVE7eUJBQ2YsQ0FBQztxQkFDSDs4QkFHUSxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDSSxlQUFlO3NCQUF4QixNQUFNO2dCQUNHLGFBQWE7c0JBQXRCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgQ29tcG9uZW50LFxuICBFdmVudEVtaXR0ZXIsXG4gIElucHV0LFxuICBPdXRwdXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBNYXROYXRpdmVEYXRlTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY29yZSdcbmltcG9ydCB7IE1hdERhdGVwaWNrZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kYXRlcGlja2VyJ1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vYnV0dG9uL2J1dHRvbi5jb21wb25lbnQnXG5pbXBvcnQge1xuICBOZ0ljb25Db21wb25lbnQsXG4gIHByb3ZpZGVJY29ucyxcbiAgcHJvdmlkZU5nSWNvbnNDb25maWcsXG59IGZyb20gJ0BuZy1pY29ucy9jb3JlJ1xuaW1wb3J0IHsgaWNvbm9pckNhbGVuZGFyIH0gZnJvbSAnQG5nLWljb25zL2ljb25vaXInXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWRhdGUtcmFuZ2UtcGlja2VyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RhdGUtcmFuZ2UtcGlja2VyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0ZS1yYW5nZS1waWNrZXIuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIE1hdE5hdGl2ZURhdGVNb2R1bGUsXG4gICAgTWF0RGF0ZXBpY2tlck1vZHVsZSxcbiAgICBCdXR0b25Db21wb25lbnQsXG4gICAgTmdJY29uQ29tcG9uZW50LFxuICBdLFxuICBwcm92aWRlcnM6IFtcbiAgICBwcm92aWRlSWNvbnMoeyBpY29ub2lyQ2FsZW5kYXIgfSksXG4gICAgcHJvdmlkZU5nSWNvbnNDb25maWcoe1xuICAgICAgc2l6ZTogJzEuNXJlbScsXG4gICAgfSksXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIERhdGVSYW5nZVBpY2tlckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHN0YXJ0RGF0ZTogRGF0ZVxuICBASW5wdXQoKSBlbmREYXRlOiBEYXRlXG4gIEBPdXRwdXQoKSBzdGFydERhdGVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPERhdGU+KClcbiAgQE91dHB1dCgpIGVuZERhdGVDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPERhdGU+KClcbn1cbiIsIjxzcGFuIGNsYXNzPVwidy1mdWxsIGlubGluZS1ibG9jayByZWxhdGl2ZVwiPlxuICA8bWF0LWRhdGUtcmFuZ2UtaW5wdXQgW3JhbmdlUGlja2VyXT1cInBpY2tlclwiIGNsYXNzPVwiZ24tdWktdGV4dC1pbnB1dFwiPlxuICAgIDxpbnB1dFxuICAgICAgbWF0U3RhcnREYXRlXG4gICAgICBwbGFjZWhvbGRlcj1cIlN0YXJ0IGRhdGVcIlxuICAgICAgW3ZhbHVlXT1cInN0YXJ0RGF0ZVwiXG4gICAgICAoZGF0ZUlucHV0KT1cInN0YXJ0RGF0ZUNoYW5nZS5lbWl0KCRldmVudC52YWx1ZSlcIlxuICAgIC8+XG4gICAgPGlucHV0XG4gICAgICBtYXRFbmREYXRlXG4gICAgICBwbGFjZWhvbGRlcj1cIkVuZCBkYXRlXCJcbiAgICAgIFt2YWx1ZV09XCJlbmREYXRlXCJcbiAgICAgIChkYXRlSW5wdXQpPVwiZW5kRGF0ZUNoYW5nZS5lbWl0KCRldmVudC52YWx1ZSlcIlxuICAgIC8+XG4gIDwvbWF0LWRhdGUtcmFuZ2UtaW5wdXQ+XG5cbiAgPGduLXVpLWJ1dHRvblxuICAgIHR5cGU9XCJsaWdodFwiXG4gICAgY2xhc3M9XCJhYnNvbHV0ZSBpbnNldC15LVt2YXIoLS1zaWRlLXBhZGRpbmcpXSByaWdodC1bdmFyKC0tc2lkZS1wYWRkaW5nKV0gei0xMFwiXG4gICAgKGJ1dHRvbkNsaWNrKT1cInBpY2tlci5vcGVuKClcIlxuICAgIGV4dHJhQ2xhc3M9XCJoLWZ1bGxcIlxuICAgIGRhdGEtY3k9XCJkYXRlLXBpY2tlci1idXR0b25cIlxuICA+XG4gICAgPG5nLWljb24gbmFtZT1cImljb25vaXJDYWxlbmRhclwiIGNsYXNzPVwidGV4dC1wcmltYXJ5XCI+PC9uZy1pY29uPlxuICA8L2duLXVpLWJ1dHRvbj5cbjwvc3Bhbj5cbjxtYXQtZGF0ZS1yYW5nZS1waWNrZXIgI3BpY2tlcj48L21hdC1kYXRlLXJhbmdlLXBpY2tlcj5cbiJdfQ==
@@ -20,10 +20,10 @@ export class DragAndDropFileInputComponent {
20
20
  this.selectedFile = event.addedFiles[0];
21
21
  this.fileChange.emit(this.selectedFile);
22
22
  }
23
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DragAndDropFileInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
24
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DragAndDropFileInputComponent, selector: "gn-ui-drag-and-drop-file-input", inputs: { placeholder: "placeholder", accept: "accept" }, outputs: { fileChange: "fileChange" }, ngImport: i0, template: "<div class=\"flex h-full\">\n <ngx-dropzone\n class=\"flex-1\"\n multiple=\"false\"\n (change)=\"selectFile($event)\"\n [accept]=\"accept\"\n >\n <div *ngIf=\"!fileName\" class=\"text-gray-900 pl-2 py-2\" translate=\"\">\n {{ placeholder }}\n </div>\n\n <div *ngIf=\"fileName\" class=\"text-gray-900 pl-2 py-2\">{{ fileName }}</div>\n </ngx-dropzone>\n</div>\n", styles: ["ngx-dropzone{height:auto;border:none}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i3.NgxDropzoneComponent, selector: "ngx-dropzone, [ngx-dropzone]", inputs: ["accept", "disabled", "multiple", "maxFileSize", "expandable", "disableClick", "processDirectoryDrop", "id", "aria-label", "aria-labelledby", "aria-describedby"], outputs: ["change"] }] }); }
23
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DragAndDropFileInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
24
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: DragAndDropFileInputComponent, selector: "gn-ui-drag-and-drop-file-input", inputs: { placeholder: "placeholder", accept: "accept" }, outputs: { fileChange: "fileChange" }, ngImport: i0, template: "<div class=\"flex h-full\">\n <ngx-dropzone\n class=\"flex-1\"\n multiple=\"false\"\n (change)=\"selectFile($event)\"\n [accept]=\"accept\"\n >\n <div *ngIf=\"!fileName\" class=\"text-gray-900 pl-2 py-2\" translate=\"\">\n {{ placeholder }}\n </div>\n\n <div *ngIf=\"fileName\" class=\"text-gray-900 pl-2 py-2\">{{ fileName }}</div>\n </ngx-dropzone>\n</div>\n", styles: ["ngx-dropzone{height:auto;border:none}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }, { kind: "component", type: i3.NgxDropzoneComponent, selector: "ngx-dropzone, [ngx-dropzone]", inputs: ["accept", "disabled", "multiple", "maxFileSize", "expandable", "disableClick", "processDirectoryDrop", "id", "aria-label", "aria-labelledby", "aria-describedby"], outputs: ["change"] }] }); }
25
25
  }
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DragAndDropFileInputComponent, decorators: [{
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DragAndDropFileInputComponent, decorators: [{
27
27
  type: Component,
28
28
  args: [{ selector: 'gn-ui-drag-and-drop-file-input', template: "<div class=\"flex h-full\">\n <ngx-dropzone\n class=\"flex-1\"\n multiple=\"false\"\n (change)=\"selectFile($event)\"\n [accept]=\"accept\"\n >\n <div *ngIf=\"!fileName\" class=\"text-gray-900 pl-2 py-2\" translate=\"\">\n {{ placeholder }}\n </div>\n\n <div *ngIf=\"fileName\" class=\"text-gray-900 pl-2 py-2\">{{ fileName }}</div>\n </ngx-dropzone>\n</div>\n", styles: ["ngx-dropzone{height:auto;border:none}\n"] }]
29
29
  }], propDecorators: { placeholder: [{