geonetwork-ui 2.3.0-dev.3d65a13b → 2.3.0-dev.6083baae

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 (243) hide show
  1. package/esm2022/index.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +5 -1
  3. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +35 -7
  4. package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +1 -2
  5. package/esm2022/libs/feature/editor/src/index.mjs +2 -2
  6. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +6 -2
  7. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +11 -0
  8. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +28 -0
  9. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +11 -0
  10. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +45 -0
  11. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +50 -0
  12. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
  13. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
  14. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +93 -0
  15. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +2 -0
  16. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +10 -0
  17. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +39 -0
  18. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +10 -10
  19. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +1 -1
  20. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +3 -3
  21. package/esm2022/libs/feature/notifications/src/index.mjs +4 -0
  22. package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +18 -0
  23. package/esm2022/libs/feature/notifications/src/lib/notification.model.mjs +2 -0
  24. package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +49 -0
  25. package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +29 -0
  26. package/esm2022/libs/feature/search/src/lib/results-table/results-table.component.mjs +3 -3
  27. package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +3 -3
  28. package/esm2022/libs/ui/elements/src/index.mjs +15 -15
  29. package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +5 -5
  30. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +45 -0
  31. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +3 -3
  32. package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +34 -0
  33. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +3 -3
  34. package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +4 -3
  35. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +6 -5
  36. package/esm2022/libs/ui/inputs/src/index.mjs +1 -2
  37. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +2 -1
  38. package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +59 -0
  39. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +183 -0
  40. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +10 -23
  41. package/esm2022/libs/ui/layout/src/index.mjs +6 -5
  42. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +18 -0
  43. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -0
  44. package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +60 -0
  45. package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -6
  46. package/esm2022/translations/de.json +18 -0
  47. package/esm2022/translations/en.json +18 -0
  48. package/esm2022/translations/es.json +18 -0
  49. package/esm2022/translations/fr.json +18 -0
  50. package/esm2022/translations/it.json +18 -0
  51. package/esm2022/translations/nl.json +18 -0
  52. package/esm2022/translations/pt.json +18 -0
  53. package/fesm2022/geonetwork-ui.mjs +2049 -1426
  54. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  55. package/index.d.ts +1 -0
  56. package/index.d.ts.map +1 -1
  57. package/index.ts +1 -0
  58. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  59. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +9 -5
  60. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  61. package/libs/data-access/gn4/src/openapi/model/models.d.ts +0 -1
  62. package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -1
  63. package/libs/feature/editor/src/index.d.ts +1 -1
  64. package/libs/feature/editor/src/index.d.ts.map +1 -1
  65. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +8 -5
  66. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  67. 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
  68. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
  69. 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
  70. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
  71. 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
  72. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
  73. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +16 -0
  74. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
  75. 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
  76. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
  77. 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
  78. 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
  79. 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
  80. 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
  81. package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.d.ts +4 -3
  82. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -0
  83. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +1 -0
  84. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -0
  85. package/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.d.ts +3 -3
  86. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -0
  87. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +1 -1
  88. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  89. package/libs/feature/editor/src/lib/models/fields.model.d.ts +1 -1
  90. package/libs/feature/notifications/src/index.d.ts +4 -0
  91. package/libs/feature/notifications/src/index.d.ts.map +1 -0
  92. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts +7 -0
  93. package/libs/feature/notifications/src/lib/feature-notifications.module.d.ts.map +1 -0
  94. package/libs/feature/notifications/src/lib/notification.model.d.ts +7 -0
  95. package/libs/feature/notifications/src/lib/notification.model.d.ts.map +1 -0
  96. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts +12 -0
  97. package/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.d.ts.map +1 -0
  98. package/libs/feature/notifications/src/lib/notifications.service.d.ts +15 -0
  99. package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -0
  100. package/libs/ui/elements/src/index.d.ts +14 -14
  101. package/libs/ui/elements/src/index.d.ts.map +1 -1
  102. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +13 -0
  103. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -0
  104. package/libs/ui/elements/src/lib/notification/notification.component.d.ts +13 -0
  105. package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -0
  106. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +1 -1
  107. package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -1
  108. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +20 -20
  109. package/libs/ui/inputs/src/index.d.ts +0 -1
  110. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  111. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  112. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts +14 -0
  113. package/libs/ui/inputs/src/lib/files-drop/files-drop.directive.d.ts.map +1 -0
  114. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +44 -0
  115. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -0
  116. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +26 -33
  117. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  118. package/libs/ui/layout/src/index.d.ts +5 -4
  119. package/libs/ui/layout/src/index.d.ts.map +1 -1
  120. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +8 -0
  121. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -0
  122. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -0
  123. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -0
  124. package/libs/util/shared/src/lib/utils/image-resize.d.ts +3 -0
  125. package/libs/util/shared/src/lib/utils/image-resize.d.ts.map +1 -0
  126. package/libs/util/shared/src/lib/utils/index.d.ts +7 -5
  127. package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
  128. package/package.json +1 -1
  129. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +6 -0
  130. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +43 -12
  131. package/src/libs/data-access/gn4/src/openapi/model/models.ts +0 -1
  132. package/src/libs/data-access/gn4/src/spec.yaml +1 -1
  133. package/src/libs/feature/editor/src/index.ts +1 -1
  134. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +8 -1
  135. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +8 -0
  136. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +70 -0
  137. 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
  138. 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
  139. 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
  140. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.css +5 -0
  141. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +20 -0
  142. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +44 -0
  143. 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
  144. 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
  145. 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
  146. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.html +4 -4
  147. package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.ts +31 -5
  148. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.html +1 -0
  149. package/src/libs/feature/editor/src/lib/{record-form → components/record-form}/record-form.component.ts +23 -4
  150. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +9 -9
  151. package/src/libs/feature/editor/src/lib/models/fields.model.ts +1 -1
  152. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.html +1 -1
  153. package/src/libs/feature/notifications/src/index.ts +3 -0
  154. package/src/libs/feature/notifications/src/lib/feature-notifications.module.ts +10 -0
  155. package/src/libs/feature/notifications/src/lib/notification.model.ts +6 -0
  156. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.css +0 -0
  157. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.html +17 -0
  158. package/src/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.ts +44 -0
  159. package/src/libs/feature/notifications/src/lib/notifications.service.ts +27 -0
  160. package/src/libs/feature/search/src/lib/results-table/results-table.component.html +3 -3
  161. package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +5 -5
  162. package/src/libs/ui/elements/src/index.ts +14 -14
  163. package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +1 -1
  164. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.css +0 -5
  165. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +0 -21
  166. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -14
  167. package/src/libs/ui/elements/src/lib/notification/notification.component.css +0 -0
  168. package/src/libs/ui/elements/src/lib/notification/notification.component.html +52 -0
  169. package/src/libs/ui/elements/src/lib/notification/notification.component.ts +31 -0
  170. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +1 -1
  171. package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +5 -3
  172. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +1 -1
  173. package/src/libs/ui/inputs/src/index.ts +0 -1
  174. package/src/libs/ui/inputs/src/lib/button/button.component.ts +1 -1
  175. package/src/libs/ui/inputs/src/lib/files-drop/files-drop.directive.ts +45 -0
  176. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +0 -0
  177. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +146 -0
  178. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +193 -0
  179. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +3 -19
  180. package/src/libs/ui/layout/src/index.ts +5 -4
  181. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.css +5 -0
  182. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +18 -0
  183. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +16 -0
  184. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +3 -0
  185. package/src/libs/util/shared/src/lib/utils/image-resize.ts +72 -0
  186. package/src/libs/util/shared/src/lib/utils/index.ts +7 -5
  187. package/tailwind.base.css +29 -0
  188. package/translations/de.json +18 -0
  189. package/translations/en.json +18 -0
  190. package/translations/es.json +18 -0
  191. package/translations/fr.json +18 -0
  192. package/translations/it.json +18 -0
  193. package/translations/nl.json +18 -0
  194. package/translations/pt.json +18 -0
  195. package/translations/sk.json +18 -0
  196. package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +0 -13
  197. package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +0 -30
  198. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +0 -11
  199. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +0 -27
  200. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +0 -11
  201. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +0 -27
  202. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +0 -49
  203. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +0 -11
  204. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +0 -11
  205. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +0 -76
  206. package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +0 -2
  207. package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +0 -10
  208. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +0 -18
  209. package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +0 -1
  210. package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +0 -1
  211. package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +0 -1
  212. package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +0 -1
  213. package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +0 -1
  214. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +0 -11
  215. package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +0 -1
  216. package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +0 -1
  217. package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +0 -1
  218. package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +0 -1
  219. package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +0 -1
  220. package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +0 -1
  221. package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +0 -1
  222. package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +0 -18
  223. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +0 -11
  224. package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +0 -15
  225. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.d.ts +0 -0
  226. /package/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.d.ts +0 -0
  227. /package/src/libs/feature/editor/src/lib/{record-form/record-form.component.css → components/overview-upload/overview-upload.component.css} +0 -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.css +0 -0
  229. /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
  230. /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
  231. /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
  232. /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
  233. /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
  234. /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
  235. /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
  236. /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
  237. /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
  238. /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
  239. /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
  240. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.component.css +0 -0
  241. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/form-field.model.ts +0 -0
  242. /package/src/libs/{ui/inputs/src/lib → feature/editor/src/lib/components/record-form}/form-field/index.ts +0 -0
  243. /package/src/libs/{ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css → feature/editor/src/lib/components/record-form/record-form.component.css} +0 -0
@@ -0,0 +1,60 @@
1
+ export function downsizeImage(blob, maxWidth, maxHeight) {
2
+ return new Promise((resolve, reject) => {
3
+ const image = new Image();
4
+ image.src = URL.createObjectURL(blob);
5
+ image.onload = () => {
6
+ let width = image.width;
7
+ let height = image.height;
8
+ if (width > maxWidth || height > maxHeight) {
9
+ if (width > height) {
10
+ height = height * (maxWidth / width);
11
+ width = maxWidth;
12
+ }
13
+ else {
14
+ width = width * (maxHeight / height);
15
+ height = maxHeight;
16
+ }
17
+ }
18
+ const canvas = document.createElement('canvas');
19
+ canvas.width = width;
20
+ canvas.height = height;
21
+ const context = canvas.getContext('2d');
22
+ context.drawImage(image, 0, 0, width, height);
23
+ canvas.toBlob(resolve, blob.type);
24
+ };
25
+ image.onerror = reject;
26
+ });
27
+ }
28
+ export function downgradeImage(blob, maxSizeBytes) {
29
+ return new Promise((resolve, reject) => {
30
+ const image = new Image();
31
+ image.src = URL.createObjectURL(blob);
32
+ image.onload = () => {
33
+ const width = image.width;
34
+ const height = image.height;
35
+ let quality = 1.0;
36
+ const canvas = document.createElement('canvas');
37
+ canvas.width = width;
38
+ canvas.height = height;
39
+ const context = canvas.getContext('2d');
40
+ context.drawImage(image, 0, 0, width, height);
41
+ const compressAndResolveBlob = (blobToCompress) => {
42
+ if (blobToCompress.size <= maxSizeBytes) {
43
+ resolve(blobToCompress);
44
+ }
45
+ else {
46
+ quality -= 0.1;
47
+ if (quality >= 0) {
48
+ canvas.toBlob(compressAndResolveBlob, blob.type, quality);
49
+ }
50
+ else {
51
+ reject('Unable to compress image below max size');
52
+ }
53
+ }
54
+ };
55
+ canvas.toBlob(compressAndResolveBlob, blob.type, quality);
56
+ };
57
+ image.onerror = reject;
58
+ });
59
+ }
60
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1hZ2UtcmVzaXplLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91dGlsL3NoYXJlZC9zcmMvbGliL3V0aWxzL2ltYWdlLXJlc2l6ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLFVBQVUsYUFBYSxDQUMzQixJQUFVLEVBQ1YsUUFBZ0IsRUFDaEIsU0FBaUI7SUFFakIsT0FBTyxJQUFJLE9BQU8sQ0FBQyxDQUFDLE9BQU8sRUFBRSxNQUFNLEVBQUUsRUFBRTtRQUNyQyxNQUFNLEtBQUssR0FBRyxJQUFJLEtBQUssRUFBRSxDQUFBO1FBQ3pCLEtBQUssQ0FBQyxHQUFHLEdBQUcsR0FBRyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQTtRQUNyQyxLQUFLLENBQUMsTUFBTSxHQUFHLEdBQUcsRUFBRTtZQUNsQixJQUFJLEtBQUssR0FBRyxLQUFLLENBQUMsS0FBSyxDQUFBO1lBQ3ZCLElBQUksTUFBTSxHQUFHLEtBQUssQ0FBQyxNQUFNLENBQUE7WUFFekIsSUFBSSxLQUFLLEdBQUcsUUFBUSxJQUFJLE1BQU0sR0FBRyxTQUFTLEVBQUU7Z0JBQzFDLElBQUksS0FBSyxHQUFHLE1BQU0sRUFBRTtvQkFDbEIsTUFBTSxHQUFHLE1BQU0sR0FBRyxDQUFDLFFBQVEsR0FBRyxLQUFLLENBQUMsQ0FBQTtvQkFDcEMsS0FBSyxHQUFHLFFBQVEsQ0FBQTtpQkFDakI7cUJBQU07b0JBQ0wsS0FBSyxHQUFHLEtBQUssR0FBRyxDQUFDLFNBQVMsR0FBRyxNQUFNLENBQUMsQ0FBQTtvQkFDcEMsTUFBTSxHQUFHLFNBQVMsQ0FBQTtpQkFDbkI7YUFDRjtZQUVELE1BQU0sTUFBTSxHQUFHLFFBQVEsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLENBQUE7WUFDL0MsTUFBTSxDQUFDLEtBQUssR0FBRyxLQUFLLENBQUE7WUFDcEIsTUFBTSxDQUFDLE1BQU0sR0FBRyxNQUFNLENBQUE7WUFFdEIsTUFBTSxPQUFPLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsQ0FBQTtZQUN2QyxPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLEtBQUssRUFBRSxNQUFNLENBQUMsQ0FBQTtZQUU3QyxNQUFNLENBQUMsTUFBTSxDQUFDLE9BQU8sRUFBRSxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUE7UUFDbkMsQ0FBQyxDQUFBO1FBQ0QsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUE7SUFDeEIsQ0FBQyxDQUFDLENBQUE7QUFDSixDQUFDO0FBRUQsTUFBTSxVQUFVLGNBQWMsQ0FDNUIsSUFBVSxFQUNWLFlBQW9CO0lBRXBCLE9BQU8sSUFBSSxPQUFPLENBQUMsQ0FBQyxPQUFPLEVBQUUsTUFBTSxFQUFFLEVBQUU7UUFDckMsTUFBTSxLQUFLLEdBQUcsSUFBSSxLQUFLLEVBQUUsQ0FBQTtRQUN6QixLQUFLLENBQUMsR0FBRyxHQUFHLEdBQUcsQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUE7UUFDckMsS0FBSyxDQUFDLE1BQU0sR0FBRyxHQUFHLEVBQUU7WUFDbEIsTUFBTSxLQUFLLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQTtZQUN6QixNQUFNLE1BQU0sR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFBO1lBQzNCLElBQUksT0FBTyxHQUFHLEdBQUcsQ0FBQTtZQUVqQixNQUFNLE1BQU0sR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxDQUFBO1lBQy9DLE1BQU0sQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFBO1lBQ3BCLE1BQU0sQ0FBQyxNQUFNLEdBQUcsTUFBTSxDQUFBO1lBRXRCLE1BQU0sT0FBTyxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsSUFBSSxDQUFDLENBQUE7WUFDdkMsT0FBTyxDQUFDLFNBQVMsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxLQUFLLEVBQUUsTUFBTSxDQUFDLENBQUE7WUFFN0MsTUFBTSxzQkFBc0IsR0FBRyxDQUFDLGNBQW9CLEVBQUUsRUFBRTtnQkFDdEQsSUFBSSxjQUFjLENBQUMsSUFBSSxJQUFJLFlBQVksRUFBRTtvQkFDdkMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxDQUFBO2lCQUN4QjtxQkFBTTtvQkFDTCxPQUFPLElBQUksR0FBRyxDQUFBO29CQUNkLElBQUksT0FBTyxJQUFJLENBQUMsRUFBRTt3QkFDaEIsTUFBTSxDQUFDLE1BQU0sQ0FBQyxzQkFBc0IsRUFBRSxJQUFJLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFBO3FCQUMxRDt5QkFBTTt3QkFDTCxNQUFNLENBQUMseUNBQXlDLENBQUMsQ0FBQTtxQkFDbEQ7aUJBQ0Y7WUFDSCxDQUFDLENBQUE7WUFFRCxNQUFNLENBQUMsTUFBTSxDQUFDLHNCQUFzQixFQUFFLElBQUksQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUE7UUFDM0QsQ0FBQyxDQUFBO1FBQ0QsS0FBSyxDQUFDLE9BQU8sR0FBRyxNQUFNLENBQUE7SUFDeEIsQ0FBQyxDQUFDLENBQUE7QUFDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGZ1bmN0aW9uIGRvd25zaXplSW1hZ2UoXG4gIGJsb2I6IEJsb2IsXG4gIG1heFdpZHRoOiBudW1iZXIsXG4gIG1heEhlaWdodDogbnVtYmVyXG4pOiBQcm9taXNlPEJsb2I+IHtcbiAgcmV0dXJuIG5ldyBQcm9taXNlKChyZXNvbHZlLCByZWplY3QpID0+IHtcbiAgICBjb25zdCBpbWFnZSA9IG5ldyBJbWFnZSgpXG4gICAgaW1hZ2Uuc3JjID0gVVJMLmNyZWF0ZU9iamVjdFVSTChibG9iKVxuICAgIGltYWdlLm9ubG9hZCA9ICgpID0+IHtcbiAgICAgIGxldCB3aWR0aCA9IGltYWdlLndpZHRoXG4gICAgICBsZXQgaGVpZ2h0ID0gaW1hZ2UuaGVpZ2h0XG5cbiAgICAgIGlmICh3aWR0aCA+IG1heFdpZHRoIHx8IGhlaWdodCA+IG1heEhlaWdodCkge1xuICAgICAgICBpZiAod2lkdGggPiBoZWlnaHQpIHtcbiAgICAgICAgICBoZWlnaHQgPSBoZWlnaHQgKiAobWF4V2lkdGggLyB3aWR0aClcbiAgICAgICAgICB3aWR0aCA9IG1heFdpZHRoXG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgd2lkdGggPSB3aWR0aCAqIChtYXhIZWlnaHQgLyBoZWlnaHQpXG4gICAgICAgICAgaGVpZ2h0ID0gbWF4SGVpZ2h0XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgY29uc3QgY2FudmFzID0gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCgnY2FudmFzJylcbiAgICAgIGNhbnZhcy53aWR0aCA9IHdpZHRoXG4gICAgICBjYW52YXMuaGVpZ2h0ID0gaGVpZ2h0XG5cbiAgICAgIGNvbnN0IGNvbnRleHQgPSBjYW52YXMuZ2V0Q29udGV4dCgnMmQnKVxuICAgICAgY29udGV4dC5kcmF3SW1hZ2UoaW1hZ2UsIDAsIDAsIHdpZHRoLCBoZWlnaHQpXG5cbiAgICAgIGNhbnZhcy50b0Jsb2IocmVzb2x2ZSwgYmxvYi50eXBlKVxuICAgIH1cbiAgICBpbWFnZS5vbmVycm9yID0gcmVqZWN0XG4gIH0pXG59XG5cbmV4cG9ydCBmdW5jdGlvbiBkb3duZ3JhZGVJbWFnZShcbiAgYmxvYjogQmxvYixcbiAgbWF4U2l6ZUJ5dGVzOiBudW1iZXJcbik6IFByb21pc2U8QmxvYj4ge1xuICByZXR1cm4gbmV3IFByb21pc2UoKHJlc29sdmUsIHJlamVjdCkgPT4ge1xuICAgIGNvbnN0IGltYWdlID0gbmV3IEltYWdlKClcbiAgICBpbWFnZS5zcmMgPSBVUkwuY3JlYXRlT2JqZWN0VVJMKGJsb2IpXG4gICAgaW1hZ2Uub25sb2FkID0gKCkgPT4ge1xuICAgICAgY29uc3Qgd2lkdGggPSBpbWFnZS53aWR0aFxuICAgICAgY29uc3QgaGVpZ2h0ID0gaW1hZ2UuaGVpZ2h0XG4gICAgICBsZXQgcXVhbGl0eSA9IDEuMFxuXG4gICAgICBjb25zdCBjYW52YXMgPSBkb2N1bWVudC5jcmVhdGVFbGVtZW50KCdjYW52YXMnKVxuICAgICAgY2FudmFzLndpZHRoID0gd2lkdGhcbiAgICAgIGNhbnZhcy5oZWlnaHQgPSBoZWlnaHRcblxuICAgICAgY29uc3QgY29udGV4dCA9IGNhbnZhcy5nZXRDb250ZXh0KCcyZCcpXG4gICAgICBjb250ZXh0LmRyYXdJbWFnZShpbWFnZSwgMCwgMCwgd2lkdGgsIGhlaWdodClcblxuICAgICAgY29uc3QgY29tcHJlc3NBbmRSZXNvbHZlQmxvYiA9IChibG9iVG9Db21wcmVzczogQmxvYikgPT4ge1xuICAgICAgICBpZiAoYmxvYlRvQ29tcHJlc3Muc2l6ZSA8PSBtYXhTaXplQnl0ZXMpIHtcbiAgICAgICAgICByZXNvbHZlKGJsb2JUb0NvbXByZXNzKVxuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIHF1YWxpdHkgLT0gMC4xXG4gICAgICAgICAgaWYgKHF1YWxpdHkgPj0gMCkge1xuICAgICAgICAgICAgY2FudmFzLnRvQmxvYihjb21wcmVzc0FuZFJlc29sdmVCbG9iLCBibG9iLnR5cGUsIHF1YWxpdHkpXG4gICAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHJlamVjdCgnVW5hYmxlIHRvIGNvbXByZXNzIGltYWdlIGJlbG93IG1heCBzaXplJylcbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgICAgY2FudmFzLnRvQmxvYihjb21wcmVzc0FuZFJlc29sdmVCbG9iLCBibG9iLnR5cGUsIHF1YWxpdHkpXG4gICAgfVxuICAgIGltYWdlLm9uZXJyb3IgPSByZWplY3RcbiAgfSlcbn1cbiJdfQ==
@@ -1,10 +1,12 @@
1
+ export * from './bytes-convert';
2
+ export * from './event';
3
+ export * from './fuzzy-filter';
4
+ export * from './geojson';
5
+ export * from './image-resize';
1
6
  export * from './parse';
2
- export * from './strip-html';
3
7
  export * from './remove-whitespace';
4
- export * from './geojson';
5
8
  export * from './sort-by';
6
- export * from './url';
7
- export * from './event';
8
- export * from './fuzzy-filter';
9
+ export * from './strip-html';
9
10
  export * from './temporal-extent-union';
10
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvc2hhcmVkL3NyYy9saWIvdXRpbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUE7QUFDdkIsY0FBYyxjQUFjLENBQUE7QUFDNUIsY0FBYyxxQkFBcUIsQ0FBQTtBQUNuQyxjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLE9BQU8sQ0FBQTtBQUNyQixjQUFjLFNBQVMsQ0FBQTtBQUN2QixjQUFjLGdCQUFnQixDQUFBO0FBQzlCLGNBQWMseUJBQXlCLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3BhcnNlJ1xuZXhwb3J0ICogZnJvbSAnLi9zdHJpcC1odG1sJ1xuZXhwb3J0ICogZnJvbSAnLi9yZW1vdmUtd2hpdGVzcGFjZSdcbmV4cG9ydCAqIGZyb20gJy4vZ2VvanNvbidcbmV4cG9ydCAqIGZyb20gJy4vc29ydC1ieSdcbmV4cG9ydCAqIGZyb20gJy4vdXJsJ1xuZXhwb3J0ICogZnJvbSAnLi9ldmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZnV6enktZmlsdGVyJ1xuZXhwb3J0ICogZnJvbSAnLi90ZW1wb3JhbC1leHRlbnQtdW5pb24nXG4iXX0=
11
+ export * from './url';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3V0aWwvc2hhcmVkL3NyYy9saWIvdXRpbHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxpQkFBaUIsQ0FBQTtBQUMvQixjQUFjLFNBQVMsQ0FBQTtBQUN2QixjQUFjLGdCQUFnQixDQUFBO0FBQzlCLGNBQWMsV0FBVyxDQUFBO0FBQ3pCLGNBQWMsZ0JBQWdCLENBQUE7QUFDOUIsY0FBYyxTQUFTLENBQUE7QUFDdkIsY0FBYyxxQkFBcUIsQ0FBQTtBQUNuQyxjQUFjLFdBQVcsQ0FBQTtBQUN6QixjQUFjLGNBQWMsQ0FBQTtBQUM1QixjQUFjLHlCQUF5QixDQUFBO0FBQ3ZDLGNBQWMsT0FBTyxDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9ieXRlcy1jb252ZXJ0J1xuZXhwb3J0ICogZnJvbSAnLi9ldmVudCdcbmV4cG9ydCAqIGZyb20gJy4vZnV6enktZmlsdGVyJ1xuZXhwb3J0ICogZnJvbSAnLi9nZW9qc29uJ1xuZXhwb3J0ICogZnJvbSAnLi9pbWFnZS1yZXNpemUnXG5leHBvcnQgKiBmcm9tICcuL3BhcnNlJ1xuZXhwb3J0ICogZnJvbSAnLi9yZW1vdmUtd2hpdGVzcGFjZSdcbmV4cG9ydCAqIGZyb20gJy4vc29ydC1ieSdcbmV4cG9ydCAqIGZyb20gJy4vc3RyaXAtaHRtbCdcbmV4cG9ydCAqIGZyb20gJy4vdGVtcG9yYWwtZXh0ZW50LXVuaW9uJ1xuZXhwb3J0ICogZnJvbSAnLi91cmwnXG4iXX0=
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "unbekannt",
145
145
  "downloads.wfs.featuretype.not.found": "Der Layer wurde nicht gefunden",
146
146
  "dropFile": "Datei ablegen",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "Datensatz aus dem Datahub",
150
158
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "Stichwort",
160
168
  "facets.block.title.th_regions_tree.default": "Regionen",
161
169
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Anmelden</a>, um auf diese Funktion zuzugreifen</div>",
170
+ "input.image.altTextPlaceholder": "",
171
+ "input.image.delete": "",
172
+ "input.image.displayAltTextInput": "",
173
+ "input.image.displayUrlInput": "",
174
+ "input.image.dropFileLabel": "",
175
+ "input.image.selectFileLabel": "",
176
+ "input.image.uploadErrorLabel": "",
177
+ "input.image.uploadErrorRetry": "",
178
+ "input.image.uploadProgressCancel": "",
179
+ "input.image.uploadProgressLabel": "",
162
180
  "language.ca": "Katalanisch",
163
181
  "language.cs": "Tschechisch",
164
182
  "language.de": "Deutsch",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "unknown",
145
145
  "downloads.wfs.featuretype.not.found": "The layer was not found",
146
146
  "dropFile": "drop file",
147
+ "editor.record.loadError.body": "The record could not be loaded:",
148
+ "editor.record.loadError.closeMessage": "Understood",
149
+ "editor.record.loadError.title": "Error loading record",
147
150
  "editor.record.publish": "Publish this record",
151
+ "editor.record.publishError.body": "The record could not be published:",
152
+ "editor.record.publishError.closeMessage": "Understood",
153
+ "editor.record.publishError.title": "Error publishing record",
154
+ "editor.record.publishSuccess.body": "The record was successfully published!",
155
+ "editor.record.publishSuccess.title": "Publish success",
148
156
  "editor.record.upToDate": "This record is up to date",
149
157
  "externalviewer.dataset.unnamed": "Datahub layer",
150
158
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "Tag",
160
168
  "facets.block.title.th_regions_tree.default": "Regions",
161
169
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> to access this feature</div>",
170
+ "input.image.altTextPlaceholder": "Image alternate text",
171
+ "input.image.delete": "Delete",
172
+ "input.image.displayAltTextInput": "Alternate text",
173
+ "input.image.displayUrlInput": "Enter a URL",
174
+ "input.image.dropFileLabel": "or drop it here",
175
+ "input.image.selectFileLabel": "Select an image",
176
+ "input.image.uploadErrorLabel": "The image could not be uploaded",
177
+ "input.image.uploadErrorRetry": "Retry",
178
+ "input.image.uploadProgressCancel": "Cancel",
179
+ "input.image.uploadProgressLabel": "Upload in progress...",
162
180
  "language.ca": "Catalan",
163
181
  "language.cs": "Czech",
164
182
  "language.de": "German",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "",
145
145
  "downloads.wfs.featuretype.not.found": "",
146
146
  "dropFile": "",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "",
150
158
  "facets.block.title.OrgForResource": "",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "",
160
168
  "facets.block.title.th_regions_tree.default": "",
161
169
  "favorite.not.authenticated.tooltip": "",
170
+ "input.image.altTextPlaceholder": "",
171
+ "input.image.delete": "",
172
+ "input.image.displayAltTextInput": "",
173
+ "input.image.displayUrlInput": "",
174
+ "input.image.dropFileLabel": "",
175
+ "input.image.selectFileLabel": "",
176
+ "input.image.uploadErrorLabel": "",
177
+ "input.image.uploadErrorRetry": "",
178
+ "input.image.uploadProgressCancel": "",
179
+ "input.image.uploadProgressLabel": "",
162
180
  "language.ca": "Catalán",
163
181
  "language.cs": "Checo",
164
182
  "language.de": "Alemán",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "inconnu",
145
145
  "downloads.wfs.featuretype.not.found": "La couche n'a pas été retrouvée",
146
146
  "dropFile": "Faites glisser votre fichier",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "Couche du datahub",
150
158
  "facets.block.title.OrgForResource": "Organisation",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "Tag",
160
168
  "facets.block.title.th_regions_tree.default": "Régions",
161
169
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Connectez-vous</a> pour avoir accès à cette fonctionnalité</div>",
170
+ "input.image.altTextPlaceholder": "Texte alternatif de l'image",
171
+ "input.image.delete": "Supprimer",
172
+ "input.image.displayAltTextInput": "Texte alternatif",
173
+ "input.image.displayUrlInput": "Saisir une URL",
174
+ "input.image.dropFileLabel": "ou la glisser ici",
175
+ "input.image.selectFileLabel": "Sélectionner une image",
176
+ "input.image.uploadErrorLabel": "L'image n'a pas pu être chargée",
177
+ "input.image.uploadErrorRetry": "Réessayer",
178
+ "input.image.uploadProgressCancel": "Annuler",
179
+ "input.image.uploadProgressLabel": "Chargement en cours...",
162
180
  "language.ca": "Catalan",
163
181
  "language.cs": "Tchèque",
164
182
  "language.de": "Allemand",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "sconosciuto",
145
145
  "downloads.wfs.featuretype.not.found": "Il layer non è stato trovato",
146
146
  "dropFile": "Trascina il suo file",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "Layer del datahub",
150
158
  "facets.block.title.OrgForResource": "Organizzazione",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "Tag",
160
168
  "facets.block.title.th_regions_tree.default": "Regioni",
161
169
  "favorite.not.authenticated.tooltip": "<div><a href=' {link} '>Login</a> per accedere a questa funzionalità</div>",
170
+ "input.image.altTextPlaceholder": "",
171
+ "input.image.delete": "",
172
+ "input.image.displayAltTextInput": "",
173
+ "input.image.displayUrlInput": "",
174
+ "input.image.dropFileLabel": "",
175
+ "input.image.selectFileLabel": "",
176
+ "input.image.uploadErrorLabel": "",
177
+ "input.image.uploadErrorRetry": "",
178
+ "input.image.uploadProgressCancel": "",
179
+ "input.image.uploadProgressLabel": "",
162
180
  "language.ca": "Catalano",
163
181
  "language.cs": "Ceco",
164
182
  "language.de": "Tedesco",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "",
145
145
  "downloads.wfs.featuretype.not.found": "",
146
146
  "dropFile": "",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "",
150
158
  "facets.block.title.OrgForResource": "",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "",
160
168
  "facets.block.title.th_regions_tree.default": "",
161
169
  "favorite.not.authenticated.tooltip": "",
170
+ "input.image.altTextPlaceholder": "",
171
+ "input.image.delete": "",
172
+ "input.image.displayAltTextInput": "",
173
+ "input.image.displayUrlInput": "",
174
+ "input.image.dropFileLabel": "",
175
+ "input.image.selectFileLabel": "",
176
+ "input.image.uploadErrorLabel": "",
177
+ "input.image.uploadErrorRetry": "",
178
+ "input.image.uploadProgressCancel": "",
179
+ "input.image.uploadProgressLabel": "",
162
180
  "language.ca": "Catalaans",
163
181
  "language.cs": "Tsjechisch",
164
182
  "language.de": "Duits",
@@ -144,7 +144,15 @@
144
144
  "downloads.format.unknown": "",
145
145
  "downloads.wfs.featuretype.not.found": "",
146
146
  "dropFile": "",
147
+ "editor.record.loadError.body": "",
148
+ "editor.record.loadError.closeMessage": "",
149
+ "editor.record.loadError.title": "",
147
150
  "editor.record.publish": "",
151
+ "editor.record.publishError.body": "",
152
+ "editor.record.publishError.closeMessage": "",
153
+ "editor.record.publishError.title": "",
154
+ "editor.record.publishSuccess.body": "",
155
+ "editor.record.publishSuccess.title": "",
148
156
  "editor.record.upToDate": "",
149
157
  "externalviewer.dataset.unnamed": "",
150
158
  "facets.block.title.OrgForResource": "",
@@ -159,6 +167,16 @@
159
167
  "facets.block.title.tag.default": "",
160
168
  "facets.block.title.th_regions_tree.default": "",
161
169
  "favorite.not.authenticated.tooltip": "",
170
+ "input.image.altTextPlaceholder": "",
171
+ "input.image.delete": "",
172
+ "input.image.displayAltTextInput": "",
173
+ "input.image.displayUrlInput": "",
174
+ "input.image.dropFileLabel": "",
175
+ "input.image.selectFileLabel": "",
176
+ "input.image.uploadErrorLabel": "",
177
+ "input.image.uploadErrorRetry": "",
178
+ "input.image.uploadProgressCancel": "",
179
+ "input.image.uploadProgressLabel": "",
162
180
  "language.ca": "Catalão",
163
181
  "language.cs": "Tcheco",
164
182
  "language.de": "Alemão",