geonetwork-ui 2.3.0-dev.3d65a13b → 2.3.0-dev.3e7f46f3

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 (492) hide show
  1. package/esm2022/index.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +6 -2
  3. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +2 -2
  4. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +9 -7
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +23 -8
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +15 -4
  7. package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
  8. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
  9. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
  10. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +21 -7
  11. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  12. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  13. package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
  14. package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
  15. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  16. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +35 -7
  17. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +1 -2
  18. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  19. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +47 -2
  20. package/esm2022/libs/feature/editor/src/index.mjs +2 -2
  21. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +64 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +15 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  28. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  29. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  30. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  31. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +104 -0
  32. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +126 -0
  33. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  34. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  35. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
  36. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  37. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  38. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +23 -1
  39. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  40. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  41. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +73 -20
  42. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  43. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  44. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +1 -1
  45. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +58 -17
  46. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +7 -3
  47. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  48. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  49. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  50. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  51. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  52. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  53. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
  54. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +13 -8
  55. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
  56. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
  57. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +52 -8
  58. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +50 -17
  59. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
  60. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  61. package/esm2022/libs/feature/search/src/index.mjs +2 -1
  62. package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +1 -1
  63. package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +4 -4
  64. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  65. package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +1 -1
  66. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +1 -1
  67. package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +1 -1
  68. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  69. package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +1 -1
  70. package/esm2022/libs/ui/elements/src/index.mjs +16 -16
  71. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -2
  72. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +2 -2
  73. package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +30 -0
  74. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
  75. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +16 -3
  76. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  77. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  78. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  79. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +98 -36
  80. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
  81. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +19 -15
  82. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
  83. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +60 -0
  84. package/esm2022/libs/ui/inputs/src/index.mjs +16 -16
  85. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
  86. package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +4 -3
  87. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +22 -0
  88. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +7 -5
  89. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +19 -8
  90. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
  91. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
  92. package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +29 -0
  93. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
  94. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +21 -3
  95. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +21 -31
  96. package/esm2022/libs/ui/layout/src/index.mjs +7 -5
  97. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +76 -0
  98. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +42 -18
  99. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  100. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +3 -8
  101. package/esm2022/libs/util/app-config/src/lib/app-config.mjs +3 -1
  102. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
  103. package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
  104. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +2 -2
  105. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +22 -1
  106. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
  107. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
  108. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
  109. package/esm2022/translations/de.json +42 -0
  110. package/esm2022/translations/en.json +42 -0
  111. package/esm2022/translations/es.json +42 -0
  112. package/esm2022/translations/fr.json +42 -0
  113. package/esm2022/translations/it.json +42 -0
  114. package/esm2022/translations/nl.json +42 -0
  115. package/esm2022/translations/pt.json +42 -0
  116. package/fesm2022/geonetwork-ui.mjs +3835 -2086
  117. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  118. package/index.d.ts +1 -0
  119. package/index.d.ts.map +1 -1
  120. package/index.ts +1 -0
  121. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  122. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts +2 -2
  123. package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
  124. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +1 -1
  125. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  126. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +4 -1
  127. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  128. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +2 -1
  129. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  130. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
  131. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  132. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
  133. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  134. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
  135. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  136. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
  137. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  138. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  139. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  140. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +3 -3
  141. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  142. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
  143. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
  144. package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
  145. package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
  146. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
  147. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  148. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
  149. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  150. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
  151. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  152. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +4 -1
  153. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  154. package/libs/feature/editor/src/index.d.ts +1 -1
  155. package/libs/feature/editor/src/index.d.ts.map +1 -1
  156. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  157. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  158. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.d.ts +1 -1
  159. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  160. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.d.ts +1 -1
  161. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  162. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +39 -0
  163. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -0
  164. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.d.ts +1 -1
  165. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  166. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +8 -0
  167. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +1 -0
  168. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  169. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  170. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.d.ts +2 -2
  171. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  172. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +1 -1
  173. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
  174. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +1 -1
  175. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
  176. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +21 -0
  177. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -0
  178. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +13 -4
  179. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  180. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  181. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  182. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  183. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  184. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  185. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  186. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  187. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  188. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +10 -5
  189. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  190. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +7 -0
  191. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  192. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +1 -1
  193. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  194. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  195. package/libs/feature/notifications/src/index.d.ts +4 -0
  196. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  197. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  198. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  199. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  200. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  201. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  202. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  203. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  204. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  205. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  206. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
  207. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  208. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
  209. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  210. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
  211. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  212. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +18 -5
  213. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  214. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
  215. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  216. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
  217. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  218. package/libs/feature/search/src/index.d.ts +1 -0
  219. package/libs/feature/search/src/index.d.ts.map +1 -1
  220. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +3 -3
  221. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  222. package/libs/ui/elements/src/index.d.ts +15 -15
  223. package/libs/ui/elements/src/index.d.ts.map +1 -1
  224. package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
  225. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  226. package/libs/ui/elements/src/lib/error/error.component.d.ts +16 -0
  227. package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -0
  228. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +3 -1
  229. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  230. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  231. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  232. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  233. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  234. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +24 -4
  235. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  236. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
  237. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  238. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +29 -28
  239. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  240. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
  241. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
  242. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +21 -0
  243. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
  244. package/libs/ui/inputs/src/index.d.ts +15 -15
  245. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  246. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  247. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +1 -1
  248. package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
  249. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +9 -0
  250. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -0
  251. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +1 -1
  252. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  253. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +2 -1
  254. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
  255. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
  256. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
  257. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
  258. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
  259. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +12 -0
  260. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
  261. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
  262. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  263. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +5 -1
  264. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  265. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +35 -42
  266. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  267. package/libs/ui/layout/src/index.d.ts +6 -4
  268. package/libs/ui/layout/src/index.d.ts.map +1 -1
  269. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +25 -0
  270. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -0
  271. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +13 -6
  272. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
  273. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  274. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  275. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +4 -5
  276. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  277. package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
  278. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  279. package/libs/util/app-config/src/lib/model.d.ts +1 -0
  280. package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
  281. package/libs/util/shared/src/lib/links/link-utils.d.ts +18 -0
  282. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  283. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
  284. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
  285. package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
  286. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
  287. package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
  288. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  289. package/package.json +2 -2
  290. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +9 -1
  291. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
  292. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +3 -3
  293. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +35 -31
  294. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +68 -16
  295. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +72 -17
  296. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
  297. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
  298. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
  299. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +40 -7
  300. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  301. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +3 -3
  302. package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
  303. package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
  304. package/src/libs/common/fixtures/src/index.ts +8 -6
  305. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +8 -0
  306. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +11 -3
  307. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
  308. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
  309. package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
  310. package/src/libs/data-access/gn4/src/spec.yaml +1 -1
  311. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +65 -1
  312. package/src/libs/feature/editor/src/index.ts +1 -1
  313. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  314. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
  315. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
  316. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.ts +1 -0
  317. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.ts +4 -1
  318. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +8 -0
  319. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +64 -0
  320. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.ts +1 -0
  321. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +4 -0
  322. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +15 -0
  323. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  324. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  325. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.ts +4 -1
  326. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +1 -0
  327. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
  328. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +1 -0
  329. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +0 -0
  330. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +14 -0
  331. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +143 -0
  332. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -0
  333. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +97 -0
  334. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +142 -0
  335. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
  336. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  337. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
  338. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  339. package/src/libs/feature/editor/src/lib/fields.config.ts +22 -0
  340. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  341. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  342. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +7 -0
  343. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +32 -18
  344. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +72 -17
  345. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +7 -0
  346. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +57 -17
  347. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +6 -2
  348. package/src/libs/feature/notifications/src/index.ts +3 -0
  349. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  350. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  351. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  352. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  353. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  354. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  355. package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
  356. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +12 -9
  357. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
  358. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
  359. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +86 -9
  360. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +79 -24
  361. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
  362. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  363. package/src/libs/feature/search/src/index.ts +1 -0
  364. package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +4 -4
  365. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  366. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +2 -2
  367. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  368. package/src/libs/ui/elements/src/index.ts +15 -15
  369. package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +2 -1
  370. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
  371. package/src/libs/ui/elements/src/lib/{search-results-error/search-results-error.component.html → error/error.component.html} +18 -3
  372. package/src/libs/ui/elements/src/lib/{search-results-error/search-results-error.component.ts → error/error.component.ts} +5 -4
  373. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  374. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +38 -20
  375. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
  376. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  377. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  378. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  379. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  380. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  381. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  382. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +27 -11
  383. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +125 -30
  384. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
  385. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +9 -7
  386. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
  387. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
  388. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
  389. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +62 -0
  390. package/src/libs/ui/inputs/src/index.ts +15 -15
  391. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
  392. package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -0
  393. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +3 -0
  394. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +11 -0
  395. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +16 -0
  396. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +8 -1
  397. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +1 -0
  398. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +14 -0
  399. package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
  400. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
  401. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
  402. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
  403. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.css +6 -0
  404. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +26 -0
  405. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +32 -0
  406. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  407. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
  408. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +2 -1
  409. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +17 -1
  410. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +6 -22
  411. package/src/libs/ui/layout/src/index.ts +6 -4
  412. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +23 -0
  413. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +20 -0
  414. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +84 -0
  415. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +8 -4
  416. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -4
  417. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +45 -15
  418. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
  419. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  420. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  421. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -2
  422. package/src/libs/util/app-config/src/lib/app-config.ts +2 -0
  423. package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
  424. package/src/libs/util/app-config/src/lib/model.ts +1 -0
  425. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +1 -1
  426. package/src/libs/util/shared/src/lib/links/link-utils.ts +21 -0
  427. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
  428. package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
  429. package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
  430. package/tailwind.base.css +36 -0
  431. package/translations/de.json +42 -0
  432. package/translations/en.json +42 -0
  433. package/translations/es.json +42 -0
  434. package/translations/fr.json +42 -0
  435. package/translations/it.json +42 -0
  436. package/translations/nl.json +42 -0
  437. package/translations/pt.json +42 -0
  438. package/translations/sk.json +42 -0
  439. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
  440. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  441. package/esm2022/libs/ui/elements/src/lib/search-results-error/search-results-error.component.mjs +0 -29
  442. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  443. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  444. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  445. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  446. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  447. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  448. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  449. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  450. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  451. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  452. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
  453. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
  454. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  455. package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts +0 -15
  456. package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts.map +0 -1
  457. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  458. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  459. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  460. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  461. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  462. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  463. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  464. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  465. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  466. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  467. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  468. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
  469. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  470. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  471. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +0 -68
  472. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
  473. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  474. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  475. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -0
  476. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.css +0 -0
  477. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-array/form-field-array.component.html +0 -0
  478. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.css +0 -0
  479. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-file/form-field-file.component.html +0 -0
  480. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css} +0 -0
  481. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.css} +0 -0
  482. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.html +0 -0
  483. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css} +0 -0
  484. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css} +0 -0
  485. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.css} +0 -0
  486. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.html +0 -0
  487. /package/src/libs/{ui/inputs/src/lib/form-field/form-field.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css} +0 -0
  488. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -0
  489. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +0 -0
  490. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  491. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
  492. /package/src/libs/ui/elements/src/lib/{search-results-error/search-results-error.component.css → error/error.component.css} +0 -0
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "Se connecter",
2
3
  "catalog.figures.datasets": "{count, plural, =0{données} one{donnée} other{données}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organisations} one{organisation} other{organisations}}",
4
5
  "chart.aggregation.average": "moyenne",
@@ -144,7 +145,28 @@
144
145
  "downloads.format.unknown": "inconnu",
145
146
  "downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
146
147
  "dropFile": "Faites glisser votre fichier",
148
+ "editor.record.form.license": "Licence",
149
+ "editor.record.form.license.cc-by": "",
150
+ "editor.record.form.license.cc-by-sa": "",
151
+ "editor.record.form.license.cc-zero": "",
152
+ "editor.record.form.license.etalab": "Licence Ouverte (Etalab)",
153
+ "editor.record.form.license.etalab-v2": "Licence Ouverte v2.0 (Etalab)",
154
+ "editor.record.form.license.odbl": "",
155
+ "editor.record.form.license.odc-by": "",
156
+ "editor.record.form.license.pddl": "",
157
+ "editor.record.form.license.unknown": "Non-reconnue ou absente",
158
+ "editor.record.form.resourceUpdated": "Date de dernière révision",
159
+ "editor.record.form.updateFrequency": "Fréquence de mise à jour",
160
+ "editor.record.form.updateFrequency.planned": "Ces données doivent être mise à jour régulièrement.",
161
+ "editor.record.loadError.body": "",
162
+ "editor.record.loadError.closeMessage": "",
163
+ "editor.record.loadError.title": "",
147
164
  "editor.record.publish": "",
165
+ "editor.record.publishError.body": "",
166
+ "editor.record.publishError.closeMessage": "",
167
+ "editor.record.publishError.title": "",
168
+ "editor.record.publishSuccess.body": "",
169
+ "editor.record.publishSuccess.title": "",
148
170
  "editor.record.upToDate": "",
149
171
  "externalviewer.dataset.unnamed": "Couche du datahub",
150
172
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +181,16 @@
159
181
  "facets.block.title.tag.default": "Tag",
160
182
  "facets.block.title.th_regions_tree.default": "Régions",
161
183
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Connectez-vous</a> pour avoir accès à cette fonctionnalité</div>",
184
+ "input.image.altTextPlaceholder": "Texte alternatif de l'image",
185
+ "input.image.delete": "Supprimer",
186
+ "input.image.displayAltTextInput": "Texte alternatif",
187
+ "input.image.displayUrlInput": "Saisir une URL",
188
+ "input.image.dropFileLabel": "ou la glisser ici",
189
+ "input.image.selectFileLabel": "Sélectionner une image",
190
+ "input.image.uploadErrorLabel": "L'image n'a pas pu être chargée",
191
+ "input.image.uploadErrorRetry": "Réessayer",
192
+ "input.image.uploadProgressCancel": "Annuler",
193
+ "input.image.uploadProgressLabel": "Chargement en cours...",
162
194
  "language.ca": "Catalan",
163
195
  "language.cs": "Tchèque",
164
196
  "language.de": "Allemand",
@@ -196,6 +228,7 @@
196
228
  "multiselect.filter.placeholder": "Rechercher",
197
229
  "nav.back": "Retour",
198
230
  "next": "suivant",
231
+ "ogc.unreachable.unknown": "Le service n'est pas accessible",
199
232
  "organisation.filter.placeholder": "Filtrer les résultats",
200
233
  "organisation.sort.sortBy": "Trier par :",
201
234
  "organisations.hits.found": "{hits, plural, =0{Aucune organisation trouvé} one{1 organisation sur {total} affichée} other{{hits} organisations sur {total} affichées}}",
@@ -274,6 +307,14 @@
274
307
  "record.metadata.updateFrequency": "Fréquence de mise à jour des données",
275
308
  "record.metadata.updatedOn": "Dernière mise à jour des informations sur les données",
276
309
  "record.metadata.usage": "Licences et conditions d'utilisation",
310
+ "record.metadata.userFeedbacks": "Questions / Réponses",
311
+ "record.metadata.userFeedbacks.anonymousUser": "Pour rédiger un commentaire, veuillez vous identifier.",
312
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "Publier",
313
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "Répondre...",
314
+ "record.metadata.userFeedbacks.newComment.placeholder": "Rédiger votre commentaire ici...",
315
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "Les plus récents en premier",
316
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "Les plus anciens en premier",
317
+ "record.metadata.userFeedbacks.sortSelector.label": "Trier par ...",
277
318
  "record.more.details": "Détails",
278
319
  "record.tab.chart": "Graphique",
279
320
  "record.tab.data": "Tableau",
@@ -294,6 +335,7 @@
294
335
  "search.error.couldNotReachApi": "Problème de connexion à l'API",
295
336
  "search.error.receivedError": "Erreur retournée",
296
337
  "search.error.recordNotFound": "Cette donnée n'a pu être trouvée.",
338
+ "search.error.recordHasnolink": "Ce dataset n'a pas encore de lien, réessayez plus tard s'il vous plaît.",
297
339
  "search.field.any.placeholder": "Rechercher une donnée...",
298
340
  "search.field.sortBy": "Trier par :",
299
341
  "search.filters.clear": "Réinitialiser",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "{count, plural, =0{datasets} one{dataset} other{datasets}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organizzazioni} one{organizzazione} other{organizzazioni}}",
4
5
  "chart.aggregation.average": "media",
@@ -144,7 +145,28 @@
144
145
  "downloads.format.unknown": "sconosciuto",
145
146
  "downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
146
147
  "dropFile": "Trascina il suo file",
148
+ "editor.record.form.license": "Licenza",
149
+ "editor.record.form.license.cc-by": "",
150
+ "editor.record.form.license.cc-by-sa": "",
151
+ "editor.record.form.license.cc-zero": "",
152
+ "editor.record.form.license.etalab": "Licenza aperta (Etalab)",
153
+ "editor.record.form.license.etalab-v2": "Licenza aperta v2.0 (Etalab)",
154
+ "editor.record.form.license.odbl": "",
155
+ "editor.record.form.license.odc-by": "",
156
+ "editor.record.form.license.pddl": "",
157
+ "editor.record.form.license.unknown": "Non riconosciuta o assente",
158
+ "editor.record.form.resourceUpdated": "",
159
+ "editor.record.form.updateFrequency": "",
160
+ "editor.record.form.updateFrequency.planned": "",
161
+ "editor.record.loadError.body": "",
162
+ "editor.record.loadError.closeMessage": "",
163
+ "editor.record.loadError.title": "",
147
164
  "editor.record.publish": "",
165
+ "editor.record.publishError.body": "",
166
+ "editor.record.publishError.closeMessage": "",
167
+ "editor.record.publishError.title": "",
168
+ "editor.record.publishSuccess.body": "",
169
+ "editor.record.publishSuccess.title": "",
148
170
  "editor.record.upToDate": "",
149
171
  "externalviewer.dataset.unnamed": "Layer del datahub",
150
172
  "facets.block.title.OrgForResource": "Organizzazione",
@@ -159,6 +181,16 @@
159
181
  "facets.block.title.tag.default": "Tag",
160
182
  "facets.block.title.th_regions_tree.default": "Regioni",
161
183
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
184
+ "input.image.altTextPlaceholder": "",
185
+ "input.image.delete": "",
186
+ "input.image.displayAltTextInput": "",
187
+ "input.image.displayUrlInput": "",
188
+ "input.image.dropFileLabel": "",
189
+ "input.image.selectFileLabel": "",
190
+ "input.image.uploadErrorLabel": "",
191
+ "input.image.uploadErrorRetry": "",
192
+ "input.image.uploadProgressCancel": "",
193
+ "input.image.uploadProgressLabel": "",
162
194
  "language.ca": "Catalano",
163
195
  "language.cs": "Ceco",
164
196
  "language.de": "Tedesco",
@@ -196,6 +228,7 @@
196
228
  "multiselect.filter.placeholder": "Cerca",
197
229
  "nav.back": "Indietro",
198
230
  "next": "successivo",
231
+ "ogc.unreachable.unknown": "Il servizio non è accessibile",
199
232
  "organisation.filter.placeholder": "Filtra i risultati",
200
233
  "organisation.sort.sortBy": "Ordina per:",
201
234
  "organisations.hits.found": "{hits, plural, =0{Nessuna organizzazione trovata} one{1 organizzazione su {total} visualizzata} other{{hits} organizzazioni su {total} visualizzate}}",
@@ -274,6 +307,14 @@
274
307
  "record.metadata.updateFrequency": "Frequenza di aggiornamento dei dati",
275
308
  "record.metadata.updatedOn": "Ultimo aggiornamento delle informazioni sui dati",
276
309
  "record.metadata.usage": "Licenze e limiti di utilizzo",
310
+ "record.metadata.userFeedbacks": "",
311
+ "record.metadata.userFeedbacks.anonymousUser": "",
312
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
313
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
314
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
315
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
316
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
317
+ "record.metadata.userFeedbacks.sortSelector.label": "",
277
318
  "record.more.details": "Dettagli",
278
319
  "record.tab.chart": "Grafico",
279
320
  "record.tab.data": "Tabella",
@@ -294,6 +335,7 @@
294
335
  "search.error.couldNotReachApi": "Problema di connessione all'API",
295
336
  "search.error.receivedError": "Errore ricevuto",
296
337
  "search.error.recordNotFound": "Impossibile trovare questo dato",
338
+ "search.error.recordHasnolink": "",
297
339
  "search.field.any.placeholder": "Cerca un dato...",
298
340
  "search.field.sortBy": "Ordina per:",
299
341
  "search.filters.clear": "Ripristina",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "datasets",
3
4
  "catalog.figures.organisations": "organisaties",
4
5
  "chart.aggregation.average": "gemiddelde",
@@ -144,7 +145,28 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.form.license": "",
149
+ "editor.record.form.license.cc-by": "",
150
+ "editor.record.form.license.cc-by-sa": "",
151
+ "editor.record.form.license.cc-zero": "",
152
+ "editor.record.form.license.etalab": "",
153
+ "editor.record.form.license.etalab-v2": "",
154
+ "editor.record.form.license.odbl": "",
155
+ "editor.record.form.license.odc-by": "",
156
+ "editor.record.form.license.pddl": "",
157
+ "editor.record.form.license.unknown": "",
158
+ "editor.record.form.resourceUpdated": "",
159
+ "editor.record.form.updateFrequency": "",
160
+ "editor.record.form.updateFrequency.planned": "",
161
+ "editor.record.loadError.body": "",
162
+ "editor.record.loadError.closeMessage": "",
163
+ "editor.record.loadError.title": "",
147
164
  "editor.record.publish": "",
165
+ "editor.record.publishError.body": "",
166
+ "editor.record.publishError.closeMessage": "",
167
+ "editor.record.publishError.title": "",
168
+ "editor.record.publishSuccess.body": "",
169
+ "editor.record.publishSuccess.title": "",
148
170
  "editor.record.upToDate": "",
149
171
  "externalviewer.dataset.unnamed": "",
150
172
  "facets.block.title.OrgForResource": "",
@@ -159,6 +181,16 @@
159
181
  "facets.block.title.tag.default": "",
160
182
  "facets.block.title.th_regions_tree.default": "",
161
183
  "favorite.not.authenticated.tooltip": "",
184
+ "input.image.altTextPlaceholder": "",
185
+ "input.image.delete": "",
186
+ "input.image.displayAltTextInput": "",
187
+ "input.image.displayUrlInput": "",
188
+ "input.image.dropFileLabel": "",
189
+ "input.image.selectFileLabel": "",
190
+ "input.image.uploadErrorLabel": "",
191
+ "input.image.uploadErrorRetry": "",
192
+ "input.image.uploadProgressCancel": "",
193
+ "input.image.uploadProgressLabel": "",
162
194
  "language.ca": "Catalaans",
163
195
  "language.cs": "Tsjechisch",
164
196
  "language.de": "Duits",
@@ -196,6 +228,7 @@
196
228
  "multiselect.filter.placeholder": "",
197
229
  "nav.back": "",
198
230
  "next": "",
231
+ "ogc.unreachable.unknown": "",
199
232
  "organisation.filter.placeholder": "",
200
233
  "organisation.sort.sortBy": "",
201
234
  "organisations.hits.found": "",
@@ -274,6 +307,14 @@
274
307
  "record.metadata.updateFrequency": "",
275
308
  "record.metadata.updatedOn": "",
276
309
  "record.metadata.usage": "",
310
+ "record.metadata.userFeedbacks": "",
311
+ "record.metadata.userFeedbacks.anonymousUser": "",
312
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
313
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
314
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
315
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
316
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
317
+ "record.metadata.userFeedbacks.sortSelector.label": "",
277
318
  "record.more.details": "",
278
319
  "record.tab.chart": "",
279
320
  "record.tab.data": "",
@@ -294,6 +335,7 @@
294
335
  "search.error.couldNotReachApi": "",
295
336
  "search.error.receivedError": "",
296
337
  "search.error.recordNotFound": "",
338
+ "search.error.recordHasnolink": "",
297
339
  "search.field.any.placeholder": "",
298
340
  "search.field.sortBy": "",
299
341
  "search.filters.clear": "",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "conjuntos de dados",
3
4
  "catalog.figures.organisations": "organizações",
4
5
  "chart.aggregation.average": "média",
@@ -144,7 +145,28 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.form.license": "",
149
+ "editor.record.form.license.cc-by": "",
150
+ "editor.record.form.license.cc-by-sa": "",
151
+ "editor.record.form.license.cc-zero": "",
152
+ "editor.record.form.license.etalab": "",
153
+ "editor.record.form.license.etalab-v2": "",
154
+ "editor.record.form.license.odbl": "",
155
+ "editor.record.form.license.odc-by": "",
156
+ "editor.record.form.license.pddl": "",
157
+ "editor.record.form.license.unknown": "",
158
+ "editor.record.form.resourceUpdated": "",
159
+ "editor.record.form.updateFrequency": "",
160
+ "editor.record.form.updateFrequency.planned": "",
161
+ "editor.record.loadError.body": "",
162
+ "editor.record.loadError.closeMessage": "",
163
+ "editor.record.loadError.title": "",
147
164
  "editor.record.publish": "",
165
+ "editor.record.publishError.body": "",
166
+ "editor.record.publishError.closeMessage": "",
167
+ "editor.record.publishError.title": "",
168
+ "editor.record.publishSuccess.body": "",
169
+ "editor.record.publishSuccess.title": "",
148
170
  "editor.record.upToDate": "",
149
171
  "externalviewer.dataset.unnamed": "",
150
172
  "facets.block.title.OrgForResource": "",
@@ -159,6 +181,16 @@
159
181
  "facets.block.title.tag.default": "",
160
182
  "facets.block.title.th_regions_tree.default": "",
161
183
  "favorite.not.authenticated.tooltip": "",
184
+ "input.image.altTextPlaceholder": "",
185
+ "input.image.delete": "",
186
+ "input.image.displayAltTextInput": "",
187
+ "input.image.displayUrlInput": "",
188
+ "input.image.dropFileLabel": "",
189
+ "input.image.selectFileLabel": "",
190
+ "input.image.uploadErrorLabel": "",
191
+ "input.image.uploadErrorRetry": "",
192
+ "input.image.uploadProgressCancel": "",
193
+ "input.image.uploadProgressLabel": "",
162
194
  "language.ca": "Catalão",
163
195
  "language.cs": "Tcheco",
164
196
  "language.de": "Alemão",
@@ -196,6 +228,7 @@
196
228
  "multiselect.filter.placeholder": "",
197
229
  "nav.back": "",
198
230
  "next": "",
231
+ "ogc.unreachable.unknown": "",
199
232
  "organisation.filter.placeholder": "",
200
233
  "organisation.sort.sortBy": "",
201
234
  "organisations.hits.found": "",
@@ -274,6 +307,14 @@
274
307
  "record.metadata.updateFrequency": "",
275
308
  "record.metadata.updatedOn": "",
276
309
  "record.metadata.usage": "",
310
+ "record.metadata.userFeedbacks": "",
311
+ "record.metadata.userFeedbacks.anonymousUser": "",
312
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
313
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
314
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
315
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
316
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
317
+ "record.metadata.userFeedbacks.sortSelector.label": "",
277
318
  "record.more.details": "",
278
319
  "record.tab.chart": "",
279
320
  "record.tab.data": "",
@@ -294,6 +335,7 @@
294
335
  "search.error.couldNotReachApi": "",
295
336
  "search.error.receivedError": "",
296
337
  "search.error.recordNotFound": "",
338
+ "search.error.recordHasnolink": "",
297
339
  "search.field.any.placeholder": "",
298
340
  "search.field.sortBy": "",
299
341
  "search.filters.clear": "",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "button.login": "",
2
3
  "catalog.figures.datasets": "{count, plural, =0{datasety} one{dataset} other{datasety}}",
3
4
  "catalog.figures.organisations": "{count, plural, =0{organizácie} one{organizácia} other{organizácie}}",
4
5
  "chart.aggregation.average": "priemer",
@@ -144,7 +145,28 @@
144
145
  "downloads.format.unknown": "neznámy",
145
146
  "downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
146
147
  "dropFile": "nahrať súbor",
148
+ "editor.record.form.license": "Licencia",
149
+ "editor.record.form.license.cc-by": "",
150
+ "editor.record.form.license.cc-by-sa": "",
151
+ "editor.record.form.license.cc-zero": "",
152
+ "editor.record.form.license.etalab": "",
153
+ "editor.record.form.license.etalab-v2": "",
154
+ "editor.record.form.license.odbl": "",
155
+ "editor.record.form.license.odc-by": "",
156
+ "editor.record.form.license.pddl": "",
157
+ "editor.record.form.license.unknown": "Neznáme alebo chýbajúce",
158
+ "editor.record.form.resourceUpdated": "",
159
+ "editor.record.form.updateFrequency": "",
160
+ "editor.record.form.updateFrequency.planned": "",
161
+ "editor.record.loadError.body": "",
162
+ "editor.record.loadError.closeMessage": "",
163
+ "editor.record.loadError.title": "",
147
164
  "editor.record.publish": "",
165
+ "editor.record.publishError.body": "",
166
+ "editor.record.publishError.closeMessage": "",
167
+ "editor.record.publishError.title": "",
168
+ "editor.record.publishSuccess.body": "",
169
+ "editor.record.publishSuccess.title": "",
148
170
  "editor.record.upToDate": "",
149
171
  "externalviewer.dataset.unnamed": "",
150
172
  "facets.block.title.OrgForResource": "Organizácia",
@@ -159,6 +181,16 @@
159
181
  "facets.block.title.tag.default": "Štítok",
160
182
  "facets.block.title.th_regions_tree.default": "Regióny",
161
183
  "favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
184
+ "input.image.altTextPlaceholder": "",
185
+ "input.image.delete": "",
186
+ "input.image.displayAltTextInput": "",
187
+ "input.image.displayUrlInput": "",
188
+ "input.image.dropFileLabel": "",
189
+ "input.image.selectFileLabel": "",
190
+ "input.image.uploadErrorLabel": "",
191
+ "input.image.uploadErrorRetry": "",
192
+ "input.image.uploadProgressCancel": "",
193
+ "input.image.uploadProgressLabel": "",
162
194
  "language.ca": "Catalánsky",
163
195
  "language.cs": "Čeština",
164
196
  "language.de": "Nemecky",
@@ -196,6 +228,7 @@
196
228
  "multiselect.filter.placeholder": "Hľadať",
197
229
  "nav.back": "Späť",
198
230
  "next": "Ďalej",
231
+ "ogc.unreachable.unknown": "So službou sa nedalo spojiť",
199
232
  "organisation.filter.placeholder": "Filtrovať výsledky",
200
233
  "organisation.sort.sortBy": "Zoradiť podľa:",
201
234
  "organisations.hits.found": "{hits, plural, =0{Žiadna organizácia nenájdená} other{{hits} celkovo {total} organizácií nájdených}}",
@@ -274,6 +307,14 @@
274
307
  "record.metadata.updateFrequency": "Frekvencia aktualizácie metadát",
275
308
  "record.metadata.updatedOn": "Posledná aktualizácia metadát",
276
309
  "record.metadata.usage": "Použitie a obmedzenia",
310
+ "record.metadata.userFeedbacks": "",
311
+ "record.metadata.userFeedbacks.anonymousUser": "",
312
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
313
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
314
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
315
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
316
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
317
+ "record.metadata.userFeedbacks.sortSelector.label": "",
277
318
  "record.more.details": "Čítať viac",
278
319
  "record.tab.chart": "Graf",
279
320
  "record.tab.data": "Tabuľka",
@@ -294,6 +335,7 @@
294
335
  "search.error.couldNotReachApi": "K rozhraniu API sa nepodarilo pripojiť",
295
336
  "search.error.receivedError": "Bola zaznamenaná chyba",
296
337
  "search.error.recordNotFound": "Záznam s identifikátorom \"{ id }\" sa nepodarilo nájsť.",
338
+ "search.error.recordHasnolink": "",
297
339
  "search.field.any.placeholder": "Hľadať datasety ...",
298
340
  "search.field.sortBy": "Zoradiť podľa:",
299
341
  "search.filters.clear": "Obnoviť",
@@ -1,13 +0,0 @@
1
- /**
2
- * GeoNetwork 4.2.7 OpenAPI Documentation
3
- * This is the description of the GeoNetwork OpenAPI. Use this API to manage your catalog.
4
- *
5
- * The version of the OpenAPI document: 4.2.7
6
- * Contact: geonetwork-users@lists.sourceforge.net
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- export {};
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5saW5lT2JqZWN0My5hcGkubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2RhdGEtYWNjZXNzL2duNC9zcmMvb3BlbmFwaS9tb2RlbC9pbmxpbmVPYmplY3QzLmFwaS5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7Ozs7OztHQVVHIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW9OZXR3b3JrIDQuMi43IE9wZW5BUEkgRG9jdW1lbnRhdGlvblxuICogVGhpcyBpcyB0aGUgZGVzY3JpcHRpb24gb2YgdGhlIEdlb05ldHdvcmsgT3BlbkFQSS4gVXNlIHRoaXMgQVBJIHRvIG1hbmFnZSB5b3VyIGNhdGFsb2cuXG4gKlxuICogVGhlIHZlcnNpb24gb2YgdGhlIE9wZW5BUEkgZG9jdW1lbnQ6IDQuMi43XG4gKiBDb250YWN0OiBnZW9uZXR3b3JrLXVzZXJzQGxpc3RzLnNvdXJjZWZvcmdlLm5ldFxuICpcbiAqIE5PVEU6IFRoaXMgY2xhc3MgaXMgYXV0byBnZW5lcmF0ZWQgYnkgT3BlbkFQSSBHZW5lcmF0b3IgKGh0dHBzOi8vb3BlbmFwaS1nZW5lcmF0b3IudGVjaCkuXG4gKiBodHRwczovL29wZW5hcGktZ2VuZXJhdG9yLnRlY2hcbiAqIERvIG5vdCBlZGl0IHRoZSBjbGFzcyBtYW51YWxseS5cbiAqL1xuXG5leHBvcnQgaW50ZXJmYWNlIElubGluZU9iamVjdDNBcGlNb2RlbCB7XG4gIC8qKlxuICAgKiBUaGUgZmlsZSB0byB1cGxvYWRcbiAgICovXG4gIGZpbGU6IEJsb2Jcbn1cbiJdfQ==
@@ -1,30 +0,0 @@
1
- import { CommonModule } from '@angular/common';
2
- import { ChangeDetectionStrategy, Component } from '@angular/core';
3
- import { UiInputsModule } from '../../../../../../libs/ui/inputs/src';
4
- import { EditorFacade } from '../+state/editor.facade';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "../+state/editor.facade";
7
- import * as i2 from "@angular/common";
8
- import * as i3 from "../../../../../ui/inputs/src/lib/form-field/form-field.component";
9
- export class RecordFormComponent {
10
- constructor(facade) {
11
- this.facade = facade;
12
- this.fields$ = this.facade.recordFields$;
13
- }
14
- handleFieldValueChange(field, newValue) {
15
- if (!field.config.model) {
16
- return;
17
- }
18
- this.facade.updateRecordField(field.config.model, newValue);
19
- }
20
- fieldTracker(index, field) {
21
- return field.config.model;
22
- }
23
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RecordFormComponent, deps: [{ token: i1.EditorFacade }], target: i0.ɵɵFactoryTarget.Component }); }
24
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: RecordFormComponent, isStandalone: true, selector: "gn-ui-record-form", ngImport: i0, template: "<div class=\"flex flex-col gap-6 p-6\">\n <ng-container *ngFor=\"let field of fields$ | async; trackBy: fieldTracker\">\n <gn-ui-form-field\n *ngIf=\"field.config.formFieldConfig && !field.config.hidden\"\n [config]=\"field.config.formFieldConfig\"\n [value]=\"field.value\"\n (valueChange)=\"handleFieldValueChange(field, $event)\"\n ></gn-ui-form-field>\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: UiInputsModule }, { kind: "component", type: i3.FormFieldComponent, selector: "gn-ui-form-field", inputs: ["config", "value"], outputs: ["valueChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
25
- }
26
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: RecordFormComponent, decorators: [{
27
- type: Component,
28
- args: [{ selector: 'gn-ui-record-form', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [CommonModule, UiInputsModule], template: "<div class=\"flex flex-col gap-6 p-6\">\n <ng-container *ngFor=\"let field of fields$ | async; trackBy: fieldTracker\">\n <gn-ui-form-field\n *ngIf=\"field.config.formFieldConfig && !field.config.hidden\"\n [config]=\"field.config.formFieldConfig\"\n [value]=\"field.value\"\n (valueChange)=\"handleFieldValueChange(field, $event)\"\n ></gn-ui-form-field>\n </ng-container>\n</div>\n" }]
29
- }], ctorParameters: function () { return [{ type: i1.EditorFacade }]; } });
30
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjb3JkLWZvcm0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL3JlY29yZC1mb3JtL3JlY29yZC1mb3JtLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9yZWNvcmQtZm9ybS9yZWNvcmQtZm9ybS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUE7QUFDOUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUNsRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sc0NBQXNDLENBQUE7QUFDckUsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLHlCQUF5QixDQUFBOzs7OztBQVd0RCxNQUFNLE9BQU8sbUJBQW1CO0lBRzlCLFlBQW1CLE1BQW9CO1FBQXBCLFdBQU0sR0FBTixNQUFNLENBQWM7UUFGdkMsWUFBTyxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsYUFBYSxDQUFBO0lBRU8sQ0FBQztJQUUzQyxzQkFBc0IsQ0FBQyxLQUF1QixFQUFFLFFBQTBCO1FBQ3hFLElBQUksQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLEtBQUssRUFBRTtZQUN2QixPQUFNO1NBQ1A7UUFDRCxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsS0FBSyxFQUFFLFFBQVEsQ0FBQyxDQUFBO0lBQzdELENBQUM7SUFFRCxZQUFZLENBQUMsS0FBYSxFQUFFLEtBQXVCO1FBQ2pELE9BQU8sS0FBSyxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUE7SUFDM0IsQ0FBQzs4R0FkVSxtQkFBbUI7a0dBQW5CLG1CQUFtQiw2RUNkaEMsNlpBVUEseURERVksWUFBWSxvVEFBRSxjQUFjOzsyRkFFM0IsbUJBQW1CO2tCQVIvQixTQUFTOytCQUNFLG1CQUFtQixtQkFHWix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUCxDQUFDLFlBQVksRUFBRSxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nXG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IFVpSW5wdXRzTW9kdWxlIH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjJ1xuaW1wb3J0IHsgRWRpdG9yRmFjYWRlIH0gZnJvbSAnLi4vK3N0YXRlL2VkaXRvci5mYWNhZGUnXG5pbXBvcnQgeyBFZGl0b3JGaWVsZFN0YXRlLCBFZGl0b3JGaWVsZFZhbHVlIH0gZnJvbSAnLi4vbW9kZWxzL2ZpZWxkcy5tb2RlbCdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktcmVjb3JkLWZvcm0nLFxuICB0ZW1wbGF0ZVVybDogJy4vcmVjb3JkLWZvcm0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9yZWNvcmQtZm9ybS5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBVaUlucHV0c01vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIFJlY29yZEZvcm1Db21wb25lbnQge1xuICBmaWVsZHMkID0gdGhpcy5mYWNhZGUucmVjb3JkRmllbGRzJFxuXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyBmYWNhZGU6IEVkaXRvckZhY2FkZSkge31cblxuICBoYW5kbGVGaWVsZFZhbHVlQ2hhbmdlKGZpZWxkOiBFZGl0b3JGaWVsZFN0YXRlLCBuZXdWYWx1ZTogRWRpdG9yRmllbGRWYWx1ZSkge1xuICAgIGlmICghZmllbGQuY29uZmlnLm1vZGVsKSB7XG4gICAgICByZXR1cm5cbiAgICB9XG4gICAgdGhpcy5mYWNhZGUudXBkYXRlUmVjb3JkRmllbGQoZmllbGQuY29uZmlnLm1vZGVsLCBuZXdWYWx1ZSlcbiAgfVxuXG4gIGZpZWxkVHJhY2tlcihpbmRleDogbnVtYmVyLCBmaWVsZDogRWRpdG9yRmllbGRTdGF0ZSkge1xuICAgIHJldHVybiBmaWVsZC5jb25maWcubW9kZWxcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImZsZXggZmxleC1jb2wgZ2FwLTYgcC02XCI+XG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGZpZWxkIG9mIGZpZWxkcyQgfCBhc3luYzsgdHJhY2tCeTogZmllbGRUcmFja2VyXCI+XG4gICAgPGduLXVpLWZvcm0tZmllbGRcbiAgICAgICpuZ0lmPVwiZmllbGQuY29uZmlnLmZvcm1GaWVsZENvbmZpZyAmJiAhZmllbGQuY29uZmlnLmhpZGRlblwiXG4gICAgICBbY29uZmlnXT1cImZpZWxkLmNvbmZpZy5mb3JtRmllbGRDb25maWdcIlxuICAgICAgW3ZhbHVlXT1cImZpZWxkLnZhbHVlXCJcbiAgICAgICh2YWx1ZUNoYW5nZSk9XCJoYW5kbGVGaWVsZFZhbHVlQ2hhbmdlKGZpZWxkLCAkZXZlbnQpXCJcbiAgICA+PC9nbi11aS1mb3JtLWZpZWxkPlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19
@@ -1,29 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "@angular/material/icon";
5
- import * as i3 from "@ngx-translate/core";
6
- export var ErrorType;
7
- (function (ErrorType) {
8
- ErrorType[ErrorType["COULD_NOT_REACH_API"] = 0] = "COULD_NOT_REACH_API";
9
- ErrorType[ErrorType["RECEIVED_ERROR"] = 1] = "RECEIVED_ERROR";
10
- ErrorType[ErrorType["RECORD_NOT_FOUND"] = 2] = "RECORD_NOT_FOUND";
11
- })(ErrorType || (ErrorType = {}));
12
- export class SearchResultsErrorComponent {
13
- constructor() {
14
- this.types = ErrorType;
15
- }
16
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SearchResultsErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
17
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: SearchResultsErrorComponent, selector: "gn-ui-search-results-error", inputs: { type: "type", error: "error", recordId: "recordId" }, ngImport: i0, template: "<div\n class=\"p-[1.7em] bg-red-50 text-red-800 text-[1.5em] text-center rounded-lg\"\n>\n <div *ngIf=\"type === types.COULD_NOT_REACH_API\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">face</mat-icon>\n <mat-icon class=\"material-symbols-outlined question-mark1\"\n >question_mark</mat-icon\n >\n <mat-icon class=\"material-symbols-outlined question-mark2\"\n >question_mark</mat-icon\n >\n </div>\n <div translate>search.error.couldNotReachApi</div>\n </div>\n <div *ngIf=\"type === types.RECEIVED_ERROR\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">mood_bad</mat-icon>\n </div>\n <div translate>search.error.receivedError</div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n <div *ngIf=\"type === types.RECORD_NOT_FOUND\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined computer\">computer</mat-icon>\n <mat-icon class=\"material-symbols-outlined computer-question-mark\"\n >question_mark</mat-icon\n >\n </div>\n <div translate [translateParams]=\"{ id: recordId }\">\n search.error.recordNotFound\n </div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n</div>\n", styles: ["mat-icon{width:auto;height:auto}mat-icon.face{font-size:3em}mat-icon.question-mark1{position:absolute;bottom:1.1em;left:calc(50% + .7em);font-size:1.7em}mat-icon.question-mark2{position:absolute;bottom:1.6em;left:calc(50% + 1.6em);font-size:1.4em}.computer{font-size:3em}.computer-question-mark{position:absolute;top:.6em;left:calc(50% - .5em);font-size:1.2em}\n"], dependencies: [{ 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.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
18
- }
19
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: SearchResultsErrorComponent, decorators: [{
20
- type: Component,
21
- args: [{ selector: 'gn-ui-search-results-error', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n class=\"p-[1.7em] bg-red-50 text-red-800 text-[1.5em] text-center rounded-lg\"\n>\n <div *ngIf=\"type === types.COULD_NOT_REACH_API\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">face</mat-icon>\n <mat-icon class=\"material-symbols-outlined question-mark1\"\n >question_mark</mat-icon\n >\n <mat-icon class=\"material-symbols-outlined question-mark2\"\n >question_mark</mat-icon\n >\n </div>\n <div translate>search.error.couldNotReachApi</div>\n </div>\n <div *ngIf=\"type === types.RECEIVED_ERROR\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined face\">mood_bad</mat-icon>\n </div>\n <div translate>search.error.receivedError</div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n <div *ngIf=\"type === types.RECORD_NOT_FOUND\">\n <div class=\"relative opacity-40\">\n <mat-icon class=\"material-symbols-outlined computer\">computer</mat-icon>\n <mat-icon class=\"material-symbols-outlined computer-question-mark\"\n >question_mark</mat-icon\n >\n </div>\n <div translate [translateParams]=\"{ id: recordId }\">\n search.error.recordNotFound\n </div>\n <div *ngIf=\"error\">{{ error }}</div>\n </div>\n</div>\n", styles: ["mat-icon{width:auto;height:auto}mat-icon.face{font-size:3em}mat-icon.question-mark1{position:absolute;bottom:1.1em;left:calc(50% + .7em);font-size:1.7em}mat-icon.question-mark2{position:absolute;bottom:1.6em;left:calc(50% + 1.6em);font-size:1.4em}.computer{font-size:3em}.computer-question-mark{position:absolute;top:.6em;left:calc(50% - .5em);font-size:1.2em}\n"] }]
22
- }], propDecorators: { type: [{
23
- type: Input
24
- }], error: [{
25
- type: Input
26
- }], recordId: [{
27
- type: Input
28
- }] } });
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLXJlc3VsdHMtZXJyb3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9lbGVtZW50cy9zcmMvbGliL3NlYXJjaC1yZXN1bHRzLWVycm9yL3NlYXJjaC1yZXN1bHRzLWVycm9yLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9zZWFyY2gtcmVzdWx0cy1lcnJvci9zZWFyY2gtcmVzdWx0cy1lcnJvci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTs7Ozs7QUFFekUsTUFBTSxDQUFOLElBQVksU0FJWDtBQUpELFdBQVksU0FBUztJQUNuQix1RUFBbUIsQ0FBQTtJQUNuQiw2REFBYyxDQUFBO0lBQ2QsaUVBQWdCLENBQUE7QUFDbEIsQ0FBQyxFQUpXLFNBQVMsS0FBVCxTQUFTLFFBSXBCO0FBUUQsTUFBTSxPQUFPLDJCQUEyQjtJQU54QztRQVVFLFVBQUssR0FBRyxTQUFTLENBQUE7S0FDbEI7OEdBTFksMkJBQTJCO2tHQUEzQiwyQkFBMkIsa0lDZHhDLDJ5Q0FtQ0E7OzJGRHJCYSwyQkFBMkI7a0JBTnZDLFNBQVM7K0JBQ0UsNEJBQTRCLG1CQUdyQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxJQUFJO3NCQUFaLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbmV4cG9ydCBlbnVtIEVycm9yVHlwZSB7XG4gIENPVUxEX05PVF9SRUFDSF9BUEksXG4gIFJFQ0VJVkVEX0VSUk9SLFxuICBSRUNPUkRfTk9UX0ZPVU5ELFxufVxuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1zZWFyY2gtcmVzdWx0cy1lcnJvcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9zZWFyY2gtcmVzdWx0cy1lcnJvci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1yZXN1bHRzLWVycm9yLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaFJlc3VsdHNFcnJvckNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHR5cGUhOiBFcnJvclR5cGVcbiAgQElucHV0KCkgZXJyb3I/OiBzdHJpbmdcbiAgQElucHV0KCkgcmVjb3JkSWQ/OiBzdHJpbmdcbiAgdHlwZXMgPSBFcnJvclR5cGVcbn1cbiIsIjxkaXZcbiAgY2xhc3M9XCJwLVsxLjdlbV0gYmctcmVkLTUwIHRleHQtcmVkLTgwMCB0ZXh0LVsxLjVlbV0gdGV4dC1jZW50ZXIgcm91bmRlZC1sZ1wiXG4+XG4gIDxkaXYgKm5nSWY9XCJ0eXBlID09PSB0eXBlcy5DT1VMRF9OT1RfUkVBQ0hfQVBJXCI+XG4gICAgPGRpdiBjbGFzcz1cInJlbGF0aXZlIG9wYWNpdHktNDBcIj5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgZmFjZVwiPmZhY2U8L21hdC1pY29uPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBxdWVzdGlvbi1tYXJrMVwiXG4gICAgICAgID5xdWVzdGlvbl9tYXJrPC9tYXQtaWNvblxuICAgICAgPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBxdWVzdGlvbi1tYXJrMlwiXG4gICAgICAgID5xdWVzdGlvbl9tYXJrPC9tYXQtaWNvblxuICAgICAgPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgdHJhbnNsYXRlPnNlYXJjaC5lcnJvci5jb3VsZE5vdFJlYWNoQXBpPC9kaXY+XG4gIDwvZGl2PlxuICA8ZGl2ICpuZ0lmPVwidHlwZSA9PT0gdHlwZXMuUkVDRUlWRURfRVJST1JcIj5cbiAgICA8ZGl2IGNsYXNzPVwicmVsYXRpdmUgb3BhY2l0eS00MFwiPlxuICAgICAgPG1hdC1pY29uIGNsYXNzPVwibWF0ZXJpYWwtc3ltYm9scy1vdXRsaW5lZCBmYWNlXCI+bW9vZF9iYWQ8L21hdC1pY29uPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgdHJhbnNsYXRlPnNlYXJjaC5lcnJvci5yZWNlaXZlZEVycm9yPC9kaXY+XG4gICAgPGRpdiAqbmdJZj1cImVycm9yXCI+e3sgZXJyb3IgfX08L2Rpdj5cbiAgPC9kaXY+XG4gIDxkaXYgKm5nSWY9XCJ0eXBlID09PSB0eXBlcy5SRUNPUkRfTk9UX0ZPVU5EXCI+XG4gICAgPGRpdiBjbGFzcz1cInJlbGF0aXZlIG9wYWNpdHktNDBcIj5cbiAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgY29tcHV0ZXJcIj5jb21wdXRlcjwvbWF0LWljb24+XG4gICAgICA8bWF0LWljb24gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGNvbXB1dGVyLXF1ZXN0aW9uLW1hcmtcIlxuICAgICAgICA+cXVlc3Rpb25fbWFyazwvbWF0LWljb25cbiAgICAgID5cbiAgICA8L2Rpdj5cbiAgICA8ZGl2IHRyYW5zbGF0ZSBbdHJhbnNsYXRlUGFyYW1zXT1cInsgaWQ6IHJlY29yZElkIH1cIj5cbiAgICAgIHNlYXJjaC5lcnJvci5yZWNvcmROb3RGb3VuZFxuICAgIDwvZGl2PlxuICAgIDxkaXYgKm5nSWY9XCJlcnJvclwiPnt7IGVycm9yIH19PC9kaXY+XG4gIDwvZGl2PlxuPC9kaXY+XG4iXX0=
@@ -1,11 +0,0 @@
1
- import { ChangeDetectionStrategy, Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FormFieldArrayComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldArrayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldArrayComponent, selector: "gn-ui-form-field-array", ngImport: i0, template: "<p>form-field-array works!</p>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldArrayComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'gn-ui-form-field-array', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p>form-field-array works!</p>\n" }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1hcnJheS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2Zvcm0tZmllbGQvZm9ybS1maWVsZC1hcnJheS9mb3JtLWZpZWxkLWFycmF5LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLWFycmF5L2Zvcm0tZmllbGQtYXJyYXkuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQTs7QUFRbEUsTUFBTSxPQUFPLHVCQUF1Qjs4R0FBdkIsdUJBQXVCO2tHQUF2Qix1QkFBdUIsOERDUnBDLGtDQUNBOzsyRkRPYSx1QkFBdUI7a0JBTm5DLFNBQVM7K0JBQ0Usd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtYXJyYXknLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC1hcnJheS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Zvcm0tZmllbGQtYXJyYXkuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRm9ybUZpZWxkQXJyYXlDb21wb25lbnQge31cbiIsIjxwPmZvcm0tZmllbGQtYXJyYXkgd29ya3MhPC9wPlxuIl19
@@ -1,27 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "@angular/common";
5
- import * as i2 from "@angular/forms";
6
- export class FormFieldFileComponent {
7
- constructor() {
8
- this.readonly = false;
9
- this.invalid = false;
10
- this.placeholder = '';
11
- }
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldFileComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldFileComponent, selector: "gn-ui-form-field-file", inputs: { control: "control", readonly: "readonly", invalid: "invalid", placeholder: "placeholder" }, ngImport: i0, template: "<input\n type=\"file\"\n [readonly]=\"readonly\"\n [formControl]=\"control\"\n [placeholder]=\"placeholder\"\n class=\"border rounded-md p-3 w-full bg-white transition-colors\"\n [ngClass]=\"{\n 'border-pink-500': invalid,\n 'border-gray-200': !invalid,\n 'text-gray-600': readonly\n }\"\n/>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14
- }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldFileComponent, decorators: [{
16
- type: Component,
17
- args: [{ selector: 'gn-ui-form-field-file', changeDetection: ChangeDetectionStrategy.OnPush, template: "<input\n type=\"file\"\n [readonly]=\"readonly\"\n [formControl]=\"control\"\n [placeholder]=\"placeholder\"\n class=\"border rounded-md p-3 w-full bg-white transition-colors\"\n [ngClass]=\"{\n 'border-pink-500': invalid,\n 'border-gray-200': !invalid,\n 'text-gray-600': readonly\n }\"\n/>\n" }]
18
- }], propDecorators: { control: [{
19
- type: Input
20
- }], readonly: [{
21
- type: Input
22
- }], invalid: [{
23
- type: Input
24
- }], placeholder: [{
25
- type: Input
26
- }] } });
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1maWxlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLWZpbGUvZm9ybS1maWVsZC1maWxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLWZpbGUvZm9ybS1maWVsZC1maWxlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3pFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTs7OztBQVE1QyxNQUFNLE9BQU8sc0JBQXNCO0lBTm5DO1FBUVcsYUFBUSxHQUFHLEtBQUssQ0FBQTtRQUNoQixZQUFPLEdBQUcsS0FBSyxDQUFBO1FBQ2YsZ0JBQVcsR0FBRyxFQUFFLENBQUE7S0FDMUI7OEdBTFksc0JBQXNCO2tHQUF0QixzQkFBc0IsbUtDVG5DLHVUQVlBOzsyRkRIYSxzQkFBc0I7a0JBTmxDLFNBQVM7K0JBQ0UsdUJBQXVCLG1CQUdoQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtZmlsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLWZpbGUuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLWZpbGUuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRm9ybUZpZWxkRmlsZUNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGNvbnRyb2whOiBGb3JtQ29udHJvbFxuICBASW5wdXQoKSByZWFkb25seSA9IGZhbHNlXG4gIEBJbnB1dCgpIGludmFsaWQgPSBmYWxzZVxuICBASW5wdXQoKSBwbGFjZWhvbGRlciA9ICcnXG59XG4iLCI8aW5wdXRcbiAgdHlwZT1cImZpbGVcIlxuICBbcmVhZG9ubHldPVwicmVhZG9ubHlcIlxuICBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiXG4gIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXG4gIGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbWQgcC0zIHctZnVsbCBiZy13aGl0ZSB0cmFuc2l0aW9uLWNvbG9yc1wiXG4gIFtuZ0NsYXNzXT1cIntcbiAgICAnYm9yZGVyLXBpbmstNTAwJzogaW52YWxpZCxcbiAgICAnYm9yZGVyLWdyYXktMjAwJzogIWludmFsaWQsXG4gICAgJ3RleHQtZ3JheS02MDAnOiByZWFkb25seVxuICB9XCJcbi8+XG4iXX0=
@@ -1,11 +0,0 @@
1
- import { ChangeDetectionStrategy, Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FormFieldObjectComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldObjectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldObjectComponent, selector: "gn-ui-form-field-object", ngImport: i0, template: "<p>form-field-object works!</p>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldObjectComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'gn-ui-form-field-object', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p>form-field-object works!</p>\n" }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1vYmplY3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtb2JqZWN0L2Zvcm0tZmllbGQtb2JqZWN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLW9iamVjdC9mb3JtLWZpZWxkLW9iamVjdC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFBOztBQVFsRSxNQUFNLE9BQU8sd0JBQXdCOzhHQUF4Qix3QkFBd0I7a0dBQXhCLHdCQUF3QiwrRENSckMsbUNBQ0E7OzJGRE9hLHdCQUF3QjtrQkFOcEMsU0FBUzsrQkFDRSx5QkFBeUIsbUJBR2xCLHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZm9ybS1maWVsZC1vYmplY3QnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC1vYmplY3QuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLW9iamVjdC5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRPYmplY3RDb21wb25lbnQge31cbiIsIjxwPmZvcm0tZmllbGQtb2JqZWN0IHdvcmtzITwvcD5cbiJdfQ==
@@ -1,27 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import * as i0 from "@angular/core";
4
- import * as i1 from "@angular/common";
5
- import * as i2 from "@angular/forms";
6
- export class FormFieldRichComponent {
7
- constructor() {
8
- this.readonly = false;
9
- this.invalid = false;
10
- this.placeholder = '';
11
- }
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldRichComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
13
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldRichComponent, selector: "gn-ui-form-field-rich", inputs: { control: "control", readonly: "readonly", invalid: "invalid", placeholder: "placeholder" }, ngImport: i0, template: "<textarea\n [readonly]=\"readonly\"\n [formControl]=\"control\"\n [placeholder]=\"placeholder\"\n class=\"border rounded-md p-3 w-full bg-white h-full resize-none transition-colors\"\n [ngClass]=\"{\n 'border-pink-500': invalid,\n 'border-gray-200': !invalid,\n 'text-gray-600': readonly\n }\"\n></textarea>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
14
- }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldRichComponent, decorators: [{
16
- type: Component,
17
- args: [{ selector: 'gn-ui-form-field-rich', changeDetection: ChangeDetectionStrategy.OnPush, template: "<textarea\n [readonly]=\"readonly\"\n [formControl]=\"control\"\n [placeholder]=\"placeholder\"\n class=\"border rounded-md p-3 w-full bg-white h-full resize-none transition-colors\"\n [ngClass]=\"{\n 'border-pink-500': invalid,\n 'border-gray-200': !invalid,\n 'text-gray-600': readonly\n }\"\n></textarea>\n" }]
18
- }], propDecorators: { control: [{
19
- type: Input
20
- }], readonly: [{
21
- type: Input
22
- }], invalid: [{
23
- type: Input
24
- }], placeholder: [{
25
- type: Input
26
- }] } });
27
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1yaWNoLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLXJpY2gvZm9ybS1maWVsZC1yaWNoLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLXJpY2gvZm9ybS1maWVsZC1yaWNoLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFBO0FBQ3pFLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQTs7OztBQVE1QyxNQUFNLE9BQU8sc0JBQXNCO0lBTm5DO1FBUVcsYUFBUSxHQUFHLEtBQUssQ0FBQTtRQUNoQixZQUFPLEdBQUcsS0FBSyxDQUFBO1FBQ2YsZ0JBQVcsR0FBRyxFQUFFLENBQUE7S0FDMUI7OEdBTFksc0JBQXNCO2tHQUF0QixzQkFBc0IsbUtDVG5DLHNVQVdBOzsyRkRGYSxzQkFBc0I7a0JBTmxDLFNBQVM7K0JBQ0UsdUJBQXVCLG1CQUdoQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUd0QyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtcmljaCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXJpY2guY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXJpY2guY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRm9ybUZpZWxkUmljaENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGNvbnRyb2whOiBGb3JtQ29udHJvbFxuICBASW5wdXQoKSByZWFkb25seSA9IGZhbHNlXG4gIEBJbnB1dCgpIGludmFsaWQgPSBmYWxzZVxuICBASW5wdXQoKSBwbGFjZWhvbGRlciA9ICcnXG59XG4iLCI8dGV4dGFyZWFcbiAgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCJcbiAgW2Zvcm1Db250cm9sXT1cImNvbnRyb2xcIlxuICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICBjbGFzcz1cImJvcmRlciByb3VuZGVkLW1kIHAtMyB3LWZ1bGwgYmctd2hpdGUgaC1mdWxsIHJlc2l6ZS1ub25lIHRyYW5zaXRpb24tY29sb3JzXCJcbiAgW25nQ2xhc3NdPVwie1xuICAgICdib3JkZXItcGluay01MDAnOiBpbnZhbGlkLFxuICAgICdib3JkZXItZ3JheS0yMDAnOiAhaW52YWxpZCxcbiAgICAndGV4dC1ncmF5LTYwMCc6IHJlYWRvbmx5XG4gIH1cIlxuPjwvdGV4dGFyZWE+XG4iXX0=