geonetwork-ui 2.3.0-dev.6e2b8bea → 2.3.0-dev.89188551

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 (405) 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 +36 -3
  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-license/form-field-license.component.mjs +64 -0
  19. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  20. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +15 -0
  21. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  22. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  23. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  24. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  25. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +121 -0
  26. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  27. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  28. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +29 -0
  29. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +1 -1
  30. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  31. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +16 -1
  32. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  33. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  34. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +1 -1
  35. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +1 -1
  36. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +1 -1
  37. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  38. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  39. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  40. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  41. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  42. package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +4 -4
  43. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +3 -2
  44. package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +22 -4
  45. package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +37 -10
  46. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +22 -7
  47. package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +52 -17
  48. package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +18 -3
  49. package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +2 -2
  50. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  51. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  52. package/esm2022/libs/ui/elements/src/index.mjs +15 -15
  53. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +2 -2
  54. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
  55. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +16 -3
  56. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  57. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  58. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  59. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +37 -8
  60. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
  61. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +14 -10
  62. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +59 -0
  63. package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +62 -0
  64. package/esm2022/libs/ui/inputs/src/index.mjs +16 -16
  65. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
  66. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +22 -0
  67. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +7 -5
  68. package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +17 -8
  69. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
  70. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
  71. package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +29 -0
  72. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +27 -4
  73. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +19 -3
  74. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +18 -29
  75. package/esm2022/libs/ui/layout/src/index.mjs +7 -5
  76. package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +76 -0
  77. package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +42 -18
  78. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  79. package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +3 -8
  80. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +2 -2
  81. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +22 -1
  82. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
  83. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
  84. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
  85. package/esm2022/translations/de.json +39 -0
  86. package/esm2022/translations/en.json +39 -0
  87. package/esm2022/translations/es.json +39 -0
  88. package/esm2022/translations/fr.json +39 -0
  89. package/esm2022/translations/it.json +39 -0
  90. package/esm2022/translations/nl.json +39 -0
  91. package/esm2022/translations/pt.json +39 -0
  92. package/fesm2022/geonetwork-ui.mjs +3173 -1759
  93. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  94. package/index.d.ts +1 -0
  95. package/index.d.ts.map +1 -1
  96. package/index.ts +1 -0
  97. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  98. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +1 -0
  99. package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -1
  100. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +1 -0
  101. package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -1
  102. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts +6 -2
  103. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  104. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +9 -6
  105. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  106. package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
  107. package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
  108. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts +15 -0
  109. package/libs/common/domain/src/lib/model/record/user-feedbacks.model.d.ts.map +1 -0
  110. package/libs/common/domain/src/lib/model/user/index.d.ts +2 -0
  111. package/libs/common/domain/src/lib/model/user/index.d.ts.map +1 -0
  112. package/libs/common/domain/src/lib/platform.service.interface.d.ts +3 -0
  113. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  114. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
  115. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  116. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
  117. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  118. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
  119. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  120. package/libs/feature/editor/src/index.d.ts +1 -1
  121. package/libs/feature/editor/src/index.d.ts.map +1 -1
  122. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  123. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  124. 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
  125. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  126. 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
  127. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  128. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +39 -0
  129. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -0
  130. 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
  131. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  132. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +8 -0
  133. 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
  134. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  135. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  136. 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
  137. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  138. 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
  139. 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
  140. 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
  141. 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
  142. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +12 -4
  143. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  144. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  145. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  146. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  147. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  148. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  149. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  150. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  151. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  152. package/libs/feature/notifications/src/index.d.ts +4 -0
  153. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  154. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  155. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  156. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  157. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  158. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  159. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  160. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  161. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  162. package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
  163. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  164. package/libs/feature/record/src/lib/state/mdview.actions.d.ts +40 -6
  165. package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
  166. package/libs/feature/record/src/lib/state/mdview.effects.d.ts +24 -4
  167. package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
  168. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +14 -4
  169. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  170. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +8 -5
  171. package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -1
  172. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +12 -9
  173. package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -1
  174. package/libs/ui/elements/src/index.d.ts +14 -14
  175. package/libs/ui/elements/src/index.d.ts.map +1 -1
  176. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +1 -1
  177. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +3 -1
  178. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  179. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  180. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  181. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  182. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  183. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +4 -2
  184. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
  185. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
  186. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  187. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +29 -28
  188. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  189. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts +11 -0
  190. package/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.d.ts.map +1 -0
  191. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +22 -0
  192. package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -0
  193. package/libs/ui/inputs/src/index.d.ts +15 -15
  194. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  195. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  196. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts +9 -0
  197. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -0
  198. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts +1 -1
  199. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  200. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +1 -1
  201. package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
  202. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
  203. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
  204. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
  205. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
  206. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +12 -0
  207. package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
  208. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +7 -1
  209. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  210. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +4 -1
  211. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  212. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +35 -42
  213. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  214. package/libs/ui/layout/src/index.d.ts +6 -4
  215. package/libs/ui/layout/src/index.d.ts.map +1 -1
  216. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +25 -0
  217. package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -0
  218. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +13 -6
  219. package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
  220. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  221. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  222. package/libs/ui/layout/src/lib/ui-layout.module.d.ts +4 -5
  223. package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
  224. package/libs/util/shared/src/lib/links/link-utils.d.ts +18 -0
  225. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  226. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
  227. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
  228. package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
  229. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
  230. package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
  231. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  232. package/package.json +1 -1
  233. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +7 -1
  234. package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +1 -0
  235. package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +12 -1
  236. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +51 -1
  237. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +34 -7
  238. package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
  239. package/src/libs/common/domain/src/lib/model/record/user-feedbacks.model.ts +15 -0
  240. package/src/libs/common/domain/src/lib/platform.service.interface.ts +3 -0
  241. package/src/libs/common/fixtures/src/index.ts +8 -6
  242. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +8 -0
  243. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +3 -3
  244. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +83 -0
  245. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
  246. package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
  247. package/src/libs/data-access/gn4/src/spec.yaml +1 -1
  248. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +52 -2
  249. package/src/libs/feature/editor/src/index.ts +1 -1
  250. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  251. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
  252. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
  253. 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
  254. 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
  255. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +8 -0
  256. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +64 -0
  257. 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
  258. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +4 -0
  259. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +15 -0
  260. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  261. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  262. 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
  263. 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
  264. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
  265. 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
  266. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +0 -0
  267. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +92 -0
  268. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +137 -0
  269. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.css +0 -0
  270. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  271. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +4 -4
  272. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  273. package/src/libs/feature/editor/src/lib/fields.config.ts +15 -0
  274. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  275. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  276. package/src/libs/feature/notifications/src/index.ts +3 -0
  277. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  278. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  279. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  280. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  281. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  282. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  283. package/src/libs/feature/record/src/lib/feature-record.module.ts +5 -2
  284. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -1
  285. package/src/libs/feature/record/src/lib/state/mdview.actions.ts +51 -6
  286. package/src/libs/feature/record/src/lib/state/mdview.effects.ts +82 -7
  287. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +48 -8
  288. package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +81 -24
  289. package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +40 -10
  290. package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
  291. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  292. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  293. package/src/libs/ui/elements/src/index.ts +14 -14
  294. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +1 -1
  295. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  296. package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +38 -20
  297. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
  298. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  299. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  300. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  301. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  302. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  303. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  304. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  305. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +43 -5
  306. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
  307. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -3
  308. package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +54 -0
  309. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.css +0 -0
  310. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +75 -0
  311. package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +63 -0
  312. package/src/libs/ui/inputs/src/index.ts +15 -15
  313. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
  314. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +3 -0
  315. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +11 -0
  316. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +16 -0
  317. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +8 -1
  318. package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +13 -0
  319. package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
  320. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
  321. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
  322. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
  323. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.css +6 -0
  324. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +26 -0
  325. package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +32 -0
  326. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +2 -1
  327. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +29 -0
  328. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +1 -1
  329. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +16 -1
  330. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +5 -21
  331. package/src/libs/ui/layout/src/index.ts +6 -4
  332. package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +23 -0
  333. package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +20 -0
  334. package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +84 -0
  335. package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +7 -4
  336. package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -4
  337. package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +45 -15
  338. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +0 -0
  339. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  340. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  341. package/src/libs/ui/layout/src/lib/ui-layout.module.ts +0 -2
  342. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +1 -1
  343. package/src/libs/util/shared/src/lib/links/link-utils.ts +21 -0
  344. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
  345. package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
  346. package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
  347. package/tailwind.base.css +36 -0
  348. package/translations/de.json +39 -0
  349. package/translations/en.json +39 -0
  350. package/translations/es.json +39 -0
  351. package/translations/fr.json +39 -0
  352. package/translations/it.json +39 -0
  353. package/translations/nl.json +39 -0
  354. package/translations/pt.json +39 -0
  355. package/translations/sk.json +39 -0
  356. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
  357. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  358. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  359. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  360. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  361. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  362. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  363. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  364. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  365. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  366. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  367. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  368. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
  369. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
  370. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  371. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  372. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  373. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  374. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  375. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  376. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  377. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  378. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  379. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  380. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  381. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  382. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
  383. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  384. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  385. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +0 -68
  386. package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +0 -80
  387. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  388. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  389. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -0
  390. /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
  391. /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
  392. /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
  393. /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
  394. /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
  395. /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
  396. /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
  397. /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
  398. /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
  399. /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
  400. /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
  401. /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
  402. /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
  403. /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
  404. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  405. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
@@ -2,7 +2,9 @@ import { DatasetDistribution } from '../../../../../../libs/common/domain/src/li
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class LinkCardComponent {
4
4
  link: DatasetDistribution;
5
+ compact: boolean;
6
+ get title(): string;
5
7
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkCardComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkCardComponent, "gn-ui-link-card", never, { "link": { "alias": "link"; "required": false; }; }, {}, never, never, false, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkCardComponent, "gn-ui-link-card", never, { "link": { "alias": "link"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, {}, never, never, true, never>;
7
9
  }
8
10
  //# sourceMappingURL=link-card.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/link-card/link-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAE/F,qBAMa,iBAAiB;IACnB,IAAI,EAAE,mBAAmB,CAAA;yCADvB,iBAAiB;2CAAjB,iBAAiB;CAE7B"}
1
+ {"version":3,"file":"link-card.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/link-card/link-card.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,mBAAmB,EAAE,MAAM,2DAA2D,CAAA;;AAI/F,qBAQa,iBAAiB;IACnB,IAAI,EAAE,mBAAmB,CAAA;IACzB,OAAO,UAAQ;IAExB,IAAI,KAAK,WAKR;yCATU,iBAAiB;2CAAjB,iBAAiB;CAU7B"}
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MarkdownEditorComponent {
4
+ preview: boolean;
5
+ helperText?: string;
6
+ placeholder: string;
7
+ textContent: string;
8
+ textContentChanged: EventEmitter<string>;
9
+ textContentChangedHandler(textContent: string): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkdownEditorComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkdownEditorComponent, "gn-ui-markdown-editor", never, { "preview": { "alias": "preview"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "textContent": { "alias": "textContent"; "required": false; }; }, { "textContentChanged": "textContentChanged"; }, never, never, true, never>;
12
+ }
13
+ //# sourceMappingURL=markdown-editor.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"markdown-editor.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAQtB,qBAiBa,uBAAuB;IACzB,OAAO,UAAQ;IACf,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IACnB,WAAW,EAAE,MAAM,CAAA;IAClB,kBAAkB,EAAE,YAAY,CAAC,MAAM,CAAC,CACtB;IAE5B,yBAAyB,CAAC,WAAW,EAAE,MAAM;yCARlC,uBAAuB;2CAAvB,uBAAuB;CAYnC"}
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NotificationComponent {
4
+ type: 'info' | 'warning' | 'error' | 'success';
5
+ title: string;
6
+ text: string;
7
+ closeMessage?: string;
8
+ notificationClose: EventEmitter<void>;
9
+ handleClose(event?: Event): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "gn-ui-notification", never, { "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "text": { "alias": "text"; "required": false; }; "closeMessage": { "alias": "closeMessage"; "required": false; }; }, { "notificationClose": "notificationClose"; }, never, never, true, never>;
12
+ }
13
+ //# sourceMappingURL=notification.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/notification/notification.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAKtB,qBAQa,qBAAqB;IACvB,IAAI,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,CAAS;IACvD,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,YAAY,CAAC,EAAE,MAAM,CAAA;IACpB,iBAAiB,qBAA2B;IAEtD,WAAW,CAAC,KAAK,CAAC,EAAE,KAAK;yCAPd,qBAAqB;2CAArB,qBAAqB;CAWjC"}
@@ -7,9 +7,9 @@ export declare class RecordApiFormComponent {
7
7
  limit$: BehaviorSubject<string>;
8
8
  format$: BehaviorSubject<string>;
9
9
  apiBaseUrl: string;
10
- formatsList: {
11
- label: string;
10
+ outputFormats: {
12
11
  value: string;
12
+ label: string;
13
13
  }[];
14
14
  apiQueryUrl$: import("rxjs").Observable<any>;
15
15
  noLimitChecked$: import("rxjs").Observable<boolean>;
@@ -18,6 +18,8 @@ export declare class RecordApiFormComponent {
18
18
  setLimit(value: string): void;
19
19
  setFormat(value: string | unknown): void;
20
20
  resetUrl(): void;
21
+ parseOutputFormats(): void;
22
+ getOutputFormats(url: any): Promise<import("@camptocamp/ogc-client").OgcApiCollectionInfo>;
21
23
  static ɵfac: i0.ɵɵFactoryDeclaration<RecordApiFormComponent, never>;
22
24
  static ɵcmp: i0.ɵɵComponentDeclaration<RecordApiFormComponent, "gn-ui-record-api-form", never, { "apiLink": { "alias": "apiLink"; "required": false; }; }, {}, never, never, false, never>;
23
25
  }
@@ -1 +1 @@
1
- {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AACtG,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAO1D,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAGrD;IACD,OAAO,0BAA0B;IACjC,MAAM,0BAA0B;IAChC,OAAO,0BAA0B;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW;;;QAGV;IACD,YAAY,iCAiBX;IACD,eAAe,qCAEd;IAED,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAKtB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;yCApDG,sBAAsB;2CAAtB,sBAAsB;CAyDlC"}
1
+ {"version":3,"file":"record-api-form.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,0BAA0B,EAAE,MAAM,2DAA2D,CAAA;AAEtG,OAAO,EAAE,eAAe,EAAsB,MAAM,MAAM,CAAA;;AAO1D,qBAMa,sBAAsB;IACjC,IAAa,OAAO,CAAC,KAAK,EAAE,0BAA0B,EAOrD;IACD,OAAO,0BAA0B;IACjC,MAAM,0BAA0B;IAChC,OAAO,0BAA0B;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,aAAa;;;QAAqC;IAClD,YAAY,iCAiBX;IACD,eAAe,qCAEd;IAED,aAAa,oCAEZ;IAED,SAAS,CAAC,KAAK,EAAE,MAAM;IAIvB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAKtB,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;IAIjC,QAAQ;IAMR,kBAAkB;IA6BZ,gBAAgB,CAAC,GAAG,KAAA;yCAxFf,sBAAsB;2CAAtB,sBAAsB;CA6FlC"}
@@ -23,7 +23,7 @@ export declare class ThumbnailComponent implements OnInit, OnChanges {
23
23
  useFallback(): void;
24
24
  setObjectFit(): void;
25
25
  static ɵfac: i0.ɵɵFactoryDeclaration<ThumbnailComponent, [{ optional: true; }]>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailComponent, "gn-ui-thumbnail", never, { "thumbnailUrl": { "alias": "thumbnailUrl"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; }, { "placeholderShown": "placeholderShown"; }, never, never, false, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ThumbnailComponent, "gn-ui-thumbnail", never, { "thumbnailUrl": { "alias": "thumbnailUrl"; "required": false; }; "fit": { "alias": "fit"; "required": false; }; }, { "placeholderShown": "placeholderShown"; }, never, never, true, never>;
27
27
  }
28
28
  export {};
29
29
  //# sourceMappingURL=thumbnail.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"thumbnail.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EAEV,cAAc,EAEd,SAAS,EACT,MAAM,EAEN,aAAa,EAGb,YAAY,EACb,MAAM,eAAe,CAAA;;AAEtB,eAAO,MAAM,qBAAqB,wBAEjC,CAAA;AAUD,KAAK,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,YAAY,CAAA;AAEpD,qBAKa,kBAAmB,YAAW,MAAM,EAAE,SAAS;IAiBxD,OAAO,CAAC,sBAAsB;IAhBvB,YAAY,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B,GAAG,EAAE,UAAU,GAAG,UAAU,EAAE,CAAU;IACtB,UAAU,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IACpC,gBAAgB,EAAE,UAAU,CAAC,cAAc,CAAC,CAAA;IACjE,gBAAgB,wBAA8B;IACxD,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,UAAU,CAAA;IAClB,cAAc,SAAqD;IACnE,IAAI,aAAa,YAEhB;IACD,OAAO,CAAC,MAAM,CAA6B;gBAKjC,sBAAsB,EAAE,MAAM;IAGxC,QAAQ;IAIR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,OAAO,CAAC,eAAe;IAqBvB,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,cAAc;IAItB,WAAW;IASX,YAAY;yCAvED,kBAAkB;2CAAlB,kBAAkB;CAiF9B"}
1
+ {"version":3,"file":"thumbnail.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts"],"names":[],"mappings":"AACA,OAAO,EAGL,UAAU,EAEV,cAAc,EAEd,SAAS,EACT,MAAM,EAEN,aAAa,EAGb,YAAY,EACb,MAAM,eAAe,CAAA;;AAEtB,eAAO,MAAM,qBAAqB,wBAEjC,CAAA;AAED,KAAK,UAAU,GAAG,OAAO,GAAG,SAAS,GAAG,YAAY,CAAA;AASpD,qBAOa,kBAAmB,YAAW,MAAM,EAAE,SAAS;IAiBxD,OAAO,CAAC,sBAAsB;IAhBvB,YAAY,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B,GAAG,EAAE,UAAU,GAAG,UAAU,EAAE,CAAU;IACtB,UAAU,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAA;IACpC,gBAAgB,EAAE,UAAU,CAAC,cAAc,CAAC,CAAA;IACjE,gBAAgB,wBAA8B;IACxD,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,UAAU,CAAA;IAClB,cAAc,SAAqD;IACnE,IAAI,aAAa,YAEhB;IACD,OAAO,CAAC,MAAM,CAA6B;gBAKjC,sBAAsB,EAAE,MAAM;IAGxC,QAAQ;IAIR,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,OAAO,CAAC,eAAe;IAqBvB,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,cAAc;IAItB,WAAW;IASX,YAAY;yCAvED,kBAAkB;2CAAlB,kBAAkB;CAiF9B"}
@@ -4,36 +4,37 @@ import * as i2 from "./content-ghost/content-ghost.component";
4
4
  import * as i3 from "./download-item/download-item.component";
5
5
  import * as i4 from "./downloads-list/downloads-list.component";
6
6
  import * as i5 from "./api-card/api-card.component";
7
- import * as i6 from "./link-card/link-card.component";
8
- import * as i7 from "./related-record-card/related-record-card.component";
9
- import * as i8 from "./metadata-contact/metadata-contact.component";
10
- import * as i9 from "./metadata-catalog/metadata-catalog.component";
11
- import * as i10 from "./metadata-quality/metadata-quality.component";
12
- import * as i11 from "./metadata-quality-item/metadata-quality-item.component";
13
- import * as i12 from "./search-results-error/search-results-error.component";
14
- import * as i13 from "./pagination/pagination.component";
15
- import * as i14 from "./thumbnail/thumbnail.component";
16
- import * as i15 from "./avatar/avatar.component";
17
- import * as i16 from "./user-preview/user-preview.component";
18
- import * as i17 from "./metadata-info/linkify.directive";
19
- import * as i18 from "./pagination-buttons/pagination-buttons.component";
20
- import * as i19 from "./max-lines/max-lines.component";
21
- import * as i20 from "./record-api-form/record-api-form.component";
22
- import * as i21 from "./image-overlay-preview/image-overlay-preview.component";
23
- import * as i22 from "@angular/common";
24
- import * as i23 from "@angular/material/icon";
25
- import * as i24 from "@angular/material/tooltip";
26
- import * as i25 from "../../../widgets/src/lib/ui-widgets.module";
27
- import * as i26 from "../../../layout/src/lib/ui-layout.module";
28
- import * as i27 from "@ngx-translate/core";
29
- import * as i28 from "../../../../util/shared/src/lib/util-shared.module";
30
- import * as i29 from "@angular/router";
31
- import * as i30 from "../../../inputs/src/lib/ui-inputs.module";
32
- import * as i31 from "@angular/forms";
33
- import * as i32 from "./markdown-parser/markdown-parser.component";
7
+ import * as i6 from "./related-record-card/related-record-card.component";
8
+ import * as i7 from "./metadata-contact/metadata-contact.component";
9
+ import * as i8 from "./metadata-catalog/metadata-catalog.component";
10
+ import * as i9 from "./metadata-quality/metadata-quality.component";
11
+ import * as i10 from "./metadata-quality-item/metadata-quality-item.component";
12
+ import * as i11 from "./search-results-error/search-results-error.component";
13
+ import * as i12 from "./pagination/pagination.component";
14
+ import * as i13 from "./avatar/avatar.component";
15
+ import * as i14 from "./user-preview/user-preview.component";
16
+ import * as i15 from "./metadata-info/linkify.directive";
17
+ import * as i16 from "./pagination-buttons/pagination-buttons.component";
18
+ import * as i17 from "./max-lines/max-lines.component";
19
+ import * as i18 from "./record-api-form/record-api-form.component";
20
+ import * as i19 from "./user-feedback-item/user-feedback-item.component";
21
+ import * as i20 from "./image-overlay-preview/image-overlay-preview.component";
22
+ import * as i21 from "@angular/common";
23
+ import * as i22 from "@angular/material/icon";
24
+ import * as i23 from "@angular/material/tooltip";
25
+ import * as i24 from "../../../widgets/src/lib/ui-widgets.module";
26
+ import * as i25 from "../../../layout/src/lib/ui-layout.module";
27
+ import * as i26 from "@ngx-translate/core";
28
+ import * as i27 from "../../../../util/shared/src/lib/util-shared.module";
29
+ import * as i28 from "@angular/router";
30
+ import * as i29 from "../../../inputs/src/lib/ui-inputs.module";
31
+ import * as i30 from "@angular/forms";
32
+ import * as i31 from "./markdown-parser/markdown-parser.component";
33
+ import * as i32 from "./thumbnail/thumbnail.component";
34
+ import * as i33 from "./user-feedback-item/time-since.pipe";
34
35
  export declare class UiElementsModule {
35
36
  static ɵfac: i0.ɵɵFactoryDeclaration<UiElementsModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i17.GnUiLinkifyDirective, typeof i18.PaginationButtonsComponent, typeof i19.MaxLinesComponent, typeof i20.RecordApiFormComponent, typeof i21.ImageOverlayPreviewComponent], [typeof i22.CommonModule, typeof i23.MatIconModule, typeof i24.MatTooltipModule, typeof i25.UiWidgetsModule, typeof i26.UiLayoutModule, typeof i27.TranslateModule, typeof i28.UtilSharedModule, typeof i29.RouterModule, typeof i30.UiInputsModule, typeof i31.FormsModule, typeof i22.NgOptimizedImage, typeof i32.MarkdownParserComponent], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.LinkCardComponent, typeof i7.RelatedRecordCardComponent, typeof i8.MetadataContactComponent, typeof i9.MetadataCatalogComponent, typeof i10.MetadataQualityComponent, typeof i11.MetadataQualityItemComponent, typeof i12.SearchResultsErrorComponent, typeof i13.PaginationComponent, typeof i14.ThumbnailComponent, typeof i15.AvatarComponent, typeof i16.UserPreviewComponent, typeof i18.PaginationButtonsComponent, typeof i19.MaxLinesComponent, typeof i20.RecordApiFormComponent, typeof i32.MarkdownParserComponent, typeof i21.ImageOverlayPreviewComponent]>;
37
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiElementsModule, [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.SearchResultsErrorComponent, typeof i12.PaginationComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i15.GnUiLinkifyDirective, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent], [typeof i21.CommonModule, typeof i22.MatIconModule, typeof i23.MatTooltipModule, typeof i24.UiWidgetsModule, typeof i25.UiLayoutModule, typeof i26.TranslateModule, typeof i27.UtilSharedModule, typeof i28.RouterModule, typeof i29.UiInputsModule, typeof i30.FormsModule, typeof i21.NgOptimizedImage, typeof i31.MarkdownParserComponent, typeof i32.ThumbnailComponent, typeof i33.TimeSincePipe], [typeof i1.MetadataInfoComponent, typeof i2.ContentGhostComponent, typeof i3.DownloadItemComponent, typeof i4.DownloadsListComponent, typeof i5.ApiCardComponent, typeof i6.RelatedRecordCardComponent, typeof i7.MetadataContactComponent, typeof i8.MetadataCatalogComponent, typeof i9.MetadataQualityComponent, typeof i10.MetadataQualityItemComponent, typeof i11.SearchResultsErrorComponent, typeof i12.PaginationComponent, typeof i32.ThumbnailComponent, typeof i13.AvatarComponent, typeof i14.UserPreviewComponent, typeof i16.PaginationButtonsComponent, typeof i17.MaxLinesComponent, typeof i18.RecordApiFormComponent, typeof i31.MarkdownParserComponent, typeof i19.UserFeedbackItemComponent, typeof i20.ImageOverlayPreviewComponent]>;
37
38
  static ɵinj: i0.ɵɵInjectorDeclaration<UiElementsModule>;
38
39
  }
39
40
  //# sourceMappingURL=ui-elements.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAkCA,qBA8Da,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
1
+ {"version":3,"file":"ui-elements.module.d.ts","sourceRoot":"","sources":["../../../../../src/libs/ui/elements/src/lib/ui-elements.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCA,qBA+Da,gBAAgB;yCAAhB,gBAAgB;0CAAhB,gBAAgB;0CAAhB,gBAAgB;CAAG"}
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TimeSincePipe implements PipeTransform {
5
+ private translate;
6
+ constructor(translate: TranslateService);
7
+ transform(value: Date): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeSincePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<TimeSincePipe, "timeSince", true>;
10
+ }
11
+ //# sourceMappingURL=time-since.pipe.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"time-since.pipe.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAA;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;;AAItD,qBAIa,aAAc,YAAW,aAAa;IACrC,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,gBAAgB;IAE/C,SAAS,CAAC,KAAK,EAAE,IAAI,GAAG,MAAM;yCAHnB,aAAa;uCAAb,aAAa;CA4CzB"}
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { UserFeedback, UserFeedbackViewModel } from '../../../../../../libs/common/domain/src/lib/model/record';
3
+ import { UserModel } from '../../../../../../libs/common/domain/src/lib/model/user';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UserFeedbackItemComponent implements OnInit {
6
+ userFeedbackParent: UserFeedbackViewModel;
7
+ userFeedBacksAnswers: UserFeedbackViewModel[];
8
+ isActiveUserEditor: boolean;
9
+ activeUser: UserModel;
10
+ isLastComment: boolean;
11
+ isAddUserFeedbackLoading: boolean;
12
+ newUserFeedbackAnswer: EventEmitter<UserFeedback>;
13
+ isAnAnswer: boolean;
14
+ newAnswer: string;
15
+ isAnswerEmpty: boolean;
16
+ ngOnInit(): void;
17
+ onNewAnswerValueChange(): void;
18
+ publishNewAnswer(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserFeedbackItemComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserFeedbackItemComponent, "gn-ui-user-feedback-item", never, { "userFeedbackParent": { "alias": "userFeedbackParent"; "required": false; }; "userFeedBacksAnswers": { "alias": "userFeedBacksAnswers"; "required": false; }; "isActiveUserEditor": { "alias": "isActiveUserEditor"; "required": false; }; "activeUser": { "alias": "activeUser"; "required": false; }; "isLastComment": { "alias": "isLastComment"; "required": false; }; "isAddUserFeedbackLoading": { "alias": "isAddUserFeedbackLoading"; "required": false; }; }, { "newUserFeedbackAnswer": "newUserFeedbackAnswer"; }, never, never, false, never>;
21
+ }
22
+ //# sourceMappingURL=user-feedback-item.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-feedback-item.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAEZ,MAAM,EAEP,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,YAAY,EACZ,qBAAqB,EACtB,MAAM,2DAA2D,CAAA;AAClE,OAAO,EAAE,SAAS,EAAE,MAAM,yDAAyD,CAAA;;AAEnF,qBAMa,yBAA0B,YAAW,MAAM;IAC7C,kBAAkB,EAAE,qBAAqB,CAAA;IACzC,oBAAoB,EAAE,qBAAqB,EAAE,CAAA;IAC7C,kBAAkB,EAAE,OAAO,CAAA;IAC3B,UAAU,EAAE,SAAS,CAAA;IACrB,aAAa,EAAE,OAAO,CAAA;IACtB,wBAAwB,EAAE,OAAO,CAAA;IAEhC,qBAAqB,6BAAmC;IAElE,UAAU,UAAQ;IAClB,SAAS,SAAK;IACd,aAAa,UAAO;IAEpB,QAAQ,IAAI,IAAI;IAIhB,sBAAsB;IAItB,gBAAgB;yCAtBL,yBAAyB;2CAAzB,yBAAyB;CA0CrC"}
@@ -1,23 +1,23 @@
1
- export * from './lib/dropdown-selector/dropdown-selector.component';
2
- export * from './lib/dropdown-selector/dropdown-selector.model';
3
- export * from './lib/dropdown-multiselect/dropdown-multiselect.component';
4
- export * from './lib/dropdown-multiselect/dropdown-multiselect.model';
5
- export * from './lib/text-input/text-input.component';
6
- export * from './lib/chips-input/chips-input.component';
7
- export * from './lib/text-area/text-area.component';
8
1
  export * from './lib/autocomplete/autocomplete.component';
9
- export * from './lib/star-toggle/star-toggle.component';
10
2
  export * from './lib/button/button.component';
11
- export * from './lib/viewport-intersector/viewport-intersector.component';
12
3
  export * from './lib/check-toggle/check-toggle.component';
13
- export * from './lib/ui-inputs.module';
14
- export * from './lib/form-field';
4
+ export * from './lib/checkbox/checkbox.component';
5
+ export * from './lib/chips-input/chips-input.component';
15
6
  export * from './lib/copy-text-button/copy-text-button.component';
7
+ export * from './lib/date-picker/date-picker.component';
8
+ export * from './lib/date-range-picker/date-range-picker.component';
16
9
  export * from './lib/drag-and-drop-file-input/drag-and-drop-file-input.component';
10
+ export * from './lib/dropdown-multiselect/dropdown-multiselect.component';
11
+ export * from './lib/dropdown-multiselect/dropdown-multiselect.model';
12
+ export * from './lib/dropdown-selector/dropdown-selector.component';
13
+ export * from './lib/dropdown-selector/dropdown-selector.model';
14
+ export * from './lib/editable-label/editable-label.directive';
17
15
  export * from './lib/navigation-button/navigation-button.component';
18
- export * from './lib/viewport-intersector/viewport-intersector.component';
19
- export * from './lib/checkbox/checkbox.component';
20
16
  export * from './lib/search-input/search-input.component';
21
- export * from './lib/date-range-picker/date-range-picker.component';
22
- export * from './lib/editable-label/editable-label.directive';
17
+ export * from './lib/star-toggle/star-toggle.component';
18
+ export * from './lib/text-area/text-area.component';
19
+ export * from './lib/text-input/text-input.component';
20
+ export * from './lib/ui-inputs.module';
21
+ export * from './lib/viewport-intersector/viewport-intersector.component';
22
+ export * from './lib/previous-next-buttons/previous-next-buttons.component';
23
23
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,uCAAuC,CAAA;AACrD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2DAA2D,CAAA;AACzE,cAAc,2CAA2C,CAAA;AACzD,cAAc,wBAAwB,CAAA;AACtC,cAAc,kBAAkB,CAAA;AAChC,cAAc,mDAAmD,CAAA;AACjE,cAAc,mEAAmE,CAAA;AACjF,cAAc,qDAAqD,CAAA;AACnE,cAAc,2DAA2D,CAAA;AACzE,cAAc,mCAAmC,CAAA;AACjD,cAAc,2CAA2C,CAAA;AACzD,cAAc,qDAAqD,CAAA;AACnE,cAAc,+CAA+C,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/libs/ui/inputs/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAA;AACzD,cAAc,+BAA+B,CAAA;AAC7C,cAAc,2CAA2C,CAAA;AACzD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AACvD,cAAc,mDAAmD,CAAA;AACjE,cAAc,yCAAyC,CAAA;AACvD,cAAc,qDAAqD,CAAA;AACnE,cAAc,mEAAmE,CAAA;AACjF,cAAc,2DAA2D,CAAA;AACzE,cAAc,uDAAuD,CAAA;AACrE,cAAc,qDAAqD,CAAA;AACnE,cAAc,iDAAiD,CAAA;AAC/D,cAAc,+CAA+C,CAAA;AAC7D,cAAc,qDAAqD,CAAA;AACnE,cAAc,2CAA2C,CAAA;AACzD,cAAc,yCAAyC,CAAA;AACvD,cAAc,qCAAqC,CAAA;AACnD,cAAc,uCAAuC,CAAA;AACrD,cAAc,wBAAwB,CAAA;AACtC,cAAc,2DAA2D,CAAA;AACzE,cAAc,6DAA6D,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAOa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAQ;IAExB,IAAa,IAAI,CACf,KAAK,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,EAoBjE;IAEQ,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACd,WAAW,qBAA2B;IAEhD,IAAI,SAAS,WAEZ;IAED,WAAW,CAAC,KAAK,EAAE,KAAK;yCAlCb,eAAe;2CAAf,eAAe;CAuC3B"}
1
+ {"version":3,"file":"button.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/button/button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAGtB,qBAOa,eAAe;IAC1B,OAAO,CAAC,QAAQ,CAAsB;IAEtC,IAAa,IAAI,CACf,KAAK,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,EAoBjE;IAEQ,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACd,WAAW,qBAA2B;IAEhD,IAAI,SAAS,WAEZ;IAED,WAAW,CAAC,KAAK,EAAE,KAAK;yCAlCb,eAAe;2CAAf,eAAe;CAuC3B"}
@@ -0,0 +1,9 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DatePickerComponent {
4
+ date: Date;
5
+ dateChange: EventEmitter<Date>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatePickerComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatePickerComponent, "gn-ui-date-picker", never, { "date": { "alias": "date"; "required": false; }; }, { "dateChange": "dateChange"; }, never, never, true, never>;
8
+ }
9
+ //# sourceMappingURL=date-picker.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"date-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAA;;AAKtE,qBAOa,mBAAmB;IACrB,IAAI,EAAE,IAAI,CAAA;IACT,UAAU,qBAA2B;yCAFpC,mBAAmB;2CAAnB,mBAAmB;CAG/B"}
@@ -6,6 +6,6 @@ export declare class DateRangePickerComponent {
6
6
  startDateSelected(event: MatDatepickerInputEvent<Date>): void;
7
7
  endDateSelected(event: MatDatepickerInputEvent<Date>): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "gn-ui-date-range-picker", never, {}, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateRangePickerComponent, "gn-ui-date-range-picker", never, {}, {}, never, never, true, never>;
10
10
  }
11
11
  //# sourceMappingURL=date-range-picker.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"date-range-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAA;;AAEtE,qBAKa,wBAAwB;IACnC,SAAS,EAAE,IAAI,CAAA;IACf,OAAO,EAAE,IAAI,CAAA;IAEb,iBAAiB,CAAC,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC;IAItD,eAAe,CAAC,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC;yCARzC,wBAAwB;2CAAxB,wBAAwB;CAWpC"}
1
+ {"version":3,"file":"date-range-picker.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,uBAAuB,EAExB,MAAM,8BAA8B,CAAA;;AAGrC,qBAOa,wBAAwB;IACnC,SAAS,EAAE,IAAI,CAAA;IACf,OAAO,EAAE,IAAI,CAAA;IAEb,iBAAiB,CAAC,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC;IAItD,eAAe,CAAC,KAAK,EAAE,uBAAuB,CAAC,IAAI,CAAC;yCARzC,wBAAwB;2CAAxB,wBAAwB;CAWpC"}
@@ -35,6 +35,6 @@ export declare class DropdownSelectorComponent implements OnInit {
35
35
  get focusedIndex(): number | -1;
36
36
  selectIfEnter(event: KeyboardEvent, choice: DropdownChoice): void;
37
37
  static ɵfac: i0.ɵɵFactoryDeclaration<DropdownSelectorComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<DropdownSelectorComponent, "gn-ui-dropdown-selector", never, { "title": { "alias": "title"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "ariaName": { "alias": "ariaName"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "extraBtnClass": { "alias": "extraBtnClass"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "selectValue": "selectValue"; }, never, never, false, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownSelectorComponent, "gn-ui-dropdown-selector", never, { "title": { "alias": "title"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "ariaName": { "alias": "ariaName"; "required": false; }; "choices": { "alias": "choices"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; "extraBtnClass": { "alias": "extraBtnClass"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "selectValue": "selectValue"; }, never, never, true, never>;
39
39
  }
40
40
  //# sourceMappingURL=dropdown-selector.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown-selector.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EAClB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAGL,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EAGV,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;;AAI1D,qBAMa,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,UAAO;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC9B,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;IACjC,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,SAAK;IAClB,QAAQ,SAAK;IACZ,WAAW,wBAA8C;IACvC,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAC5D,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IAED,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IAEnC,IAAI,cAAc,IAAI,cAAc,CAKnC;IAED,IAAI,EAAE,WAEL;IAED,cAAc,IAAI,MAAM;IAIxB,QAAQ,IAAI,IAAI;IAOhB,UAAU,CAAC,MAAM,EAAE,cAAc;IAIjC,aAAa,CAAC,MAAM,EAAE,cAAc;IAMpC,WAAW;IAcX,YAAY;IAIZ,cAAc;IAId,aAAa;IAIP,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAuB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAczC,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;IAED,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc;yCAlJ/C,yBAAyB;2CAAzB,yBAAyB;CAwJrC"}
1
+ {"version":3,"file":"dropdown-selector.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,gBAAgB,EAChB,iBAAiB,EAElB,MAAM,sBAAsB,CAAA;AAC7B,OAAO,EAGL,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EAGV,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;;AAQ1D,qBAca,yBAA0B,YAAW,MAAM;IAC7C,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,UAAO;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC9B,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAA;IACjC,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,SAAK;IAClB,QAAQ,SAAK;IACZ,WAAW,wBAA8C;IACvC,aAAa,EAAE,gBAAgB,CAAA;IAC3B,OAAO,EAAE,mBAAmB,CAAA;IAC5D,WAAW,UAAQ;IACnB,YAAY,SAAS;IACrB,gBAAgB,SAAS;IACzB,gBAAgB,EAAE,iBAAiB,EAAE,CAepC;IAED,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,CAAA;IAEnC,IAAI,cAAc,IAAI,cAAc,CAKnC;IAED,IAAI,EAAE,WAEL;IAED,cAAc,IAAI,MAAM;IAIxB,QAAQ,IAAI,IAAI;IAOhB,UAAU,CAAC,MAAM,EAAE,cAAc;IAIjC,aAAa,CAAC,MAAM,EAAE,cAAc;IAMpC,WAAW;IAcX,YAAY;IAIZ,cAAc;IAId,aAAa;IAIP,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAuB/C,oBAAoB,CAAC,KAAK,EAAE,aAAa;IAczC,cAAc,CAAC,KAAK,EAAE,MAAM;IAS5B,IAAI,YAAY,IAAI,MAAM,GAAG,CAAC,CAAC,CAM9B;IAED,aAAa,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc;yCAlJ/C,yBAAyB;2CAAzB,yBAAyB;CAwJrC"}
@@ -0,0 +1,14 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class FilesDropDirective {
4
+ dragFilesOver: EventEmitter<boolean>;
5
+ dropFiles: EventEmitter<File[]>;
6
+ dragEnterCounter: number;
7
+ _onDragEnter(event: DragEvent): void;
8
+ _onDragOver(event: DragEvent): void;
9
+ _onDragLeave(event: DragEvent): void;
10
+ _onDrop(event: DragEvent): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<FilesDropDirective, never>;
12
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FilesDropDirective, "[gnUiFilesDrop]", never, {}, { "dragFilesOver": "dragFilesOver"; "dropFiles": "dropFiles"; }, never, never, true, never>;
13
+ }
14
+ //# sourceMappingURL=files-drop.directive.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"files-drop.directive.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,YAAY,EAAE,MAAM,eAAe,CAAA;;AAE7E,qBAIa,kBAAkB;IACnB,aAAa,EAAE,YAAY,CAAC,OAAO,CAAC,CAAqB;IACzD,SAAS,EAAE,YAAY,CAAC,IAAI,EAAE,CAAC,CAAqB;IAE9D,gBAAgB,SAAI;IAGpB,YAAY,CAAC,KAAK,EAAE,SAAS;IAO7B,WAAW,CAAC,KAAK,EAAE,SAAS;IAK5B,YAAY,CAAC,KAAK,EAAE,SAAS;IAS7B,OAAO,CAAC,KAAK,EAAE,SAAS;yCA5Bb,kBAAkB;2CAAlB,kBAAkB;CAsC9B"}
@@ -0,0 +1,44 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ImageInputComponent {
5
+ private http;
6
+ private cd;
7
+ maxSizeMB: number;
8
+ previewUrl?: string;
9
+ altText?: string;
10
+ uploadProgress?: number;
11
+ uploadError?: boolean;
12
+ fileChange: EventEmitter<File>;
13
+ urlChange: EventEmitter<string>;
14
+ uploadCancel: EventEmitter<void>;
15
+ delete: EventEmitter<void>;
16
+ altTextChange: EventEmitter<string>;
17
+ dragFilesOver: boolean;
18
+ showUrlInput: boolean;
19
+ downloadError: boolean;
20
+ showAltTextInput: boolean;
21
+ urlInputValue?: string;
22
+ lastUploadType?: 'file' | 'url';
23
+ lastUploadContent?: string | File;
24
+ constructor(http: HttpClient, cd: ChangeDetectorRef);
25
+ getPrimaryText(): "input.image.uploadErrorLabel" | "input.image.uploadProgressLabel" | "input.image.selectFileLabel";
26
+ getSecondaryText(): "input.image.uploadErrorRetry" | "input.image.uploadProgressCancel" | "input.image.dropFileLabel";
27
+ handleDragFilesOver(dragFilesOver: boolean): void;
28
+ handleDropFiles(files: File[]): void;
29
+ handleFileInput(event: Event): void;
30
+ displayUrlInput(): void;
31
+ handleUrlChange(event: Event): void;
32
+ downloadUrl(): Promise<void>;
33
+ handleSecondaryTextClick(): void;
34
+ handleCancel(): void;
35
+ handleRetry(): void;
36
+ handleDelete(): void;
37
+ toggleAltTextInput(): void;
38
+ handleAltTextChange(event: Event): void;
39
+ private filterTypeImage;
40
+ private resizeAndEmit;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageInputComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ImageInputComponent, "gn-ui-image-input", never, { "maxSizeMB": { "alias": "maxSizeMB"; "required": false; }; "previewUrl": { "alias": "previewUrl"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; "uploadProgress": { "alias": "uploadProgress"; "required": false; }; "uploadError": { "alias": "uploadError"; "required": false; }; }, { "fileChange": "fileChange"; "urlChange": "urlChange"; "uploadCancel": "uploadCancel"; "delete": "delete"; "altTextChange": "altTextChange"; }, never, never, true, never>;
43
+ }
44
+ //# sourceMappingURL=image-input.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"image-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/image-input/image-input.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAEL,iBAAiB,EAEjB,YAAY,EAGb,MAAM,eAAe,CAAA;;AAUtB,qBAea,mBAAmB;IAqBlB,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,EAAE;IApBvC,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,WAAW,CAAC,EAAE,OAAO,CAAA;IACpB,UAAU,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACnD,SAAS,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IACpD,YAAY,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IACrD,MAAM,EAAE,YAAY,CAAC,IAAI,CAAC,CAAqB;IAC/C,aAAa,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IAElE,aAAa,UAAQ;IACrB,YAAY,UAAQ;IACpB,aAAa,UAAQ;IACrB,gBAAgB,UAAQ;IAExB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,cAAc,CAAC,EAAE,MAAM,GAAG,KAAK,CAAA;IAC/B,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;gBAEb,IAAI,EAAE,UAAU,EAAU,EAAE,EAAE,iBAAiB;IAEnE,cAAc;IAUd,gBAAgB;IAUhB,mBAAmB,CAAC,aAAa,EAAE,OAAO;IAO1C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE;IAS7B,eAAe,CAAC,KAAK,EAAE,KAAK;IAQ5B,eAAe;IAKf,eAAe,CAAC,KAAK,EAAE,KAAK;IAKtB,WAAW;IAgCjB,wBAAwB;IAQxB,YAAY;IAIZ,WAAW;IAWX,YAAY;IAIZ,kBAAkB;IAIlB,mBAAmB,CAAC,KAAK,EAAE,KAAK;IAKhC,OAAO,CAAC,eAAe;IAMvB,OAAO,CAAC,aAAa;yCAvJV,mBAAmB;2CAAnB,mBAAmB;CA8J/B"}
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PreviousNextButtonsComponent {
4
+ isFirst: boolean;
5
+ isLast: boolean;
6
+ directionButtonClicked: EventEmitter<string>;
7
+ previousButtonClicked(): void;
8
+ nextButtonClicked(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<PreviousNextButtonsComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<PreviousNextButtonsComponent, "gn-ui-previous-next-buttons", never, { "isFirst": { "alias": "isFirst"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; }, { "directionButtonClicked": "directionButtonClicked"; }, never, never, true, never>;
11
+ }
12
+ //# sourceMappingURL=previous-next-buttons.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"previous-next-buttons.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,YAAY,EAGb,MAAM,eAAe,CAAA;;AAItB,qBAQa,4BAA4B;IAC9B,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,OAAO,CAAA;IAEd,sBAAsB,EAAE,YAAY,CAAC,MAAM,CAAC,CAAqB;IAE3E,qBAAqB;IAIrB,iBAAiB;yCAVN,4BAA4B;2CAA5B,4BAA4B;CAaxC"}
@@ -2,16 +2,22 @@ import { AfterViewInit } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TextAreaComponent implements AfterViewInit {
5
+ private readonly baseClasses;
6
+ private readonly disabledClasses;
5
7
  value: string;
8
+ disabled: boolean;
9
+ extraClass: string;
6
10
  placeholder: string;
7
11
  required: boolean;
8
12
  rawChange: Subject<string>;
9
13
  valueChange: import("rxjs").Observable<string>;
10
14
  input: any;
15
+ constructor();
16
+ get classList(): string;
11
17
  ngAfterViewInit(): void;
12
18
  checkRequired(value: any): void;
13
19
  handleChange($event: any): void;
14
20
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "gn-ui-text-area", never, { "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "gn-ui-text-area", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
16
22
  }
17
23
  //# sourceMappingURL=text-area.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAMa,iBAAkB,YAAW,aAAa;IAC5C,KAAK,SAAK;IACV,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCArBR,iBAAiB;2CAAjB,iBAAiB;CA0B7B"}
1
+ {"version":3,"file":"text-area.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-area/text-area.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAG9B,qBAMa,iBAAkB,YAAW,aAAa;IACrD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAQ;IACpC,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAQ;IAE/B,KAAK,SAAK;IACV,QAAQ,UAAQ;IAChB,UAAU,SAAK;IACf,WAAW,EAAE,MAAM,CAAA;IACnB,QAAQ,UAAQ;IAEzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;;IAoBzB,IAAI,SAAS,WAIZ;IAED,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCAlDR,iBAAiB;2CAAjB,iBAAiB;CAuD7B"}
@@ -2,16 +2,19 @@ import { AfterViewInit } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class TextInputComponent implements AfterViewInit {
5
+ private readonly baseClass;
5
6
  value: string;
7
+ extraClass: string;
6
8
  hint: string;
7
9
  required: boolean;
8
10
  rawChange: Subject<string>;
9
11
  valueChange: import("rxjs").Observable<string>;
10
12
  input: any;
13
+ get classList(): string;
11
14
  ngAfterViewInit(): void;
12
15
  checkRequired(value: any): void;
13
16
  handleChange($event: any): void;
14
17
  static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "gn-ui-text-input", never, { "value": { "alias": "value"; "required": false; }; "extraClass": { "alias": "extraClass"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
16
19
  }
17
20
  //# sourceMappingURL=text-input.component.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-input/text-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAKa,kBAAmB,YAAW,aAAa;IAC7C,KAAK,SAAK;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,UAAQ;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAE/C,KAAK,MAAA;IAEzB,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCApBR,kBAAkB;2CAAlB,kBAAkB;CAyB9B"}
1
+ {"version":3,"file":"text-input.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/inputs/src/lib/text-input/text-input.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAKd,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA;;AAE9B,qBAKa,kBAAmB,YAAW,aAAa;IACtD,OAAO,CAAC,QAAQ,CAAC,SAAS,CASf;IAEF,KAAK,SAAK;IACV,UAAU,SAAK;IACf,IAAI,EAAE,MAAM,CAAA;IACZ,QAAQ,UAAQ;IACzB,SAAS,kBAAwB;IACvB,WAAW,oCAA8C;IAC/C,KAAK,MAAA;IAEzB,IAAI,SAAS,WAEZ;IAED,eAAe;IAIf,aAAa,CAAC,KAAK,KAAA;IAOnB,YAAY,CAAC,MAAM,KAAA;yCAnCR,kBAAkB;2CAAlB,kBAAkB;CAwC9B"}