geonetwork-ui 2.3.0-dev.376e0e90 → 2.3.0-dev.3efe236f

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 (361) 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/repository/src/lib/gn4/auth/avatar.service.interface.mjs +1 -1
  4. package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +12 -1
  5. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +36 -3
  6. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +19 -7
  7. package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
  8. package/esm2022/libs/common/domain/src/lib/model/record/user-feedbacks.model.mjs +2 -0
  9. package/esm2022/libs/common/domain/src/lib/model/user/index.mjs +2 -0
  10. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  11. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +35 -7
  12. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +1 -2
  13. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +2 -2
  14. package/esm2022/libs/feature/editor/src/index.mjs +2 -2
  15. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  16. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
  17. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
  18. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +107 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  28. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  29. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  30. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +6 -2
  31. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  32. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +72 -0
  33. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  34. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  35. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -3
  36. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +12 -7
  37. package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +2 -1
  38. package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +52 -25
  39. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +12 -49
  40. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  41. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  42. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  43. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  44. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  45. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
  46. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +6 -2
  47. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
  48. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
  49. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
  50. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +52 -17
  51. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
  52. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  53. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  54. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  55. package/esm2022/libs/ui/elements/src/index.mjs +15 -15
  56. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
  57. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  58. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  59. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  60. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +3 -3
  61. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
  62. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +14 -5
  63. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
  64. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +62 -0
  65. package/esm2022/libs/ui/inputs/src/index.mjs +1 -2
  66. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
  67. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
  68. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
  69. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
  70. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +19 -3
  71. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +10 -23
  72. package/esm2022/libs/ui/layout/src/index.mjs +6 -5
  73. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  74. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
  75. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
  76. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
  77. package/esm2022/translations/de.json +35 -0
  78. package/esm2022/translations/en.json +35 -0
  79. package/esm2022/translations/es.json +35 -0
  80. package/esm2022/translations/fr.json +35 -0
  81. package/esm2022/translations/it.json +35 -0
  82. package/esm2022/translations/nl.json +35 -0
  83. package/esm2022/translations/pt.json +35 -0
  84. package/fesm2022/geonetwork-ui.mjs +3988 -2856
  85. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  86. package/index.d.ts +1 -0
  87. package/index.d.ts.map +1 -1
  88. package/index.ts +1 -0
  89. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  90. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
  91. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  92. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
  93. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  94. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
  95. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  96. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
  97. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  98. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  99. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  100. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
  101. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
  102. package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
  103. package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
  104. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
  105. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  106. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
  107. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  108. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
  109. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  110. package/libs/feature/editor/src/index.d.ts +1 -1
  111. package/libs/feature/editor/src/index.d.ts.map +1 -1
  112. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  113. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  114. 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
  115. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  116. 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
  117. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  118. 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
  119. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  120. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  121. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  122. 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
  123. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  124. 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
  125. 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
  126. 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
  127. 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
  128. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +9 -4
  129. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  130. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  131. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  132. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  133. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  134. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  135. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  136. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  137. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  138. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +23 -0
  139. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -0
  140. package/libs/feature/map/src/lib/feature-map.module.d.ts +2 -1
  141. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  142. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +2 -0
  143. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  144. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +10 -5
  145. package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -1
  146. package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -1
  147. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +2 -3
  148. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  149. package/libs/feature/notifications/src/index.d.ts +4 -0
  150. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  151. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  152. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  153. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  154. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  155. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  156. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  157. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  158. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  159. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  160. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  161. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
  162. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  163. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
  164. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  165. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
  166. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  167. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
  168. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  169. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
  170. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  171. package/libs/ui/elements/src/index.d.ts +14 -14
  172. package/libs/ui/elements/src/index.d.ts.map +1 -1
  173. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  174. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  175. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  176. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  177. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
  178. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  179. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +10 -8
  180. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  181. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
  182. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
  183. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +22 -0
  184. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
  185. package/libs/ui/inputs/src/index.d.ts +0 -1
  186. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  187. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  188. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
  189. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
  190. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
  191. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
  192. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
  193. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  194. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +4 -1
  195. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  196. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +26 -33
  197. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  198. package/libs/ui/layout/src/index.d.ts +5 -4
  199. package/libs/ui/layout/src/index.d.ts.map +1 -1
  200. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  201. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  202. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
  203. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
  204. package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
  205. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
  206. package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
  207. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  208. package/package.json +2 -2
  209. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
  210. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
  211. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
  212. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
  213. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +34 -7
  214. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  215. package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
  216. package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
  217. package/src/libs/common/fixtures/src/index.ts +8 -6
  218. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +1 -1
  219. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
  220. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
  221. package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
  222. package/src/libs/data-access/gn4/src/spec.yaml +1 -1
  223. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +1 -1
  224. package/src/libs/feature/editor/src/index.ts +1 -1
  225. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  226. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
  227. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
  228. 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
  229. 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
  230. 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
  231. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  232. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  233. 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
  234. 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
  235. 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
  236. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.html +28 -4
  237. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +121 -0
  238. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
  239. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  240. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
  241. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  242. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  243. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +5 -1
  244. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  245. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.css +0 -0
  246. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +36 -0
  247. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +80 -0
  248. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -0
  249. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +8 -0
  250. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +5 -0
  251. package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +10 -3
  252. package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +60 -32
  253. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +17 -61
  254. package/src/libs/feature/notifications/src/index.ts +3 -0
  255. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  256. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  257. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  258. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  259. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  260. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  261. package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
  262. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +5 -1
  263. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
  264. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
  265. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +49 -8
  266. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +81 -24
  267. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
  268. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  269. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  270. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  271. package/src/libs/ui/elements/src/index.ts +14 -14
  272. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  273. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  274. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  275. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  276. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  277. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  278. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  279. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  280. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
  281. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -1
  282. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
  283. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
  284. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
  285. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +63 -0
  286. package/src/libs/ui/inputs/src/index.ts +0 -1
  287. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
  288. package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
  289. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
  290. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
  291. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
  292. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  293. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
  294. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +1 -1
  295. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +16 -1
  296. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +3 -19
  297. package/src/libs/ui/layout/src/index.ts +5 -4
  298. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
  299. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  300. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  301. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
  302. package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
  303. package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
  304. package/tailwind.base.css +36 -0
  305. package/translations/de.json +35 -0
  306. package/translations/en.json +35 -0
  307. package/translations/es.json +35 -0
  308. package/translations/fr.json +35 -0
  309. package/translations/it.json +35 -0
  310. package/translations/nl.json +35 -0
  311. package/translations/pt.json +35 -0
  312. package/translations/sk.json +35 -0
  313. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
  314. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  315. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  316. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  317. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  318. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  319. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  320. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  321. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  322. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  323. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  324. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  325. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
  326. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
  327. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  328. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  329. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  330. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  331. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  332. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  333. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  334. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  335. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  336. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  337. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  338. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  339. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
  340. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  341. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  342. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
  343. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  344. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  345. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -0
  346. /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
  347. /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
  348. /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
  349. /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
  350. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-object/form-field-object.component.css +0 -0
  351. /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
  352. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-rich/form-field-rich.component.css +0 -0
  353. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field-simple/form-field-simple.component.css +0 -0
  354. /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
  355. /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.css +0 -0
  356. /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
  357. /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.css +0 -0
  358. /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
  359. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.css +0 -0
  360. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  361. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
@@ -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,15 @@
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.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "Layer del datahub",
150
159
  "facets.block.title.OrgForResource": "Organizzazione",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Tag",
160
169
  "facets.block.title.th_regions_tree.default": "Regioni",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalano",
163
182
  "language.cs": "Ceco",
164
183
  "language.de": "Tedesco",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Aggiungere un layer",
178
197
  "map.add.layer.catalog": "Dal catalogo",
179
198
  "map.add.layer.file": "Da un file",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "Da un WFS",
181
201
  "map.add.layer.wms": "Da un WMS",
182
202
  "map.addFromFile.placeholder": "Clicca o trascina un file qui",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Caricamento dati...",
189
209
  "map.loading.service": "Caricamento del servizio...",
190
210
  "map.navigation.message": "Si prega di utilizzare CTRL + mouse (o due dita su mobile) per navigare sulla mappa",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "Sorgente dati",
192
213
  "map.wfs.urlInput.hint": "Inserisci URL del servizio WFS",
193
214
  "map.wms.urlInput.hint": "Inserisci URL del servizio WMS",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "La frequenza di aggiornamento non è specificata",
259
280
  "record.metadata.quality.updateFrequency.success": "La frequenza di aggiornamento è specificata",
260
281
  "record.metadata.related": "Vedi anche",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "Origine del metadata",
262
291
  "record.metadata.status": "Stato",
263
292
  "record.metadata.technical": "Informazioni tecniche",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Caricamento dei dati...",
332
361
  "table.object.count": "record in questi dati",
333
362
  "table.select.data": "Sorgente dati",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "Copiare il HTML",
335
370
  "tooltip.id.copy": "Copiare l'identificatore unico",
336
371
  "tooltip.url.copy": "Copiare l'URL",
@@ -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,15 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "",
150
159
  "facets.block.title.OrgForResource": "",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "",
160
169
  "facets.block.title.th_regions_tree.default": "",
161
170
  "favorite.not.authenticated.tooltip": "",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalaans",
163
182
  "language.cs": "Tsjechisch",
164
183
  "language.de": "Duits",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "",
178
197
  "map.add.layer.catalog": "",
179
198
  "map.add.layer.file": "",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "",
181
201
  "map.add.layer.wms": "",
182
202
  "map.addFromFile.placeholder": "",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "",
189
209
  "map.loading.service": "",
190
210
  "map.navigation.message": "",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "",
192
213
  "map.wfs.urlInput.hint": "",
193
214
  "map.wms.urlInput.hint": "",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "",
259
280
  "record.metadata.quality.updateFrequency.success": "",
260
281
  "record.metadata.related": "",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "",
262
291
  "record.metadata.status": "",
263
292
  "record.metadata.technical": "",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "",
332
361
  "table.object.count": "",
333
362
  "table.select.data": "",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "",
335
370
  "tooltip.id.copy": "",
336
371
  "tooltip.url.copy": "",
@@ -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,15 @@
144
145
  "downloads.format.unknown": "",
145
146
  "downloads.wfs.featuretype.not.found": "",
146
147
  "dropFile": "",
148
+ "editor.record.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "",
150
159
  "facets.block.title.OrgForResource": "",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "",
160
169
  "facets.block.title.th_regions_tree.default": "",
161
170
  "favorite.not.authenticated.tooltip": "",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalão",
163
182
  "language.cs": "Tcheco",
164
183
  "language.de": "Alemão",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "",
178
197
  "map.add.layer.catalog": "",
179
198
  "map.add.layer.file": "",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "",
181
201
  "map.add.layer.wms": "",
182
202
  "map.addFromFile.placeholder": "",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "",
189
209
  "map.loading.service": "",
190
210
  "map.navigation.message": "",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "",
192
213
  "map.wfs.urlInput.hint": "",
193
214
  "map.wms.urlInput.hint": "",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "",
259
280
  "record.metadata.quality.updateFrequency.success": "",
260
281
  "record.metadata.related": "",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "",
262
291
  "record.metadata.status": "",
263
292
  "record.metadata.technical": "",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "",
332
361
  "table.object.count": "",
333
362
  "table.select.data": "",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "",
335
370
  "tooltip.id.copy": "",
336
371
  "tooltip.url.copy": "",
@@ -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,15 @@
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.loadError.body": "",
149
+ "editor.record.loadError.closeMessage": "",
150
+ "editor.record.loadError.title": "",
147
151
  "editor.record.publish": "",
152
+ "editor.record.publishError.body": "",
153
+ "editor.record.publishError.closeMessage": "",
154
+ "editor.record.publishError.title": "",
155
+ "editor.record.publishSuccess.body": "",
156
+ "editor.record.publishSuccess.title": "",
148
157
  "editor.record.upToDate": "",
149
158
  "externalviewer.dataset.unnamed": "",
150
159
  "facets.block.title.OrgForResource": "Organizácia",
@@ -159,6 +168,16 @@
159
168
  "facets.block.title.tag.default": "Štítok",
160
169
  "facets.block.title.th_regions_tree.default": "Regióny",
161
170
  "favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
171
+ "input.image.altTextPlaceholder": "",
172
+ "input.image.delete": "",
173
+ "input.image.displayAltTextInput": "",
174
+ "input.image.displayUrlInput": "",
175
+ "input.image.dropFileLabel": "",
176
+ "input.image.selectFileLabel": "",
177
+ "input.image.uploadErrorLabel": "",
178
+ "input.image.uploadErrorRetry": "",
179
+ "input.image.uploadProgressCancel": "",
180
+ "input.image.uploadProgressLabel": "",
162
181
  "language.ca": "Catalánsky",
163
182
  "language.cs": "Čeština",
164
183
  "language.de": "Nemecky",
@@ -177,6 +196,7 @@
177
196
  "map.add.layer": "Pridať vrstvu",
178
197
  "map.add.layer.catalog": "Z katalógu",
179
198
  "map.add.layer.file": "Zo súboru",
199
+ "map.add.layer.ogc.api": "",
180
200
  "map.add.layer.wfs": "Z WFS",
181
201
  "map.add.layer.wms": "Z WMS",
182
202
  "map.addFromFile.placeholder": "Kliknite na tlačidlo alebo sem vložte súbor",
@@ -188,6 +208,7 @@
188
208
  "map.loading.data": "Načítavanie dát mapy...",
189
209
  "map.loading.service": "Načítavanie služieb...",
190
210
  "map.navigation.message": "Použite prosím CTRL + myš (alebo dva prsty na mobilnom zariadení) na navigáciu po mape",
211
+ "map.ogc.urlInput.hint": "",
191
212
  "map.select.layer": "Zdroj dát",
192
213
  "map.wfs.urlInput.hint": "Zadajte URL adresu služby WFS",
193
214
  "map.wms.urlInput.hint": "Zadajte URL adresu služby WMS",
@@ -258,6 +279,14 @@
258
279
  "record.metadata.quality.updateFrequency.failed": "Frekvencia aktualizácie nie je určená",
259
280
  "record.metadata.quality.updateFrequency.success": "Frekvencia aktualizácie je určená",
260
281
  "record.metadata.related": "Súvisiace záznamy",
282
+ "record.metadata.userFeedbacks": "",
283
+ "record.metadata.userFeedbacks.anonymousUser": "",
284
+ "record.metadata.userFeedbacks.sortSelector.label": "",
285
+ "record.metadata.userFeedbacks.sortSelector.choices.newestFirst": "",
286
+ "record.metadata.userFeedbacks.sortSelector.choices.oldestFirst": "",
287
+ "record.metadata.userFeedbacks.newComment.placeholder": "",
288
+ "record.metadata.userFeedbacks.newAnswer.placeholder": "",
289
+ "record.metadata.userFeedbacks.newAnswer.buttonTitle": "",
261
290
  "record.metadata.sheet": "Ďalšie metadáta sú k dispozícii na:",
262
291
  "record.metadata.status": "Stav",
263
292
  "record.metadata.technical": "",
@@ -331,6 +360,12 @@
331
360
  "table.loading.data": "Načítanie údajov...",
332
361
  "table.object.count": "objekty v tomto súbore údajov",
333
362
  "table.select.data": "Zdroj údajov",
363
+ "timeSincePipe.lessThanAMinute": "",
364
+ "timeSincePipe.minutesAgo": "",
365
+ "timeSincePipe.hoursAgo": "",
366
+ "timeSincePipe.daysAgo": "",
367
+ "timeSincePipe.monthsAgo": "",
368
+ "timeSincePipe.yearsAgo": "",
334
369
  "tooltip.html.copy": "Kopírovať HTML",
335
370
  "tooltip.id.copy": "Kopírovať jedinečný identifikátor",
336
371
  "tooltip.url.copy": "Kopírovať URL",
@@ -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,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=
@@ -1,49 +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 FormFieldSimpleComponent {
7
- constructor() {
8
- this.readonly = false;
9
- this.invalid = false;
10
- this.placeholder = '';
11
- }
12
- get inputType() {
13
- switch (this.type) {
14
- case 'url':
15
- case 'text':
16
- return 'text';
17
- case 'date':
18
- return 'datetime-local';
19
- case 'number':
20
- return 'number';
21
- case 'toggle':
22
- return 'checkbox';
23
- default:
24
- return '';
25
- }
26
- }
27
- get isSelect() {
28
- return this.type === 'list';
29
- }
30
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldSimpleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
31
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldSimpleComponent, selector: "gn-ui-form-field-simple", inputs: { type: "type", control: "control", readonly: "readonly", invalid: "invalid", placeholder: "placeholder", options: "options" }, ngImport: i0, template: "<input\n *ngIf=\"!isSelect\"\n [type]=\"inputType\"\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<select\n *ngIf=\"isSelect\"\n [formControl]=\"control\"\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 <option *ngFor=\"let option of options\" [ngValue]=\"option.value\">\n {{ option.label }}\n </option>\n</select>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { 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.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { 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 }); }
32
- }
33
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldSimpleComponent, decorators: [{
34
- type: Component,
35
- args: [{ selector: 'gn-ui-form-field-simple', changeDetection: ChangeDetectionStrategy.OnPush, template: "<input\n *ngIf=\"!isSelect\"\n [type]=\"inputType\"\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<select\n *ngIf=\"isSelect\"\n [formControl]=\"control\"\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 <option *ngFor=\"let option of options\" [ngValue]=\"option.value\">\n {{ option.label }}\n </option>\n</select>\n" }]
36
- }], propDecorators: { type: [{
37
- type: Input
38
- }], control: [{
39
- type: Input
40
- }], readonly: [{
41
- type: Input
42
- }], invalid: [{
43
- type: Input
44
- }], placeholder: [{
45
- type: Input
46
- }], options: [{
47
- type: Input
48
- }] } });
49
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1zaW1wbGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtc2ltcGxlL2Zvcm0tZmllbGQtc2ltcGxlLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLXNpbXBsZS9mb3JtLWZpZWxkLXNpbXBsZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7Ozs7QUFRNUMsTUFBTSxPQUFPLHdCQUF3QjtJQU5yQztRQVNXLGFBQVEsR0FBRyxLQUFLLENBQUE7UUFDaEIsWUFBTyxHQUFHLEtBQUssQ0FBQTtRQUNmLGdCQUFXLEdBQUcsRUFBRSxDQUFBO0tBc0IxQjtJQW5CQyxJQUFJLFNBQVM7UUFDWCxRQUFRLElBQUksQ0FBQyxJQUFJLEVBQUU7WUFDakIsS0FBSyxLQUFLLENBQUM7WUFDWCxLQUFLLE1BQU07Z0JBQ1QsT0FBTyxNQUFNLENBQUE7WUFDZixLQUFLLE1BQU07Z0JBQ1QsT0FBTyxnQkFBZ0IsQ0FBQTtZQUN6QixLQUFLLFFBQVE7Z0JBQ1gsT0FBTyxRQUFRLENBQUE7WUFDakIsS0FBSyxRQUFRO2dCQUNYLE9BQU8sVUFBVSxDQUFBO1lBQ25CO2dCQUNFLE9BQU8sRUFBRSxDQUFBO1NBQ1o7SUFDSCxDQUFDO0lBRUQsSUFBSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsSUFBSSxLQUFLLE1BQU0sQ0FBQTtJQUM3QixDQUFDOzhHQTFCVSx3QkFBd0I7a0dBQXhCLHdCQUF3Qix1TUNUckMsMnNCQTJCQTs7MkZEbEJhLHdCQUF3QjtrQkFOcEMsU0FBUzsrQkFDRSx5QkFBeUIsbUJBR2xCLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLElBQUk7c0JBQVosS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1mb3JtLWZpZWxkLXNpbXBsZScsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXNpbXBsZS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Zvcm0tZmllbGQtc2ltcGxlLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFNpbXBsZUNvbXBvbmVudCB7XG4gIEBJbnB1dCgpIHR5cGU6ICdkYXRlJyB8ICd1cmwnIHwgJ3RleHQnIHwgJ251bWJlcicgfCAnbGlzdCcgfCAndG9nZ2xlJ1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbiAgQElucHV0KCkgcmVhZG9ubHkgPSBmYWxzZVxuICBASW5wdXQoKSBpbnZhbGlkID0gZmFsc2VcbiAgQElucHV0KCkgcGxhY2Vob2xkZXIgPSAnJ1xuICBASW5wdXQoKSBvcHRpb25zPzogeyBsYWJlbDogc3RyaW5nOyB2YWx1ZTogdW5rbm93biB9W11cblxuICBnZXQgaW5wdXRUeXBlKCkge1xuICAgIHN3aXRjaCAodGhpcy50eXBlKSB7XG4gICAgICBjYXNlICd1cmwnOlxuICAgICAgY2FzZSAndGV4dCc6XG4gICAgICAgIHJldHVybiAndGV4dCdcbiAgICAgIGNhc2UgJ2RhdGUnOlxuICAgICAgICByZXR1cm4gJ2RhdGV0aW1lLWxvY2FsJ1xuICAgICAgY2FzZSAnbnVtYmVyJzpcbiAgICAgICAgcmV0dXJuICdudW1iZXInXG4gICAgICBjYXNlICd0b2dnbGUnOlxuICAgICAgICByZXR1cm4gJ2NoZWNrYm94J1xuICAgICAgZGVmYXVsdDpcbiAgICAgICAgcmV0dXJuICcnXG4gICAgfVxuICB9XG5cbiAgZ2V0IGlzU2VsZWN0KCkge1xuICAgIHJldHVybiB0aGlzLnR5cGUgPT09ICdsaXN0J1xuICB9XG59XG4iLCI8aW5wdXRcbiAgKm5nSWY9XCIhaXNTZWxlY3RcIlxuICBbdHlwZV09XCJpbnB1dFR5cGVcIlxuICBbcmVhZG9ubHldPVwicmVhZG9ubHlcIlxuICBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiXG4gIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiXG4gIGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbWQgcC0zIHctZnVsbCBiZy13aGl0ZSB0cmFuc2l0aW9uLWNvbG9yc1wiXG4gIFtuZ0NsYXNzXT1cIntcbiAgICAnYm9yZGVyLXBpbmstNTAwJzogaW52YWxpZCxcbiAgICAnYm9yZGVyLWdyYXktMjAwJzogIWludmFsaWQsXG4gICAgJ3RleHQtZ3JheS02MDAnOiByZWFkb25seVxuICB9XCJcbi8+XG48c2VsZWN0XG4gICpuZ0lmPVwiaXNTZWxlY3RcIlxuICBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiXG4gIGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbWQgcC0zIHctZnVsbCBiZy13aGl0ZSB0cmFuc2l0aW9uLWNvbG9yc1wiXG4gIFtuZ0NsYXNzXT1cIntcbiAgICAnYm9yZGVyLXBpbmstNTAwJzogaW52YWxpZCxcbiAgICAnYm9yZGVyLWdyYXktMjAwJzogIWludmFsaWQsXG4gICAgJ3RleHQtZ3JheS02MDAnOiByZWFkb25seVxuICB9XCJcbj5cbiAgPG9wdGlvbiAqbmdGb3I9XCJsZXQgb3B0aW9uIG9mIG9wdGlvbnNcIiBbbmdWYWx1ZV09XCJvcHRpb24udmFsdWVcIj5cbiAgICB7eyBvcHRpb24ubGFiZWwgfX1cbiAgPC9vcHRpb24+XG48L3NlbGVjdD5cbiJdfQ==
@@ -1,11 +0,0 @@
1
- import { ChangeDetectionStrategy, Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FormFieldSpatialExtentComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldSpatialExtentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldSpatialExtentComponent, selector: "gn-ui-form-field-spatial-extent", ngImport: i0, template: "<p>form-field-spatial-extent works!</p>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldSpatialExtentComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'gn-ui-form-field-spatial-extent', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p>form-field-spatial-extent works!</p>\n" }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMvbGliL2Zvcm0tZmllbGQvZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudC9mb3JtLWZpZWxkLXNwYXRpYWwtZXh0ZW50LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLXNwYXRpYWwtZXh0ZW50L2Zvcm0tZmllbGQtc3BhdGlhbC1leHRlbnQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQTs7QUFRbEUsTUFBTSxPQUFPLCtCQUErQjs4R0FBL0IsK0JBQStCO2tHQUEvQiwrQkFBK0IsdUVDUjVDLDJDQUNBOzsyRkRPYSwrQkFBK0I7a0JBTjNDLFNBQVM7K0JBQ0UsaUNBQWlDLG1CQUcxQix1QkFBdUIsQ0FBQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtc3BhdGlhbC1leHRlbnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2Zvcm0tZmllbGQtc3BhdGlhbC1leHRlbnQuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRm9ybUZpZWxkU3BhdGlhbEV4dGVudENvbXBvbmVudCB7fVxuIiwiPHA+Zm9ybS1maWVsZC1zcGF0aWFsLWV4dGVudCB3b3JrcyE8L3A+XG4iXX0=
@@ -1,11 +0,0 @@
1
- import { ChangeDetectionStrategy, Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FormFieldTemporalExtentComponent {
4
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldTemporalExtentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.7", type: FormFieldTemporalExtentComponent, selector: "gn-ui-form-field-temporal-extent", ngImport: i0, template: "<p>form-field-temporal-extent works!</p>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.7", ngImport: i0, type: FormFieldTemporalExtentComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'gn-ui-form-field-temporal-extent', changeDetection: ChangeDetectionStrategy.OnPush, template: "<p>form-field-temporal-extent works!</p>\n" }]
10
- }] });
11
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjL2xpYi9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50L2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYy9saWIvZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFBOztBQVFsRSxNQUFNLE9BQU8sZ0NBQWdDOzhHQUFoQyxnQ0FBZ0M7a0dBQWhDLGdDQUFnQyx3RUNSN0MsNENBQ0E7OzJGRE9hLGdDQUFnQztrQkFONUMsU0FBUzsrQkFDRSxrQ0FBa0MsbUJBRzNCLHVCQUF1QixDQUFDLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnQnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudC5jb21wb25lbnQuY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRUZW1wb3JhbEV4dGVudENvbXBvbmVudCB7fVxuIiwiPHA+Zm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnQgd29ya3MhPC9wPlxuIl19