geonetwork-ui 2.4.0-dev.f5019723 → 2.4.0-dev.fdf8f64b

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 (56) hide show
  1. package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +2 -2
  2. package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +72 -0
  3. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +6 -4
  4. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +191 -0
  5. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +8 -6
  6. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +10 -2
  7. package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +3 -3
  8. package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +2 -2
  9. package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +5 -3
  10. package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +20 -4
  11. package/esm2022/translations/de.json +7 -0
  12. package/esm2022/translations/en.json +7 -0
  13. package/esm2022/translations/es.json +7 -0
  14. package/esm2022/translations/fr.json +8 -1
  15. package/esm2022/translations/it.json +7 -0
  16. package/esm2022/translations/nl.json +7 -0
  17. package/esm2022/translations/pt.json +7 -0
  18. package/fesm2022/geonetwork-ui.mjs +644 -336
  19. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  20. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +16 -0
  21. package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -0
  22. 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 -1
  23. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +44 -0
  24. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -0
  25. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  26. package/libs/feature/editor/src/lib/fields.config.d.ts +1 -0
  27. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  28. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +1 -0
  29. package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
  30. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +6 -3
  31. package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -1
  32. package/package.json +1 -1
  33. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.css +0 -0
  34. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +31 -0
  35. package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +82 -0
  36. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +20 -11
  37. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +3 -0
  38. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.css +0 -0
  39. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +71 -0
  40. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +241 -0
  41. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +8 -0
  42. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +5 -3
  43. package/src/libs/feature/editor/src/lib/fields.config.ts +10 -1
  44. package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +8 -8
  45. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +1 -1
  46. package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +3 -1
  47. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +5 -1
  48. package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +25 -2
  49. package/translations/de.json +7 -0
  50. package/translations/en.json +7 -0
  51. package/translations/es.json +7 -0
  52. package/translations/fr.json +8 -1
  53. package/translations/it.json +7 -0
  54. package/translations/nl.json +7 -0
  55. package/translations/pt.json +7 -0
  56. package/translations/sk.json +7 -0
@@ -1,4 +1,5 @@
1
1
  {
2
+ "": "",
2
3
  "Add Layer As": "",
3
4
  "button.login": "",
4
5
  "catalog.figures.datasets": "conjuntos de dados",
@@ -217,9 +218,13 @@
217
218
  "editor.record.form.field.onlineResource.confirm": "",
218
219
  "editor.record.form.field.onlineResource.dialogTitle": "",
219
220
  "editor.record.form.field.onlineResource.edit.description": "",
221
+ "editor.record.form.field.onlineResource.edit.protocol": "",
220
222
  "editor.record.form.field.onlineResource.edit.title": "",
221
223
  "editor.record.form.field.onlineResource.fileSize": "",
222
224
  "editor.record.form.field.onlineResource.modify": "",
225
+ "editor.record.form.field.onlineResource.toggle.dataset": "",
226
+ "editor.record.form.field.onlineResource.toggle.service": "",
227
+ "editor.record.form.field.onlineResources": "",
223
228
  "editor.record.form.field.overviews": "",
224
229
  "editor.record.form.field.recordUpdated": "",
225
230
  "editor.record.form.field.resourceUpdated": "",
@@ -242,6 +247,7 @@
242
247
  "editor.record.form.page.ressources": "",
243
248
  "editor.record.form.section.about.description": "",
244
249
  "editor.record.form.section.about.label": "",
250
+ "editor.record.form.section.annexes.description": "",
245
251
  "editor.record.form.section.annexes.label": "",
246
252
  "editor.record.form.section.associatedResources.description": "",
247
253
  "editor.record.form.section.associatedResources.label": "",
@@ -265,6 +271,7 @@
265
271
  "editor.record.loadError.body": "",
266
272
  "editor.record.loadError.closeMessage": "",
267
273
  "editor.record.loadError.title": "",
274
+ "editor.record.onlineResource.protocol.other": "",
268
275
  "editor.record.onlineResourceError.body": "",
269
276
  "editor.record.onlineResourceError.closeMessage": "",
270
277
  "editor.record.onlineResourceError.title": "",
@@ -1,4 +1,5 @@
1
1
  {
2
+ "": "",
2
3
  "Add Layer As": "",
3
4
  "button.login": "",
4
5
  "catalog.figures.datasets": "{count, plural, =0{datasety} one{dataset} other{datasety}}",
@@ -217,9 +218,13 @@
217
218
  "editor.record.form.field.onlineResource.confirm": "",
218
219
  "editor.record.form.field.onlineResource.dialogTitle": "",
219
220
  "editor.record.form.field.onlineResource.edit.description": "",
221
+ "editor.record.form.field.onlineResource.edit.protocol": "",
220
222
  "editor.record.form.field.onlineResource.edit.title": "",
221
223
  "editor.record.form.field.onlineResource.fileSize": "",
222
224
  "editor.record.form.field.onlineResource.modify": "",
225
+ "editor.record.form.field.onlineResource.toggle.dataset": "",
226
+ "editor.record.form.field.onlineResource.toggle.service": "",
227
+ "editor.record.form.field.onlineResources": "",
223
228
  "editor.record.form.field.overviews": "",
224
229
  "editor.record.form.field.recordUpdated": "",
225
230
  "editor.record.form.field.resourceUpdated": "",
@@ -242,6 +247,7 @@
242
247
  "editor.record.form.page.ressources": "",
243
248
  "editor.record.form.section.about.description": "",
244
249
  "editor.record.form.section.about.label": "",
250
+ "editor.record.form.section.annexes.description": "",
245
251
  "editor.record.form.section.annexes.label": "",
246
252
  "editor.record.form.section.associatedResources.description": "",
247
253
  "editor.record.form.section.associatedResources.label": "",
@@ -265,6 +271,7 @@
265
271
  "editor.record.loadError.body": "",
266
272
  "editor.record.loadError.closeMessage": "",
267
273
  "editor.record.loadError.title": "",
274
+ "editor.record.onlineResource.protocol.other": "",
268
275
  "editor.record.onlineResourceError.body": "",
269
276
  "editor.record.onlineResourceError.closeMessage": "",
270
277
  "editor.record.onlineResourceError.title": "",