geonetwork-ui 2.4.0-dev.27089d81 → 2.4.0-dev.344a92f2

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 (621) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +2 -1
  2. package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +10 -3
  3. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.mjs +1 -1
  4. package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
  5. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +5 -5
  6. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +7 -4
  7. package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +10 -7
  8. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +11 -16
  9. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +35 -7
  10. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.mjs +31 -0
  11. package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +50 -18
  12. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +10 -3
  13. package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +31 -3
  14. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +11 -1
  15. package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +59 -11
  16. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  17. package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
  18. package/esm2022/libs/common/domain/src/lib/model/user/user.model.mjs +1 -1
  19. package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
  20. package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
  21. package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +5 -5
  22. package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +3 -3
  23. package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +2 -6
  24. package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -6
  25. package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +1 -1
  26. package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +1 -1
  27. package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +1 -1
  28. package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +3 -1
  29. package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +8 -3
  30. package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +10 -2
  31. package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
  32. package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +7 -3
  33. package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +16 -6
  34. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +17 -0
  35. package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +80 -0
  36. package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +71 -0
  37. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +146 -0
  38. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +19 -0
  39. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +31 -38
  40. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +11 -9
  41. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +101 -0
  42. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +148 -0
  43. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +44 -0
  44. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +103 -0
  45. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +12 -16
  46. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +9 -8
  47. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +140 -5
  48. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +41 -68
  49. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +17 -15
  50. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +45 -44
  51. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -3
  52. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +13 -7
  53. package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +8 -8
  54. package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
  55. package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +6 -4
  56. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +201 -57
  57. package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +2 -0
  58. package/esm2022/libs/feature/editor/src/lib/models/index.mjs +2 -1
  59. package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +8 -3
  60. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +6 -6
  61. package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +7 -6
  62. package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +8 -5
  63. package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +6 -7
  64. package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +8 -7
  65. package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +7 -6
  66. package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +7 -26
  67. package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +29 -13
  68. package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +3 -3
  69. package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +10 -5
  70. package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +1 -1
  71. package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +42 -23
  72. package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +13 -5
  73. package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +49 -15
  74. package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +1 -1
  75. package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +1 -1
  76. package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +9 -4
  77. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  78. package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +48 -8
  79. package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +6 -2
  80. package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +7 -3
  81. package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +3 -3
  82. package/esm2022/libs/ui/elements/src/index.mjs +3 -2
  83. package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +3 -3
  84. package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +27 -0
  85. package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +2 -2
  86. package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +1 -1
  87. package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +2 -2
  88. package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +6 -5
  89. package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +2 -2
  90. package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +6 -5
  91. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +5 -11
  92. package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +3 -3
  93. package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +5 -5
  94. package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +15 -6
  95. package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +3 -3
  96. package/esm2022/libs/ui/inputs/src/index.mjs +5 -1
  97. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +24 -7
  98. package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +5 -3
  99. package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +8 -1
  100. package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +11 -4
  101. package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +9 -3
  102. package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +26 -24
  103. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +87 -0
  104. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +19 -15
  105. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +32 -0
  106. package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +7 -21
  107. package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +6 -17
  108. package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +3 -7
  109. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +43 -0
  110. package/esm2022/libs/ui/layout/src/index.mjs +3 -1
  111. package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +5 -3
  112. package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +3 -3
  113. package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +3 -3
  114. package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +29 -0
  115. package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +43 -0
  116. package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +3 -3
  117. package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +7 -7
  118. package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +67 -0
  119. package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +33 -13
  120. package/esm2022/libs/ui/widgets/src/index.mjs +2 -1
  121. package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +68 -0
  122. package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +10 -10
  123. package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +1 -1
  124. package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +1 -1
  125. package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +2 -1
  126. package/esm2022/libs/util/shared/src/lib/utils/bytes-convert.mjs +4 -1
  127. package/esm2022/translations/de.json +145 -42
  128. package/esm2022/translations/en.json +120 -17
  129. package/esm2022/translations/es.json +116 -13
  130. package/esm2022/translations/fr.json +131 -28
  131. package/esm2022/translations/it.json +119 -16
  132. package/esm2022/translations/nl.json +116 -13
  133. package/esm2022/translations/pt.json +116 -13
  134. package/fesm2022/geonetwork-ui.mjs +4054 -1764
  135. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  136. package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
  137. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +3 -3
  138. package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
  139. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts +2 -6
  140. package/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.d.ts.map +1 -1
  141. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +1 -0
  142. package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
  143. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +2 -2
  144. package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
  145. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +1 -1
  146. package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
  147. package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
  148. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +12 -6
  149. package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
  150. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts +5 -0
  151. package/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.d.ts.map +1 -0
  152. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +10 -7
  153. package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
  154. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -0
  155. package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
  156. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +7 -1
  157. package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
  158. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.d.ts.map +1 -1
  159. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +24 -3
  160. package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
  161. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  162. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  163. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +9 -7
  164. package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
  165. package/libs/common/domain/src/lib/model/user/user.model.d.ts +1 -1
  166. package/libs/common/domain/src/lib/model/user/user.model.d.ts.map +1 -1
  167. package/libs/common/domain/src/lib/platform.service.interface.d.ts +18 -1
  168. package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
  169. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +17 -0
  170. package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
  171. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +2 -2
  172. package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -1
  173. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +1 -1
  174. package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -1
  175. package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -1
  176. package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -1
  177. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +2 -2
  178. package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
  179. package/libs/feature/dataviz/src/lib/service/data.service.d.ts +6 -6
  180. package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
  181. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +3 -3
  182. package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
  183. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +6 -0
  184. package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
  185. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +5 -0
  186. package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
  187. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +5 -4
  188. package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
  189. package/libs/feature/editor/src/lib/+state/editor.models.d.ts +8 -0
  190. package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
  191. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -3
  192. package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
  193. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +4 -8
  194. package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
  195. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +8 -0
  196. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  197. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts +33 -0
  198. package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -0
  199. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts +15 -0
  200. package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -0
  201. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +41 -0
  202. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -0
  203. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +9 -0
  204. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +1 -0
  205. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts +11 -19
  206. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
  207. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +6 -4
  208. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
  209. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts +22 -0
  210. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.d.ts.map +1 -0
  211. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +35 -0
  212. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -0
  213. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +15 -0
  214. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -0
  215. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +31 -0
  216. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -0
  217. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts +4 -6
  218. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -1
  219. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +4 -3
  220. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
  221. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +28 -0
  222. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
  223. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts +10 -16
  224. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
  225. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts +5 -5
  226. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.d.ts.map +1 -1
  227. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +18 -20
  228. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  229. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -2
  230. package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
  231. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts +7 -7
  232. package/libs/feature/editor/src/lib/components/record-form/record-form.component.d.ts.map +1 -1
  233. package/libs/feature/editor/src/lib/expressions.d.ts +1 -1
  234. package/libs/feature/editor/src/lib/expressions.d.ts.map +1 -1
  235. package/libs/feature/editor/src/lib/feature-editor.module.d.ts +2 -1
  236. package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -1
  237. package/libs/feature/editor/src/lib/fields.config.d.ts +54 -2
  238. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  239. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +42 -0
  240. package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -0
  241. package/libs/feature/editor/src/lib/models/index.d.ts +1 -0
  242. package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -1
  243. package/libs/feature/editor/src/lib/services/editor.service.d.ts +3 -2
  244. package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
  245. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +1 -1
  246. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -1
  247. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +6 -6
  248. package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -1
  249. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts +1 -1
  250. package/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.d.ts.map +1 -1
  251. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts +1 -1
  252. package/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.d.ts.map +1 -1
  253. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts +1 -1
  254. package/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.d.ts.map +1 -1
  255. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts +1 -1
  256. package/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.d.ts.map +1 -1
  257. package/libs/feature/map/src/lib/feature-map.module.d.ts +16 -21
  258. package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
  259. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +1 -1
  260. package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
  261. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +2 -2
  262. package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -1
  263. package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -1
  264. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +3 -3
  265. package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
  266. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +4 -1
  267. package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
  268. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +4 -1
  269. package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
  270. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +4 -1
  271. package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
  272. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +2 -2
  273. package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
  274. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +2 -2
  275. package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
  276. package/libs/feature/record/src/lib/state/mdview.facade.d.ts +7 -7
  277. package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
  278. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts +15 -4
  279. package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
  280. package/libs/feature/search/src/lib/state/search.facade.d.ts +1 -0
  281. package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
  282. package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
  283. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +2 -2
  284. package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -1
  285. package/libs/ui/elements/src/index.d.ts +2 -1
  286. package/libs/ui/elements/src/index.d.ts.map +1 -1
  287. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts +18 -0
  288. package/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.d.ts.map +1 -0
  289. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
  290. package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
  291. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +7 -7
  292. package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
  293. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +2 -2
  294. package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
  295. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts +2 -2
  296. package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
  297. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +0 -3
  298. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  299. package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +1 -1
  300. package/libs/ui/elements/src/lib/ui-elements.module.d.ts +8 -5
  301. package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
  302. package/libs/ui/inputs/src/index.d.ts +4 -0
  303. package/libs/ui/inputs/src/index.d.ts.map +1 -1
  304. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  305. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  306. package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
  307. package/libs/ui/inputs/src/lib/button/button.component.d.ts +1 -1
  308. package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -1
  309. package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
  310. package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
  311. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts +5 -3
  312. package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
  313. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +24 -0
  314. package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -0
  315. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +4 -5
  316. package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
  317. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +16 -0
  318. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -0
  319. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +0 -4
  320. package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -1
  321. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +2 -4
  322. package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -1
  323. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +34 -35
  324. package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
  325. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +18 -0
  326. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -0
  327. package/libs/ui/layout/src/index.d.ts +2 -0
  328. package/libs/ui/layout/src/index.d.ts.map +1 -1
  329. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts +2 -2
  330. package/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.d.ts.map +1 -1
  331. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts +20 -0
  332. package/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.d.ts.map +1 -0
  333. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts +14 -0
  334. package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -0
  335. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +3 -3
  336. package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -1
  337. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +20 -0
  338. package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -0
  339. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +10 -4
  340. package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
  341. package/libs/ui/widgets/src/index.d.ts +1 -0
  342. package/libs/ui/widgets/src/index.d.ts.map +1 -1
  343. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts +19 -0
  344. package/libs/ui/widgets/src/lib/popover/popover.component.d.ts.map +1 -0
  345. package/libs/util/app-config/src/lib/fixtures.d.ts +8 -8
  346. package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
  347. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +3 -3
  348. package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
  349. package/libs/util/shared/src/lib/links/link-utils.d.ts +6 -6
  350. package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -1
  351. package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -1
  352. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts +2 -1
  353. package/libs/util/shared/src/lib/utils/bytes-convert.d.ts.map +1 -1
  354. package/package.json +1 -1
  355. package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +7 -2
  356. package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +6 -2
  357. package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +38 -13
  358. package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +6 -2
  359. package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +1 -0
  360. package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +18 -16
  361. package/src/libs/api/metadata-converter/src/lib/gn4/types/keywords.model.ts +2 -6
  362. package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +1 -0
  363. package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +4 -4
  364. package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +12 -4
  365. package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +14 -8
  366. package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +10 -14
  367. package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +85 -17
  368. package/src/libs/api/metadata-converter/src/lib/iso19139/utils/geometry.ts +39 -0
  369. package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +118 -37
  370. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +13 -5
  371. package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +42 -2
  372. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +12 -1
  373. package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +116 -30
  374. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  375. package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +10 -8
  376. package/src/libs/common/domain/src/lib/model/user/user.model.ts +1 -1
  377. package/src/libs/common/domain/src/lib/platform.service.interface.ts +35 -1
  378. package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +22 -0
  379. package/src/libs/common/fixtures/src/index.ts +3 -1
  380. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +156 -0
  381. package/src/libs/common/fixtures/src/lib/editor/index.ts +1 -0
  382. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-request.ts → aggregations-request.fixtures.ts} +1 -3
  383. package/src/libs/common/fixtures/src/lib/elasticsearch/{aggregations-response.ts → aggregations-response.fixtures.ts} +6 -8
  384. package/src/libs/common/fixtures/src/lib/elasticsearch/{full-response.ts → full-response.fixtures.ts} +1 -3
  385. package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +5 -5
  386. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +1 -3
  387. package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1739 -1742
  388. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-requests.ts → search-requests.fixtures.ts} +1 -3
  389. package/src/libs/common/fixtures/src/lib/elasticsearch/{search-responses.ts → search-responses.fixtures.ts} +4 -6
  390. package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57178 -57195
  391. package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +2 -4
  392. package/src/libs/common/fixtures/src/lib/link.fixtures.ts +233 -164
  393. package/src/libs/common/fixtures/src/lib/ol-feature.fixtures.ts +10 -0
  394. package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +37 -3
  395. package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +9 -7
  396. package/src/libs/common/fixtures/src/lib/records.fixtures.ts +9 -9
  397. package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +4 -4
  398. package/src/libs/common/fixtures/src/lib/search/aggregations.ts +2 -3
  399. package/src/libs/common/fixtures/src/lib/user-feedbacks.fixtures.ts +14 -15
  400. package/src/libs/common/fixtures/src/lib/user.fixtures.ts +32 -15
  401. package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +4 -0
  402. package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +2 -0
  403. package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +4 -4
  404. package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +2 -2
  405. package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +1 -5
  406. package/src/libs/data-access/gn4/src/spec.yaml +0 -8
  407. package/src/libs/feature/catalog/src/lib/records/records.service.ts +6 -8
  408. package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +1 -1
  409. package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +3 -3
  410. package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +2 -2
  411. package/src/libs/feature/dataviz/src/lib/service/data.service.ts +6 -6
  412. package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +4 -4
  413. package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +7 -0
  414. package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +17 -2
  415. package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -1
  416. package/src/libs/feature/editor/src/lib/+state/editor.models.ts +11 -0
  417. package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +11 -5
  418. package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +22 -8
  419. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +15 -0
  420. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +18 -0
  421. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +26 -0
  422. package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +90 -0
  423. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +35 -0
  424. package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +79 -0
  425. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +4 -0
  426. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +66 -0
  427. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +212 -0
  428. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.html +4 -0
  429. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.ts +21 -0
  430. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +7 -16
  431. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.ts +43 -42
  432. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.css +8 -0
  433. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +13 -5
  434. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.css +0 -0
  435. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.html +4 -0
  436. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.ts +128 -0
  437. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.css +0 -0
  438. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +34 -0
  439. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +182 -0
  440. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  441. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  442. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +48 -0
  443. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.css +0 -0
  444. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +11 -0
  445. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +122 -0
  446. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +15 -8
  447. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.ts +11 -14
  448. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +5 -3
  449. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +11 -4
  450. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +20 -1
  451. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +212 -1
  452. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.css +4 -0
  453. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +31 -4
  454. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +43 -86
  455. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.css +4 -0
  456. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +16 -14
  457. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.ts +17 -15
  458. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +112 -70
  459. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +52 -44
  460. package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -2
  461. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +52 -9
  462. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +20 -7
  463. package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +1 -1
  464. package/src/libs/feature/editor/src/lib/expressions.ts +1 -1
  465. package/src/libs/feature/editor/src/lib/feature-editor.module.ts +2 -1
  466. package/src/libs/feature/editor/src/lib/fields.config.ts +240 -57
  467. package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +65 -0
  468. package/src/libs/feature/editor/src/lib/models/index.ts +1 -0
  469. package/src/libs/feature/editor/src/lib/services/editor.service.ts +15 -4
  470. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +3 -0
  471. package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +12 -8
  472. package/src/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.ts +5 -0
  473. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.html +1 -1
  474. package/src/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.ts +10 -7
  475. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.html +1 -1
  476. package/src/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.ts +5 -0
  477. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +1 -1
  478. package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.ts +6 -1
  479. package/src/libs/feature/map/src/lib/feature-map.module.ts +2 -15
  480. package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +24 -1
  481. package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +26 -22
  482. package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +29 -27
  483. package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +8 -4
  484. package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +3 -3
  485. package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +36 -19
  486. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +6 -2
  487. package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +11 -0
  488. package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +59 -12
  489. package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +2 -2
  490. package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +2 -2
  491. package/src/libs/feature/record/src/lib/state/mdview.facade.ts +11 -3
  492. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +2 -1
  493. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.html +4 -1
  494. package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +66 -3
  495. package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +2 -2
  496. package/src/libs/feature/search/src/lib/state/search.facade.ts +6 -0
  497. package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +16 -2
  498. package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +2 -2
  499. package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +2 -2
  500. package/src/libs/ui/elements/src/index.ts +2 -1
  501. package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +29 -29
  502. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.css +0 -0
  503. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.html +12 -0
  504. package/src/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.ts +37 -0
  505. package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +4 -4
  506. package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +7 -7
  507. package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +3 -3
  508. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.html +13 -17
  509. package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +1 -1
  510. package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.css +7 -1
  511. package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +12 -8
  512. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +14 -20
  513. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +0 -10
  514. package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
  515. package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.html +2 -2
  516. package/src/libs/ui/elements/src/lib/ui-elements.module.ts +10 -3
  517. package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -1
  518. package/src/libs/ui/inputs/src/index.ts +4 -0
  519. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +25 -18
  520. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +38 -24
  521. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +19 -4
  522. package/src/libs/ui/inputs/src/lib/badge/badge.component.html +12 -3
  523. package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +2 -1
  524. package/src/libs/ui/inputs/src/lib/button/button.component.ts +15 -1
  525. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.css +7 -2
  526. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +13 -6
  527. package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +7 -1
  528. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.css +7 -2
  529. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +27 -23
  530. package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +7 -1
  531. package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +40 -26
  532. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.css +4 -0
  533. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +89 -0
  534. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +92 -0
  535. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.css +4 -0
  536. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +76 -68
  537. package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +17 -14
  538. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.css +32 -0
  539. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +14 -0
  540. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +37 -0
  541. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +3 -2
  542. package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +3 -28
  543. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +4 -3
  544. package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +4 -16
  545. package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +0 -3
  546. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +9 -0
  547. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +37 -0
  548. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +33 -0
  549. package/src/libs/ui/layout/src/index.ts +2 -0
  550. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +8 -3
  551. package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +4 -3
  552. package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +1 -0
  553. package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -0
  554. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.css +0 -0
  555. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.html +15 -0
  556. package/src/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.ts +44 -0
  557. package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.html +37 -0
  558. package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.ts +15 -18
  559. package/src/libs/ui/map/src/lib/ui-map.module.ts +1 -1
  560. package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +7 -6
  561. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.css +0 -0
  562. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +26 -0
  563. package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +74 -0
  564. package/src/libs/ui/search/src/lib/results-table/results-table.component.html +24 -3
  565. package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +31 -18
  566. package/src/libs/ui/widgets/src/index.ts +1 -0
  567. package/src/libs/ui/widgets/src/lib/popover/popover.component.css +0 -0
  568. package/src/libs/ui/widgets/src/lib/popover/popover.component.html +3 -0
  569. package/src/libs/ui/widgets/src/lib/popover/popover.component.ts +85 -0
  570. package/src/libs/util/app-config/src/lib/fixtures.ts +9 -9
  571. package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +4 -3
  572. package/src/libs/util/shared/src/lib/links/link-utils.ts +6 -6
  573. package/src/libs/util/shared/src/lib/services/theme.service.ts +1 -0
  574. package/src/libs/util/shared/src/lib/utils/bytes-convert.ts +4 -1
  575. package/tailwind.base.config.js +1 -0
  576. package/tailwind.base.css +51 -7
  577. package/translations/de.json +145 -42
  578. package/translations/en.json +120 -17
  579. package/translations/es.json +116 -13
  580. package/translations/fr.json +131 -28
  581. package/translations/it.json +119 -16
  582. package/translations/nl.json +116 -13
  583. package/translations/pt.json +116 -13
  584. package/translations/sk.json +117 -14
  585. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.mjs +0 -15
  586. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.mjs +0 -17
  587. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.mjs +0 -17
  588. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.mjs +0 -2
  589. package/esm2022/libs/feature/editor/src/lib/models/fields.model.mjs +0 -2
  590. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +0 -43
  591. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts +0 -8
  592. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.d.ts.map +0 -1
  593. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts +0 -8
  594. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.d.ts.map +0 -1
  595. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts +0 -8
  596. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.d.ts.map +0 -1
  597. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts +0 -26
  598. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.d.ts.map +0 -1
  599. package/libs/feature/editor/src/lib/models/fields.model.d.ts +0 -15
  600. package/libs/feature/editor/src/lib/models/fields.model.d.ts.map +0 -1
  601. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +0 -22
  602. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +0 -1
  603. package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +0 -7
  604. package/src/libs/common/fixtures/src/lib/utils/freeze.ts +0 -10
  605. package/src/libs/common/fixtures/src/lib/utils/index.ts +0 -1
  606. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.html +0 -8
  607. package/src/libs/feature/editor/src/lib/components/overview-upload/overview-upload.component.ts +0 -70
  608. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.html +0 -4
  609. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts +0 -15
  610. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.html +0 -7
  611. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts +0 -16
  612. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.html +0 -13
  613. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts +0 -16
  614. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts +0 -43
  615. package/src/libs/feature/editor/src/lib/models/fields.model.ts +0 -29
  616. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.html +0 -36
  617. /package/src/libs/feature/editor/src/lib/components/{overview-upload/overview-upload.component.css → contact-card/contact-card.component.css} +0 -0
  618. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.css → generic-keywords/generic-keywords.component.css} +0 -0
  619. /package/src/libs/feature/editor/src/lib/components/{record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.css → online-resource-card/online-resource-card.component.css} +0 -0
  620. /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.css → form-field-date-updated/form-field-date-updated.component.css} +0 -0
  621. /package/src/libs/ui/{elements → layout}/src/lib/sortable-list/sortable-list.component.css +0 -0
@@ -49,6 +49,8 @@
49
49
  "datafeeder.datasetValidation.submitButton": "OK, moje dáta sú správne",
50
50
  "datafeeder.datasetValidation.title": "Uistite sa, že dáta sú správne",
51
51
  "datafeeder.datasetValidation.unknown": " - ",
52
+ "datafeeder.datasetValidationCsv.explicitLineNumbers": "",
53
+ "datafeeder.datasetValidationCsv.lineNumbers": "",
52
54
  "datafeeder.form.abstract": "Ako by ste opísali Váš dataset?",
53
55
  "datafeeder.form.datepicker": "Viete, kedy bol dataset vytvorený?",
54
56
  "datafeeder.form.description": "Nakoniec popíšte proces, ktorý bol použitý na vytvorenie datasetu",
@@ -76,6 +78,7 @@
76
78
  "datafeeder.publishSuccess.geonetworkRecord": "Metadátový záznam",
77
79
  "datafeeder.publishSuccess.illustration.title": "Hotovo, všetko je v poriadku!",
78
80
  "datafeeder.publishSuccess.mapViewer": "Prehliadač máp",
81
+ "datafeeder.publishSuccess.ogcFeature": "",
79
82
  "datafeeder.publishSuccess.subtitle": "Pozrite si svoje dáta v:",
80
83
  "datafeeder.publishSuccess.title": "Gratulujeme! Váš dataset bol publikovaný",
81
84
  "datafeeder.publishSuccess.uploadAnotherData": "Nahrajte ďalší dataset",
@@ -104,6 +107,15 @@
104
107
  "datafeeder.upload.maxFileSize": "Maximálna veľkosť súboru je {size} MB",
105
108
  "datafeeder.upload.title": "Nahrajte svoj dataset",
106
109
  "datafeeder.upload.uploadButton": "Nahrať",
110
+ "datafeeder.validation.csv.delimiter": "",
111
+ "datafeeder.validation.csv.delimiter.comma": "",
112
+ "datafeeder.validation.csv.delimiter.semicolon": "",
113
+ "datafeeder.validation.csv.lat.field": "",
114
+ "datafeeder.validation.csv.lng.field": "",
115
+ "datafeeder.validation.csv.quote.double": "",
116
+ "datafeeder.validation.csv.quote.none": "",
117
+ "datafeeder.validation.csv.quote.simple": "",
118
+ "datafeeder.validation.csv.quoteChar": "",
107
119
  "datafeeder.validation.encoding": "kódovanie",
108
120
  "datafeeder.validation.extent.title": "Tu je rozsah datasetu",
109
121
  "datafeeder.validation.extent.title.unknown": "Systém projekcie je neznámy",
@@ -117,7 +129,7 @@
117
129
  "datahub.header.lastRecords": "Najnovšie",
118
130
  "datahub.header.myfavorites": "Moje obľúbené",
119
131
  "datahub.header.news": "Domov",
120
- "datahub.header.organisations": "Organizácie",
132
+ "datahub.header.organizations": "Organizácie",
121
133
  "datahub.header.popularRecords": "Najpopulárnejšie",
122
134
  "datahub.header.title.html": "<div class=\"text-white\">Objavte otvorené<br>dáta z mojej organizácie</div>",
123
135
  "datahub.news.contact.contactus": "Kontaktujte nás",
@@ -135,6 +147,27 @@
135
147
  "dataset.error.parse": "Dáta boli načítané, ale nedajú sa analyzovať: \"{ info }\"",
136
148
  "dataset.error.unknown": "Dáta nie je možné zobraziť: \"{ info }\"",
137
149
  "dataset.error.unsupportedType": "Nepodporovaný typ obsahu: \"{ info }\"",
150
+ "domain.contact.role.author": "",
151
+ "domain.contact.role.collaborator": "",
152
+ "domain.contact.role.contributor": "",
153
+ "domain.contact.role.custodian": "",
154
+ "domain.contact.role.distributor": "",
155
+ "domain.contact.role.editor": "",
156
+ "domain.contact.role.funder": "",
157
+ "domain.contact.role.mediator": "",
158
+ "domain.contact.role.originator": "",
159
+ "domain.contact.role.other": "",
160
+ "domain.contact.role.owner": "",
161
+ "domain.contact.role.point_of_contact": "",
162
+ "domain.contact.role.principal_investigator": "",
163
+ "domain.contact.role.processor": "",
164
+ "domain.contact.role.publisher": "",
165
+ "domain.contact.role.resource_provider": "",
166
+ "domain.contact.role.rights_holder": "",
167
+ "domain.contact.role.sponsor": "",
168
+ "domain.contact.role.stakeholder": "",
169
+ "domain.contact.role.unspecified": "",
170
+ "domain.contact.role.user": "",
138
171
  "domain.record.status.completed": "Dokončené",
139
172
  "domain.record.status.deprecated": "Zastarané",
140
173
  "domain.record.status.ongoing": "Prebiehajúce",
@@ -153,7 +186,41 @@
153
186
  "downloads.format.unknown": "neznámy",
154
187
  "downloads.wfs.featuretype.not.found": "Vrstva nebola nájdená",
155
188
  "dropFile": "nahrať súbor",
156
- "editor.record.form.license": "Licencia",
189
+ "editor.form.keywords.placeholder": "",
190
+ "editor.form.placeKeywordWithoutExtent": "",
191
+ "editor.record.delete.confirmation.cancelText": "",
192
+ "editor.record.delete.confirmation.confirmText": "",
193
+ "editor.record.delete.confirmation.message": "",
194
+ "editor.record.delete.confirmation.title": "",
195
+ "editor.record.deleteError.body": "",
196
+ "editor.record.deleteError.closeMessage": "",
197
+ "editor.record.deleteError.title": "",
198
+ "editor.record.deleteSuccess.body": "",
199
+ "editor.record.deleteSuccess.title": "",
200
+ "editor.record.form.bottomButtons.comeBackLater": "",
201
+ "editor.record.form.bottomButtons.next": "",
202
+ "editor.record.form.bottomButtons.previous": "",
203
+ "editor.record.form.classification.opendata": "",
204
+ "editor.record.form.field.abstract": "",
205
+ "editor.record.form.field.contactsForResource.noContact": "",
206
+ "editor.record.form.field.keywords": "",
207
+ "editor.record.form.field.license": "Licencia",
208
+ "editor.record.form.field.onlineLinkResources": "",
209
+ "editor.record.form.field.onlineResource.cancel": "",
210
+ "editor.record.form.field.onlineResource.confirm": "",
211
+ "editor.record.form.field.onlineResource.dialogTitle": "",
212
+ "editor.record.form.field.onlineResource.edit.description": "",
213
+ "editor.record.form.field.onlineResource.edit.title": "",
214
+ "editor.record.form.field.onlineResource.fileSize": "",
215
+ "editor.record.form.field.onlineResource.modify": "",
216
+ "editor.record.form.field.overviews": "",
217
+ "editor.record.form.field.recordUpdated": "",
218
+ "editor.record.form.field.resourceUpdated": "",
219
+ "editor.record.form.field.spatialExtents": "",
220
+ "editor.record.form.field.temporalExtents": "",
221
+ "editor.record.form.field.title": "",
222
+ "editor.record.form.field.uniqueIdentifier": "",
223
+ "editor.record.form.field.updateFrequency": "",
157
224
  "editor.record.form.license.cc-by": "",
158
225
  "editor.record.form.license.cc-by-sa": "",
159
226
  "editor.record.form.license.cc-zero": "",
@@ -163,27 +230,54 @@
163
230
  "editor.record.form.license.odc-by": "",
164
231
  "editor.record.form.license.pddl": "",
165
232
  "editor.record.form.license.unknown": "Neznáme alebo chýbajúce",
166
- "editor.record.form.resourceUpdated": "",
167
- "editor.record.form.temporalExtents": "",
233
+ "editor.record.form.page.accessAndContact": "",
234
+ "editor.record.form.page.description": "",
235
+ "editor.record.form.page.ressources": "",
236
+ "editor.record.form.section.about.description": "",
237
+ "editor.record.form.section.about.label": "",
238
+ "editor.record.form.section.annexes.label": "",
239
+ "editor.record.form.section.associatedResources.description": "",
240
+ "editor.record.form.section.associatedResources.label": "",
241
+ "editor.record.form.section.classification.description": "",
242
+ "editor.record.form.section.classification.label": "",
243
+ "editor.record.form.section.dataManagers.description": "",
244
+ "editor.record.form.section.dataManagers.label": "",
245
+ "editor.record.form.section.dataPointOfContact.description": "",
246
+ "editor.record.form.section.dataPointOfContact.label": "",
247
+ "editor.record.form.section.geographicalCoverage.label": "",
248
+ "editor.record.form.section.useAndAccessConditions.label": "",
168
249
  "editor.record.form.temporalExtents.addDate": "",
169
250
  "editor.record.form.temporalExtents.addRange": "",
170
251
  "editor.record.form.temporalExtents.date": "",
171
252
  "editor.record.form.temporalExtents.range": "",
172
- "editor.record.form.updateFrequency": "",
173
253
  "editor.record.form.updateFrequency.planned": "",
174
254
  "editor.record.loadError.body": "",
175
255
  "editor.record.loadError.closeMessage": "",
176
256
  "editor.record.loadError.title": "",
257
+ "editor.record.onlineResourceError.body": "",
258
+ "editor.record.onlineResourceError.closeMessage": "",
259
+ "editor.record.onlineResourceError.title": "",
260
+ "editor.record.placeKeywordWithoutLabel": "",
177
261
  "editor.record.publish": "",
178
262
  "editor.record.publishError.body": "",
179
263
  "editor.record.publishError.closeMessage": "",
180
264
  "editor.record.publishError.title": "",
181
265
  "editor.record.publishSuccess.body": "",
182
266
  "editor.record.publishSuccess.title": "",
267
+ "editor.record.resourceError.body": "",
268
+ "editor.record.resourceError.closeMessage": "",
269
+ "editor.record.resourceError.title": "",
183
270
  "editor.record.saveStatus.asDraftOnly": "",
184
271
  "editor.record.saveStatus.draftWithChangesPending": "",
185
272
  "editor.record.saveStatus.recordUpToDate": "",
273
+ "editor.record.undo.confirmation.cancelText": "",
274
+ "editor.record.undo.confirmation.confirmText": "",
275
+ "editor.record.undo.confirmation.message": "",
276
+ "editor.record.undo.confirmation.title": "",
277
+ "editor.record.undo.tooltip.disabled": "",
278
+ "editor.record.undo.tooltip.enabled": "",
186
279
  "editor.record.upToDate": "",
280
+ "editor.sidebar.menu.editor": "",
187
281
  "externalviewer.dataset.unnamed": "",
188
282
  "facets.block.title.OrgForResource": "Organizácia",
189
283
  "facets.block.title.availableInServices": "Dostupné pre",
@@ -197,6 +291,11 @@
197
291
  "facets.block.title.tag.default": "Štítok",
198
292
  "facets.block.title.th_regions_tree.default": "Regióny",
199
293
  "favorite.not.authenticated.tooltip": "<div><a href='{link}'>Prihlásiť sa</a> pre prístup k tejto funkcii</div>",
294
+ "input.file.dropFileLabel": "",
295
+ "input.file.orInputUrl": "",
296
+ "input.file.selectFileLabel": "",
297
+ "input.file.uploadProgressCancel": "",
298
+ "input.file.uploadProgressLabel": "",
200
299
  "input.image.altTextPlaceholder": "",
201
300
  "input.image.delete": "",
202
301
  "input.image.displayAltTextInput": "",
@@ -252,17 +351,17 @@
252
351
  "organisations.sortBy.nameDesc": "Názov Z → A",
253
352
  "organisations.sortBy.recordCountAsc": "Publikácie 0 → 9",
254
353
  "organisations.sortBy.recordCountDesc": "Publikácie 9 → 0",
255
- "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
256
- "organization.details.publishedDataset": "{count, plural, =0{} one{} other{{}}",
354
+ "organization.details.lastPublishedDatasets": "",
355
+ "organization.details.lastPublishedDatasets.searchAllButton": "",
257
356
  "organization.details.mailContact": "",
258
- "organization.datasets": "",
259
- "organization.lastPublishedDatasets": "",
260
- "organization.lastPublishedDatasets.searchAllButton": "",
357
+ "organization.header.recordCount": "{count, plural, =0{} one{} other{}}",
261
358
  "pagination.nextPage": "Ďalšia stránka",
262
359
  "pagination.page": "strana",
263
360
  "pagination.pageOf": "z",
264
361
  "previous": "predchádzajúci",
362
+ "record.action.delete": "",
265
363
  "record.action.download": "Stiahnuť",
364
+ "record.action.duplicate": "",
266
365
  "record.action.view": "Zobraziť",
267
366
  "record.externalViewer.open": "Otvoriť v externom mapovom prehliadači",
268
367
  "record.metadata.about": "O",
@@ -317,6 +416,8 @@
317
416
  "record.metadata.related": "Súvisiace záznamy",
318
417
  "record.metadata.sheet": "Ďalšie metadáta sú k dispozícii na:",
319
418
  "record.metadata.status": "Stav",
419
+ "record.metadata.status.notPublished": "",
420
+ "record.metadata.status.published": "",
320
421
  "record.metadata.technical": "",
321
422
  "record.metadata.temporalExtent": "",
322
423
  "record.metadata.temporalExtent.fromDateToDate": "",
@@ -355,11 +456,11 @@
355
456
  "results.sortBy.relevancy": "Relevancia",
356
457
  "search.autocomplete.error": "Návrhy sa nepodarilo načítať:",
357
458
  "search.error.couldNotReachApi": "K rozhraniu API sa nepodarilo pripojiť",
459
+ "search.error.organizationHasNoDataset": "",
460
+ "search.error.organizationNotFound": "",
358
461
  "search.error.receivedError": "Bola zaznamenaná chyba",
359
462
  "search.error.recordHasnolink": "",
360
463
  "search.error.recordNotFound": "Záznam s identifikátorom \"{ id }\" sa nepodarilo nájsť.",
361
- "search.error.organizationNotFound": "",
362
- "search.error.organizationHasNoDataset": "",
363
464
  "search.field.any.placeholder": "Hľadať datasety ...",
364
465
  "search.field.sortBy": "Zoradiť podľa:",
365
466
  "search.filters.clear": "Obnoviť",
@@ -384,14 +485,16 @@
384
485
  "search.filters.minimize": "Zmenšiť",
385
486
  "search.filters.myRecords": "Zobraziť len moje záznamy",
386
487
  "search.filters.myRecordsHelp": "Keď je táto možnosť zapnutá, zobrazia sa len záznamy vytvorené mnou; záznamy vytvorené inými sa nezobrazia.",
488
+ "search.filters.organization": "",
387
489
  "search.filters.otherRecords": "Zobrazenie záznamov od inej osoby",
490
+ "search.filters.producerOrg": "",
388
491
  "search.filters.publicationYear": "Rok zverejnenia",
389
- "search.filters.publisher": "Organizácie",
492
+ "search.filters.publisherOrg": "",
390
493
  "search.filters.representationType": "Typ reprezentácie",
391
494
  "search.filters.resourceType": "Typ zdroja",
392
495
  "search.filters.standard": "Štandard",
393
496
  "search.filters.title": "Filtrovanie výsledkov",
394
- "search.filters.topic": "Téma",
497
+ "search.filters.topic": "Témy",
395
498
  "search.filters.useSpatialFilter": "Najskôr zobraziť záznamy v oblasti záujmu",
396
499
  "search.filters.useSpatialFilterHelp": "Keď je táto možnosť zapnutá, záznamy nachádzajúce sa v oblasti záujmu katalógu sa zobrazia ako prvé; záznamy mimo tejto oblasti sa nezobrazia.",
397
500
  "share.tab.permalink": "Zdieľať",
@@ -1,15 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DatePickerComponent } from '../../../../../../../../../libs/ui/inputs/src';
4
- import * as i0 from "@angular/core";
5
- export class FormFieldResourceUpdatedComponent {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
7
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldResourceUpdatedComponent, isStandalone: true, selector: "gn-ui-form-field-resource-updated", inputs: { control: "control" }, ngImport: i0, template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
8
- }
9
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldResourceUpdatedComponent, decorators: [{
10
- type: Component,
11
- args: [{ selector: 'gn-ui-form-field-resource-updated', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent], template: "<gn-ui-date-picker\n [date]=\"control.value\"\n (dateChange)=\"control.setValue($event)\"\n></gn-ui-date-picker>\n" }]
12
- }], propDecorators: { control: [{
13
- type: Input
14
- }] } });
15
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC1yZXNvdXJjZS11cGRhdGVkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2ZlYXR1cmUvZWRpdG9yL3NyYy9saWIvY29tcG9uZW50cy9yZWNvcmQtZm9ybS9mb3JtLWZpZWxkL2Zvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZC9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLCtDQUErQyxDQUFBOztBQVVuRixNQUFNLE9BQU8saUNBQWlDOytHQUFqQyxpQ0FBaUM7bUdBQWpDLGlDQUFpQyw2SENaOUMsc0hBSUEsMERETVksbUJBQW1COzs0RkFFbEIsaUNBQWlDO2tCQVI3QyxTQUFTOytCQUNFLG1DQUFtQyxtQkFHNUIsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyxtQkFBbUIsQ0FBQzs4QkFHckIsT0FBTztzQkFBZixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJ1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAYW5ndWxhci9mb3JtcydcbmltcG9ydCB7IERhdGVQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtcmVzb3VyY2UtdXBkYXRlZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9mb3JtLWZpZWxkLXJlc291cmNlLXVwZGF0ZWQuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBGb3JtRmllbGRSZXNvdXJjZVVwZGF0ZWRDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxnbi11aS1kYXRlLXBpY2tlclxuICBbZGF0ZV09XCJjb250cm9sLnZhbHVlXCJcbiAgKGRhdGVDaGFuZ2UpPVwiY29udHJvbC5zZXRWYWx1ZSgkZXZlbnQpXCJcbj48L2duLXVpLWRhdGUtcGlja2VyPlxuIl19
@@ -1,17 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DatePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
4
- import { TranslateModule } from '@ngx-translate/core';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@ngx-translate/core";
7
- export class FormFieldTemporalExtentsDateComponent {
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsDateComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-date", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DatePickerComponent, selector: "gn-ui-date-picker", inputs: ["date"], outputs: ["dateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsDateComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'gn-ui-form-field-temporal-extents-date', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DatePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.date</p>\n <gn-ui-date-picker\n [date]=\"control.value?.start\"\n (dateChange)=\"control.setValue({ start: $event })\"\n ></gn-ui-date-picker>\n</div>\n" }]
14
- }], propDecorators: { control: [{
15
- type: Input
16
- }] } });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUE7QUFDekUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLGdCQUFnQixDQUFBO0FBQzVDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGtEQUFrRCxDQUFBO0FBQ3RGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQTs7O0FBVXJELE1BQU0sT0FBTyxxQ0FBcUM7K0dBQXJDLHFDQUFxQzttR0FBckMscUNBQXFDLGtJQ2JsRCxnUkFPQSwwRERJWSxtQkFBbUIsd0dBQUUsZUFBZTs7NEZBRW5DLHFDQUFxQztrQkFSakQsU0FBUzsrQkFDRSx3Q0FBd0MsbUJBR2pDLHVCQUF1QixDQUFDLE1BQU0sY0FDbkMsSUFBSSxXQUNQLENBQUMsbUJBQW1CLEVBQUUsZUFBZSxDQUFDOzhCQUd0QyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnXG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJ1xuaW1wb3J0IHsgRGF0ZVBpY2tlckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvaW5wdXRzL3NyYydcbmltcG9ydCB7IFRyYW5zbGF0ZU1vZHVsZSB9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2duLXVpLWZvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1kYXRlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLWRhdGUuY29tcG9uZW50LmNzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0RhdGVQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c0RhdGVDb21wb25lbnQge1xuICBASW5wdXQoKSBjb250cm9sITogRm9ybUNvbnRyb2xcbn1cbiIsIjxkaXYgY2xhc3M9XCJib3JkZXIgcm91bmRlZC1sZyBweC00IHBiLTRcIj5cbiAgPHAgY2xhc3M9XCJteS0yXCIgdHJhbnNsYXRlPmVkaXRvci5yZWNvcmQuZm9ybS50ZW1wb3JhbEV4dGVudHMuZGF0ZTwvcD5cbiAgPGduLXVpLWRhdGUtcGlja2VyXG4gICAgW2RhdGVdPVwiY29udHJvbC52YWx1ZT8uc3RhcnRcIlxuICAgIChkYXRlQ2hhbmdlKT1cImNvbnRyb2wuc2V0VmFsdWUoeyBzdGFydDogJGV2ZW50IH0pXCJcbiAgPjwvZ24tdWktZGF0ZS1waWNrZXI+XG48L2Rpdj5cbiJdfQ==
@@ -1,17 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import { FormControl } from '@angular/forms';
3
- import { DateRangePickerComponent } from '../../../../../../../../../../libs/ui/inputs/src';
4
- import { TranslateModule } from '@ngx-translate/core';
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "@ngx-translate/core";
7
- export class FormFieldTemporalExtentsRangeComponent {
8
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
9
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FormFieldTemporalExtentsRangeComponent, isStandalone: true, selector: "gn-ui-form-field-temporal-extents-range", inputs: { control: "control" }, ngImport: i0, template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n", styles: [""], dependencies: [{ kind: "component", type: DateRangePickerComponent, selector: "gn-ui-date-range-picker", inputs: ["startDate", "endDate"], outputs: ["startDateChange", "endDateChange"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "directive", type: i1.TranslateDirective, selector: "[translate],[ngx-translate]", inputs: ["translate", "translateParams"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
10
- }
11
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormFieldTemporalExtentsRangeComponent, decorators: [{
12
- type: Component,
13
- args: [{ selector: 'gn-ui-form-field-temporal-extents-range', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [DateRangePickerComponent, TranslateModule], template: "<div class=\"border rounded-lg px-4 pb-4\">\n <p class=\"my-2\" translate>editor.record.form.temporalExtents.range</p>\n <gn-ui-date-range-picker\n [startDate]=\"control.value?.start\"\n [endDate]=\"control.value?.end\"\n (startDateChange)=\"\n control.setValue({ start: $event, end: control.value?.end })\n \"\n (endDateChange)=\"\n control.setValue({ start: control.value?.start, end: $event })\n \"\n ></gn-ui-date-range-picker>\n</div>\n" }]
14
- }], propDecorators: { control: [{
15
- type: Input
16
- }] } });
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZC9mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMvZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlL2Zvcm0tZmllbGQtdGVtcG9yYWwtZXh0ZW50cy1yYW5nZS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQTtBQUN6RSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0JBQWdCLENBQUE7QUFDNUMsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sa0RBQWtELENBQUE7QUFDM0YsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFBOzs7QUFVckQsTUFBTSxPQUFPLHNDQUFzQzsrR0FBdEMsc0NBQXNDO21HQUF0QyxzQ0FBc0MsbUlDYm5ELDBkQWFBLDBEREZZLHdCQUF3QixvSkFBRSxlQUFlOzs0RkFFeEMsc0NBQXNDO2tCQVJsRCxTQUFTOytCQUNFLHlDQUF5QyxtQkFHbEMsdUJBQXVCLENBQUMsTUFBTSxjQUNuQyxJQUFJLFdBQ1AsQ0FBQyx3QkFBd0IsRUFBRSxlQUFlLENBQUM7OEJBRzNDLE9BQU87c0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnXG5pbXBvcnQgeyBEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQgfSBmcm9tICcuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2lucHV0cy9zcmMnXG5pbXBvcnQgeyBUcmFuc2xhdGVNb2R1bGUgfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJ1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdnbi11aS1mb3JtLWZpZWxkLXRlbXBvcmFsLWV4dGVudHMtcmFuZ2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZm9ybS1maWVsZC10ZW1wb3JhbC1leHRlbnRzLXJhbmdlLmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtEYXRlUmFuZ2VQaWNrZXJDb21wb25lbnQsIFRyYW5zbGF0ZU1vZHVsZV0sXG59KVxuZXhwb3J0IGNsYXNzIEZvcm1GaWVsZFRlbXBvcmFsRXh0ZW50c1JhbmdlQ29tcG9uZW50IHtcbiAgQElucHV0KCkgY29udHJvbCE6IEZvcm1Db250cm9sXG59XG4iLCI8ZGl2IGNsYXNzPVwiYm9yZGVyIHJvdW5kZWQtbGcgcHgtNCBwYi00XCI+XG4gIDxwIGNsYXNzPVwibXktMlwiIHRyYW5zbGF0ZT5lZGl0b3IucmVjb3JkLmZvcm0udGVtcG9yYWxFeHRlbnRzLnJhbmdlPC9wPlxuICA8Z24tdWktZGF0ZS1yYW5nZS1waWNrZXJcbiAgICBbc3RhcnREYXRlXT1cImNvbnRyb2wudmFsdWU/LnN0YXJ0XCJcbiAgICBbZW5kRGF0ZV09XCJjb250cm9sLnZhbHVlPy5lbmRcIlxuICAgIChzdGFydERhdGVDaGFuZ2UpPVwiXG4gICAgICBjb250cm9sLnNldFZhbHVlKHsgc3RhcnQ6ICRldmVudCwgZW5kOiBjb250cm9sLnZhbHVlPy5lbmQgfSlcbiAgICBcIlxuICAgIChlbmREYXRlQ2hhbmdlKT1cIlxuICAgICAgY29udHJvbC5zZXRWYWx1ZSh7IHN0YXJ0OiBjb250cm9sLnZhbHVlPy5zdGFydCwgZW5kOiAkZXZlbnQgfSlcbiAgICBcIlxuICA+PC9nbi11aS1kYXRlLXJhbmdlLXBpY2tlcj5cbjwvZGl2PlxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1maWVsZC5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvZmVhdHVyZS9lZGl0b3Ivc3JjL2xpYi9jb21wb25lbnRzL3JlY29yZC1mb3JtL2Zvcm0tZmllbGQvZm9ybS1maWVsZC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsidHlwZSBCYXNlRm9ybUZpZWxkVHlwZSA9XG4gIHwgJ3RleHQnXG4gIHwgJ251bWJlcidcbiAgfCAncmljaCdcbiAgfCAnZGF0ZSdcbiAgfCAnbGlzdCdcbiAgfCAnc3BhdGlhbF9leHRlbnQnXG4gIHwgJ3RlbXBvcmFsX2V4dGVudCdcbiAgfCAndXJsJ1xuICB8ICdmaWxlJ1xuICB8ICd0b2dnbGUnXG5cbnR5cGUgQWxsRm9ybUZpZWxkVHlwZSA9IEJhc2VGb3JtRmllbGRUeXBlIHwgJ29iamVjdCcgfCAnYXJyYXknXG5cbmludGVyZmFjZSBGb3JtRmllbGRDb25maWdCYXNlIHtcbiAgdHlwZTogQWxsRm9ybUZpZWxkVHlwZVxuICBsYWJlbEtleTogc3RyaW5nXG4gIGhpbnRLZXk/OiBzdHJpbmdcbiAgdG9vbHRpcEtleT86IHN0cmluZ1xuICByZXF1aXJlZD86IGJvb2xlYW5cbiAgbG9ja2VkPzogYm9vbGVhblxuICBpbnZhbGlkPzogYm9vbGVhblxuICBpbnZhbGlkSGludEtleT86IHN0cmluZ1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ1NpbXBsZSBleHRlbmRzIEZvcm1GaWVsZENvbmZpZ0Jhc2Uge1xuICB0eXBlOiBCYXNlRm9ybUZpZWxkVHlwZVxufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ0FycmF5IGV4dGVuZHMgRm9ybUZpZWxkQ29uZmlnQmFzZSB7XG4gIHR5cGU6ICdhcnJheSdcbiAgaXRlbXM6IEZvcm1GaWVsZENvbmZpZ1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIEZvcm1GaWVsZENvbmZpZ09iamVjdCBleHRlbmRzIEZvcm1GaWVsZENvbmZpZ0Jhc2Uge1xuICB0eXBlOiAnb2JqZWN0J1xuICBmaWVsZHM6IEFycmF5PEZvcm1GaWVsZENvbmZpZz5cbn1cblxuZXhwb3J0IHR5cGUgRm9ybUZpZWxkQ29uZmlnID1cbiAgfCBGb3JtRmllbGRDb25maWdTaW1wbGVcbiAgfCBGb3JtRmllbGRDb25maWdBcnJheVxuICB8IEZvcm1GaWVsZENvbmZpZ09iamVjdFxuIl19
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmllbGRzLm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9mZWF0dXJlL2VkaXRvci9zcmMvbGliL21vZGVscy9maWVsZHMubW9kZWwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZvcm1GaWVsZENvbmZpZyB9IGZyb20gJy4uL2NvbXBvbmVudHMvcmVjb3JkLWZvcm0vZm9ybS1maWVsZCdcblxuLy8gRXhwcmVzc2lvbnMgc2hvdWxkIGJlIGVuY2xvc2VkIGluIGAke31gIHRvIGJlIHJlY29nbml6ZWQgYXMgc3VjaFxuLy8gZWcuICR7ZGF0ZU5vdygpfVxuZXhwb3J0IHR5cGUgRWRpdG9yRmllbGRFeHByZXNzaW9uID0gYCRcXHske3N0cmluZ319YFxuXG5leHBvcnQgaW50ZXJmYWNlIEVkaXRvckZpZWxkQ29uZmlnIHtcbiAgLy8gY29uZmlndXJhdGlvbiBvZiB0aGUgZm9ybSBmaWVsZCB1c2VkIGFzIHByZXNlbnRhdGlvbjsgb3B0aW9uYWwsIG5vdGhpbmcgc2hvd24gaWYgbm90IGRlZmluZWRcbiAgZm9ybUZpZWxkQ29uZmlnPzogRm9ybUZpZWxkQ29uZmlnXG5cbiAgLy8gbmFtZSBvZiB0aGUgdGFyZ2V0IGZpZWxkIGluIHRoZSByZWNvcmQ7IHdpbGwgbm90IGNoYW5nZSB0aGUgcmVjb3JkIGRpcmVjdGx5IGlmIG5vdCBkZWZpbmVkXG4gIG1vZGVsPzogc3RyaW5nXG5cbiAgLy8gYSBoaWRkZW4gZmllbGQgd29uJ3Qgc2hvdyBidXQgY2FuIHN0aWxsIGJlIHVzZWQgdG8gbW9kaWZ5IHRoZSByZWNvcmRcbiAgLy8gRklYTUU6IGN1cnJlbnRseSB0aGlzIGlzIHJlZHVuZGFudCB3aXRoIGFuIGFic2VuY2Ugb2YgZm9ybUZpZWxkQ29uZmlnIGJ1dCBuZWNlc3NhcnkgZm9yIGNsYXJpdHlcbiAgaGlkZGVuPzogYm9vbGVhblxuXG4gIC8vIHRoZSByZXN1bHQgb2YgdGhpcyBleHByZXNzaW9uIHdpbGwgcmVwbGFjZSB0aGUgZmllbGQgdmFsdWUgb24gc2F2ZVxuICBvblNhdmVQcm9jZXNzPzogRWRpdG9yRmllbGRFeHByZXNzaW9uXG59XG5cbmV4cG9ydCB0eXBlIEVkaXRvckZpZWxkc0NvbmZpZyA9IEVkaXRvckZpZWxkQ29uZmlnW11cblxuZXhwb3J0IHR5cGUgRWRpdG9yRmllbGRWYWx1ZSA9IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCB1bmtub3duXG5cbmV4cG9ydCBpbnRlcmZhY2UgRWRpdG9yRmllbGRTdGF0ZSB7XG4gIGNvbmZpZzogRWRpdG9yRmllbGRDb25maWdcbiAgdmFsdWU6IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCB1bmtub3duXG59XG4iXX0=
@@ -1,43 +0,0 @@
1
- import { CdkDrag, CdkDragHandle, CdkDropList, moveItemInArray, } from '@angular/cdk/drag-drop';
2
- import { NgComponentOutlet, NgFor } from '@angular/common';
3
- import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
4
- import { MatIconModule } from '@angular/material/icon';
5
- import { ButtonComponent } from '../../../../../../libs/ui/inputs/src';
6
- import * as i0 from "@angular/core";
7
- export class SortableListComponent {
8
- constructor() {
9
- this.elementsChange = new EventEmitter();
10
- this.add = new EventEmitter();
11
- }
12
- drop(event) {
13
- moveItemInArray(this.elements, event.previousIndex, event.currentIndex);
14
- this.elementsChange.emit(this.elements);
15
- }
16
- removeElement(index) {
17
- this.elements = this.elements.filter((_, i) => i !== index);
18
- this.elementsChange.emit(this.elements);
19
- }
20
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortableListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
21
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: SortableListComponent, isStandalone: true, selector: "gn-ui-sortable-list", inputs: { elements: "elements", addOptions: "addOptions" }, outputs: { elementsChange: "elementsChange", add: "add" }, ngImport: i0, template: "<div class=\"flex gap-2 mb-2\">\n <gn-ui-button\n *ngFor=\"let addOption of addOptions\"\n (buttonClick)=\"add.emit(addOption.eventName)\"\n >\n <span class=\"material-symbols-outlined gn-ui-icon-small\"> add </span>\n &nbsp;{{ addOption.buttonLabel }}</gn-ui-button\n >\n</div>\n<div\n cdkDropList\n class=\"sortable-list flex flex-col gap-3 p-2\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <ng-container *ngFor=\"let element of elements; index as index\">\n <div class=\"sortable-box bg-white flex items-center\" cdkDrag>\n <span\n cdkDragHandle\n class=\"material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none\"\n >\n drag_handle\n </span>\n <div class=\"flex-1\">\n <ng-container\n *ngComponentOutlet=\"element.component; inputs: element.inputs\"\n ></ng-container>\n </div>\n <span\n (click)=\"removeElement(index)\"\n class=\"material-symbols-outlined mx-[10px] cursor-pointer gn-ui-icon-medium flex-none\"\n >\n close\n </span>\n </div>\n </ng-container>\n</div>\n", styles: [".cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.sortable-list.cdk-drop-list-dragging .sortable-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}\n"], dependencies: [{ kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }, { kind: "directive", type: CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }, { kind: "directive", type: CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragData", "cdkDragLockAxis", "cdkDragRootElement", "cdkDragBoundary", "cdkDragStartDelay", "cdkDragFreeDragPosition", "cdkDragDisabled", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragPreviewContainer"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { kind: "directive", type: CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: ButtonComponent, selector: "gn-ui-button", inputs: ["type", "disabled", "extraClass"], outputs: ["buttonClick"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
22
- }
23
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortableListComponent, decorators: [{
24
- type: Component,
25
- args: [{ selector: 'gn-ui-sortable-list', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
26
- NgFor,
27
- NgComponentOutlet,
28
- CdkDropList,
29
- CdkDrag,
30
- CdkDragHandle,
31
- MatIconModule,
32
- ButtonComponent,
33
- ], template: "<div class=\"flex gap-2 mb-2\">\n <gn-ui-button\n *ngFor=\"let addOption of addOptions\"\n (buttonClick)=\"add.emit(addOption.eventName)\"\n >\n <span class=\"material-symbols-outlined gn-ui-icon-small\"> add </span>\n &nbsp;{{ addOption.buttonLabel }}</gn-ui-button\n >\n</div>\n<div\n cdkDropList\n class=\"sortable-list flex flex-col gap-3 p-2\"\n (cdkDropListDropped)=\"drop($event)\"\n>\n <ng-container *ngFor=\"let element of elements; index as index\">\n <div class=\"sortable-box bg-white flex items-center\" cdkDrag>\n <span\n cdkDragHandle\n class=\"material-symbols-outlined mx-[10px] cursor-grab gn-ui-icon-medium flex-none\"\n >\n drag_handle\n </span>\n <div class=\"flex-1\">\n <ng-container\n *ngComponentOutlet=\"element.component; inputs: element.inputs\"\n ></ng-container>\n </div>\n <span\n (click)=\"removeElement(index)\"\n class=\"material-symbols-outlined mx-[10px] cursor-pointer gn-ui-icon-medium flex-none\"\n >\n close\n </span>\n </div>\n </ng-container>\n</div>\n", styles: [".cdk-drag-preview{box-sizing:border-box;border-radius:4px;box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.cdk-drag-placeholder{opacity:0}.cdk-drag-animating{transition:transform .25s cubic-bezier(0,0,.2,1)}.sortable-list.cdk-drop-list-dragging .sortable-box:not(.cdk-drag-placeholder){transition:transform .25s cubic-bezier(0,0,.2,1)}\n"] }]
34
- }], propDecorators: { elements: [{
35
- type: Input
36
- }], addOptions: [{
37
- type: Input
38
- }], elementsChange: [{
39
- type: Output
40
- }], add: [{
41
- type: Output
42
- }] } });
43
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydGFibGUtbGlzdC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL3VpL2VsZW1lbnRzL3NyYy9saWIvc29ydGFibGUtbGlzdC9zb3J0YWJsZS1saXN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvdWkvZWxlbWVudHMvc3JjL2xpYi9zb3J0YWJsZS1saXN0L3NvcnRhYmxlLWxpc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLE9BQU8sRUFFUCxhQUFhLEVBQ2IsV0FBVyxFQUNYLGVBQWUsR0FDaEIsTUFBTSx3QkFBd0IsQ0FBQTtBQUMvQixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsS0FBSyxFQUFFLE1BQU0saUJBQWlCLENBQUE7QUFDMUQsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFDTCxNQUFNLEdBRVAsTUFBTSxlQUFlLENBQUE7QUFDdEIsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFBO0FBQ3RELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQTs7QUF1QnRFLE1BQU0sT0FBTyxxQkFBcUI7SUFoQmxDO1FBbUJZLG1CQUFjLEdBQUcsSUFBSSxZQUFZLEVBQXlCLENBQUE7UUFDMUQsUUFBRyxHQUFHLElBQUksWUFBWSxFQUFVLENBQUE7S0FXM0M7SUFUQyxJQUFJLENBQUMsS0FBNEI7UUFDL0IsZUFBZSxDQUFDLElBQUksQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDLGFBQWEsRUFBRSxLQUFLLENBQUMsWUFBWSxDQUFDLENBQUE7UUFDdkUsSUFBSSxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFBO0lBQ3pDLENBQUM7SUFFRCxhQUFhLENBQUMsS0FBYTtRQUN6QixJQUFJLENBQUMsUUFBUSxHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLEtBQUssQ0FBQyxDQUFBO1FBQzNELElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsQ0FBQTtJQUN6QyxDQUFDOytHQWRVLHFCQUFxQjttR0FBckIscUJBQXFCLHNNQ3hDbEMsdW1DQW9DQSw2YURMSSxLQUFLLG1IQUNMLGlCQUFpQixvUEFDakIsV0FBVywrZEFDWCxPQUFPLHdiQUNQLGFBQWEsOEZBQ2IsYUFBYSwrQkFDYixlQUFlOzs0RkFHTixxQkFBcUI7a0JBaEJqQyxTQUFTOytCQUNFLHFCQUFxQixtQkFHZCx1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DLElBQUksV0FDUDt3QkFDUCxLQUFLO3dCQUNMLGlCQUFpQjt3QkFDakIsV0FBVzt3QkFDWCxPQUFPO3dCQUNQLGFBQWE7d0JBQ2IsYUFBYTt3QkFDYixlQUFlO3FCQUNoQjs4QkFHUSxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0ksY0FBYztzQkFBdkIsTUFBTTtnQkFDRyxHQUFHO3NCQUFaLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBDZGtEcmFnLFxuICBDZGtEcmFnRHJvcCxcbiAgQ2RrRHJhZ0hhbmRsZSxcbiAgQ2RrRHJvcExpc3QsXG4gIG1vdmVJdGVtSW5BcnJheSxcbn0gZnJvbSAnQGFuZ3VsYXIvY2RrL2RyYWctZHJvcCdcbmltcG9ydCB7IE5nQ29tcG9uZW50T3V0bGV0LCBOZ0ZvciB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbidcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE91dHB1dCxcbiAgVHlwZSxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSdcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJ1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vLi4vLi4vLi4vLi4vbGlicy91aS9pbnB1dHMvc3JjJ1xuXG50eXBlIER5bmFtaWNFbGVtZW50ID0ge1xuICBjb21wb25lbnQ6IFR5cGU8YW55PlxuICBpbnB1dHM6IFJlY29yZDxzdHJpbmcsIGFueT5cbn1cblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZ24tdWktc29ydGFibGUtbGlzdCcsXG4gIHRlbXBsYXRlVXJsOiAnc29ydGFibGUtbGlzdC5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWydzb3J0YWJsZS1saXN0LmNvbXBvbmVudC5jc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBOZ0ZvcixcbiAgICBOZ0NvbXBvbmVudE91dGxldCxcbiAgICBDZGtEcm9wTGlzdCxcbiAgICBDZGtEcmFnLFxuICAgIENka0RyYWdIYW5kbGUsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgICBCdXR0b25Db21wb25lbnQsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIFNvcnRhYmxlTGlzdENvbXBvbmVudCB7XG4gIEBJbnB1dCgpIGVsZW1lbnRzOiBBcnJheTxEeW5hbWljRWxlbWVudD5cbiAgQElucHV0KCkgYWRkT3B0aW9uczogQXJyYXk8eyBidXR0b25MYWJlbDogc3RyaW5nOyBldmVudE5hbWU6IHN0cmluZyB9PlxuICBAT3V0cHV0KCkgZWxlbWVudHNDaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyPEFycmF5PER5bmFtaWNFbGVtZW50Pj4oKVxuICBAT3V0cHV0KCkgYWRkID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KClcblxuICBkcm9wKGV2ZW50OiBDZGtEcmFnRHJvcDxzdHJpbmdbXT4pIHtcbiAgICBtb3ZlSXRlbUluQXJyYXkodGhpcy5lbGVtZW50cywgZXZlbnQucHJldmlvdXNJbmRleCwgZXZlbnQuY3VycmVudEluZGV4KVxuICAgIHRoaXMuZWxlbWVudHNDaGFuZ2UuZW1pdCh0aGlzLmVsZW1lbnRzKVxuICB9XG5cbiAgcmVtb3ZlRWxlbWVudChpbmRleDogbnVtYmVyKSB7XG4gICAgdGhpcy5lbGVtZW50cyA9IHRoaXMuZWxlbWVudHMuZmlsdGVyKChfLCBpKSA9PiBpICE9PSBpbmRleClcbiAgICB0aGlzLmVsZW1lbnRzQ2hhbmdlLmVtaXQodGhpcy5lbGVtZW50cylcbiAgfVxufVxuIiwiPGRpdiBjbGFzcz1cImZsZXggZ2FwLTIgbWItMlwiPlxuICA8Z24tdWktYnV0dG9uXG4gICAgKm5nRm9yPVwibGV0IGFkZE9wdGlvbiBvZiBhZGRPcHRpb25zXCJcbiAgICAoYnV0dG9uQ2xpY2spPVwiYWRkLmVtaXQoYWRkT3B0aW9uLmV2ZW50TmFtZSlcIlxuICA+XG4gICAgPHNwYW4gY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIGduLXVpLWljb24tc21hbGxcIj4gYWRkIDwvc3Bhbj5cbiAgICAmbmJzcDt7eyBhZGRPcHRpb24uYnV0dG9uTGFiZWwgfX08L2duLXVpLWJ1dHRvblxuICA+XG48L2Rpdj5cbjxkaXZcbiAgY2RrRHJvcExpc3RcbiAgY2xhc3M9XCJzb3J0YWJsZS1saXN0IGZsZXggZmxleC1jb2wgZ2FwLTMgcC0yXCJcbiAgKGNka0Ryb3BMaXN0RHJvcHBlZCk9XCJkcm9wKCRldmVudClcIlxuPlxuICA8bmctY29udGFpbmVyICpuZ0Zvcj1cImxldCBlbGVtZW50IG9mIGVsZW1lbnRzOyBpbmRleCBhcyBpbmRleFwiPlxuICAgIDxkaXYgY2xhc3M9XCJzb3J0YWJsZS1ib3ggYmctd2hpdGUgZmxleCBpdGVtcy1jZW50ZXJcIiBjZGtEcmFnPlxuICAgICAgPHNwYW5cbiAgICAgICAgY2RrRHJhZ0hhbmRsZVxuICAgICAgICBjbGFzcz1cIm1hdGVyaWFsLXN5bWJvbHMtb3V0bGluZWQgbXgtWzEwcHhdIGN1cnNvci1ncmFiIGduLXVpLWljb24tbWVkaXVtIGZsZXgtbm9uZVwiXG4gICAgICA+XG4gICAgICAgIGRyYWdfaGFuZGxlXG4gICAgICA8L3NwYW4+XG4gICAgICA8ZGl2IGNsYXNzPVwiZmxleC0xXCI+XG4gICAgICAgIDxuZy1jb250YWluZXJcbiAgICAgICAgICAqbmdDb21wb25lbnRPdXRsZXQ9XCJlbGVtZW50LmNvbXBvbmVudDsgaW5wdXRzOiBlbGVtZW50LmlucHV0c1wiXG4gICAgICAgID48L25nLWNvbnRhaW5lcj5cbiAgICAgIDwvZGl2PlxuICAgICAgPHNwYW5cbiAgICAgICAgKGNsaWNrKT1cInJlbW92ZUVsZW1lbnQoaW5kZXgpXCJcbiAgICAgICAgY2xhc3M9XCJtYXRlcmlhbC1zeW1ib2xzLW91dGxpbmVkIG14LVsxMHB4XSBjdXJzb3ItcG9pbnRlciBnbi11aS1pY29uLW1lZGl1bSBmbGV4LW5vbmVcIlxuICAgICAgPlxuICAgICAgICBjbG9zZVxuICAgICAgPC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L25nLWNvbnRhaW5lcj5cbjwvZGl2PlxuIl19
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldResourceUpdatedComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldResourceUpdatedComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldResourceUpdatedComponent, "gn-ui-form-field-resource-updated", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-resource-updated.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-resource-updated.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-resource-updated/form-field-resource-updated.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAG5C,qBAQa,iCAAiC;IACnC,OAAO,EAAG,WAAW,CAAA;yCADnB,iCAAiC;2CAAjC,iCAAiC;CAE7C"}
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldTemporalExtentsDateComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTemporalExtentsDateComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTemporalExtentsDateComponent, "gn-ui-form-field-temporal-extents-date", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-temporal-extents-date.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-temporal-extents-date.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-date/form-field-temporal-extents-date.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAI5C,qBAQa,qCAAqC;IACvC,OAAO,EAAG,WAAW,CAAA;yCADnB,qCAAqC;2CAArC,qCAAqC;CAEjD"}
@@ -1,8 +0,0 @@
1
- import { FormControl } from '@angular/forms';
2
- import * as i0 from "@angular/core";
3
- export declare class FormFieldTemporalExtentsRangeComponent {
4
- control: FormControl;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldTemporalExtentsRangeComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldTemporalExtentsRangeComponent, "gn-ui-form-field-temporal-extents-range", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
7
- }
8
- //# sourceMappingURL=form-field-temporal-extents-range.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field-temporal-extents-range.component.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents-range/form-field-temporal-extents-range.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;;AAI5C,qBAQa,sCAAsC;IACxC,OAAO,EAAG,WAAW,CAAA;yCADnB,sCAAsC;2CAAtC,sCAAsC;CAElD"}
@@ -1,26 +0,0 @@
1
- type BaseFormFieldType = 'text' | 'number' | 'rich' | 'date' | 'list' | 'spatial_extent' | 'temporal_extent' | 'url' | 'file' | 'toggle';
2
- type AllFormFieldType = BaseFormFieldType | 'object' | 'array';
3
- interface FormFieldConfigBase {
4
- type: AllFormFieldType;
5
- labelKey: string;
6
- hintKey?: string;
7
- tooltipKey?: string;
8
- required?: boolean;
9
- locked?: boolean;
10
- invalid?: boolean;
11
- invalidHintKey?: string;
12
- }
13
- export interface FormFieldConfigSimple extends FormFieldConfigBase {
14
- type: BaseFormFieldType;
15
- }
16
- export interface FormFieldConfigArray extends FormFieldConfigBase {
17
- type: 'array';
18
- items: FormFieldConfig;
19
- }
20
- export interface FormFieldConfigObject extends FormFieldConfigBase {
21
- type: 'object';
22
- fields: Array<FormFieldConfig>;
23
- }
24
- export type FormFieldConfig = FormFieldConfigSimple | FormFieldConfigArray | FormFieldConfigObject;
25
- export {};
26
- //# sourceMappingURL=form-field.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"form-field.model.d.ts","sourceRoot":"","sources":["../../../../../../../../src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.model.ts"],"names":[],"mappings":"AAAA,KAAK,iBAAiB,GAClB,MAAM,GACN,QAAQ,GACR,MAAM,GACN,MAAM,GACN,MAAM,GACN,gBAAgB,GAChB,iBAAiB,GACjB,KAAK,GACL,MAAM,GACN,QAAQ,CAAA;AAEZ,KAAK,gBAAgB,GAAG,iBAAiB,GAAG,QAAQ,GAAG,OAAO,CAAA;AAE9D,UAAU,mBAAmB;IAC3B,IAAI,EAAE,gBAAgB,CAAA;IACtB,QAAQ,EAAE,MAAM,CAAA;IAChB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAChE,IAAI,EAAE,iBAAiB,CAAA;CACxB;AAED,MAAM,WAAW,oBAAqB,SAAQ,mBAAmB;IAC/D,IAAI,EAAE,OAAO,CAAA;IACb,KAAK,EAAE,eAAe,CAAA;CACvB;AAED,MAAM,WAAW,qBAAsB,SAAQ,mBAAmB;IAChE,IAAI,EAAE,QAAQ,CAAA;IACd,MAAM,EAAE,KAAK,CAAC,eAAe,CAAC,CAAA;CAC/B;AAED,MAAM,MAAM,eAAe,GACvB,qBAAqB,GACrB,oBAAoB,GACpB,qBAAqB,CAAA"}
@@ -1,15 +0,0 @@
1
- import { FormFieldConfig } from '../components/record-form/form-field';
2
- export type EditorFieldExpression = `$\{${string}}`;
3
- export interface EditorFieldConfig {
4
- formFieldConfig?: FormFieldConfig;
5
- model?: string;
6
- hidden?: boolean;
7
- onSaveProcess?: EditorFieldExpression;
8
- }
9
- export type EditorFieldsConfig = EditorFieldConfig[];
10
- export type EditorFieldValue = string | number | boolean | unknown;
11
- export interface EditorFieldState {
12
- config: EditorFieldConfig;
13
- value: string | number | boolean | unknown;
14
- }
15
- //# sourceMappingURL=fields.model.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"fields.model.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/feature/editor/src/lib/models/fields.model.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAA;AAItE,MAAM,MAAM,qBAAqB,GAAG,MAAM,MAAM,GAAG,CAAA;AAEnD,MAAM,WAAW,iBAAiB;IAEhC,eAAe,CAAC,EAAE,eAAe,CAAA;IAGjC,KAAK,CAAC,EAAE,MAAM,CAAA;IAId,MAAM,CAAC,EAAE,OAAO,CAAA;IAGhB,aAAa,CAAC,EAAE,qBAAqB,CAAA;CACtC;AAED,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,EAAE,CAAA;AAEpD,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;AAElE,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,iBAAiB,CAAA;IACzB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,CAAA;CAC3C"}
@@ -1,22 +0,0 @@
1
- import { CdkDragDrop } from '@angular/cdk/drag-drop';
2
- import { EventEmitter, Type } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- type DynamicElement = {
5
- component: Type<any>;
6
- inputs: Record<string, any>;
7
- };
8
- export declare class SortableListComponent {
9
- elements: Array<DynamicElement>;
10
- addOptions: Array<{
11
- buttonLabel: string;
12
- eventName: string;
13
- }>;
14
- elementsChange: EventEmitter<DynamicElement[]>;
15
- add: EventEmitter<string>;
16
- drop(event: CdkDragDrop<string[]>): void;
17
- removeElement(index: number): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<SortableListComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<SortableListComponent, "gn-ui-sortable-list", never, { "elements": { "alias": "elements"; "required": false; }; "addOptions": { "alias": "addOptions"; "required": false; }; }, { "elementsChange": "elementsChange"; "add": "add"; }, never, never, true, never>;
20
- }
21
- export {};
22
- //# sourceMappingURL=sortable-list.component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"sortable-list.component.d.ts","sourceRoot":"","sources":["../../../../../../src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,WAAW,EAIZ,MAAM,wBAAwB,CAAA;AAE/B,OAAO,EAGL,YAAY,EAGZ,IAAI,EACL,MAAM,eAAe,CAAA;;AAItB,KAAK,cAAc,GAAG;IACpB,SAAS,EAAE,IAAI,CAAC,GAAG,CAAC,CAAA;IACpB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC5B,CAAA;AAED,qBAgBa,qBAAqB;IACvB,QAAQ,EAAE,KAAK,CAAC,cAAc,CAAC,CAAA;IAC/B,UAAU,EAAE,KAAK,CAAC;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,CAAC,CAAA;IAC5D,cAAc,iCAA4C;IAC1D,GAAG,uBAA6B;IAE1C,IAAI,CAAC,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,CAAC;IAKjC,aAAa,CAAC,KAAK,EAAE,MAAM;yCAXhB,qBAAqB;2CAArB,qBAAqB;CAejC"}
@@ -1,7 +0,0 @@
1
- import Feature from 'ol/Feature'
2
- import { Geometry } from 'ol/geom'
3
-
4
- export const OL_FEATURE_FIXTURE = new Feature()
5
- OL_FEATURE_FIXTURE.set('id', 123)
6
- OL_FEATURE_FIXTURE.set('name', 'ol_feature')
7
- OL_FEATURE_FIXTURE.set('geometry', new Geometry())
@@ -1,10 +0,0 @@
1
- export function deepFreeze<U>(obj: U): U {
2
- if (Array.isArray(obj)) {
3
- obj.forEach(deepFreeze)
4
- return obj
5
- } else if (obj instanceof Object) {
6
- Object.keys(obj).forEach((prop) => deepFreeze(obj[prop]))
7
- return Object.freeze(obj)
8
- }
9
- return obj
10
- }
@@ -1 +0,0 @@
1
- export * from './freeze'
@@ -1,8 +0,0 @@
1
- <gn-ui-image-input
2
- [maxSizeMB]="5"
3
- [previewUrl]="resourceUrl"
4
- [altText]="resourceFileName"
5
- (fileChange)="handleFileChange($event)"
6
- (urlChange)="handleUrlChange($event)"
7
- (delete)="handleDelete()"
8
- ></gn-ui-image-input>