geonetwork-ui 2.4.0-dev.d5b28b1e → 2.4.0-dev.dd042cec

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 (65) hide show
  1. package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +5 -3
  2. package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +28 -1
  3. package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +29 -0
  4. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +170 -0
  5. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +3 -3
  6. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +47 -0
  7. package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +17 -3
  8. package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +3 -3
  9. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +19 -2
  10. package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +3 -3
  11. package/esm2022/libs/ui/elements/src/lib/sortable-list/sortable-list.component.mjs +2 -1
  12. package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +19 -5
  13. package/esm2022/translations/de.json +23 -0
  14. package/esm2022/translations/en.json +23 -0
  15. package/esm2022/translations/es.json +23 -0
  16. package/esm2022/translations/fr.json +24 -1
  17. package/esm2022/translations/it.json +23 -0
  18. package/esm2022/translations/nl.json +23 -0
  19. package/esm2022/translations/pt.json +23 -0
  20. package/fesm2022/geonetwork-ui.mjs +507 -16
  21. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  22. package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -0
  23. package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
  24. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts +12 -0
  25. package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -0
  26. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts +47 -0
  27. 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
  28. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +17 -0
  29. 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
  30. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +4 -0
  31. package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
  32. package/libs/feature/editor/src/lib/fields.config.d.ts +6 -0
  33. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  34. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts +1 -2
  35. package/libs/ui/elements/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
  36. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +9 -1
  37. package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
  38. package/package.json +1 -1
  39. package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +5 -5
  40. package/src/libs/common/domain/src/lib/model/record/contact.model.ts +28 -0
  41. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.css +0 -0
  42. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.html +25 -0
  43. package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +30 -0
  44. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.css +0 -0
  45. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +76 -0
  46. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +271 -0
  47. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.html +1 -1
  48. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.css +0 -0
  49. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +6 -0
  50. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +59 -0
  51. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +12 -1
  52. package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +17 -0
  53. package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +1 -1
  54. package/src/libs/feature/editor/src/lib/fields.config.ts +20 -1
  55. package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +1 -1
  56. package/src/libs/ui/elements/src/lib/sortable-list/sortable-list.component.ts +2 -2
  57. package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +15 -3
  58. package/translations/de.json +23 -0
  59. package/translations/en.json +23 -0
  60. package/translations/es.json +23 -0
  61. package/translations/fr.json +24 -1
  62. package/translations/it.json +23 -0
  63. package/translations/nl.json +23 -0
  64. package/translations/pt.json +23 -0
  65. package/translations/sk.json +23 -0
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "Les données ont été chargées mais leur décodage a échoué: \"{ info }\"",
148
148
  "dataset.error.unknown": "Les données ne peuvent être affichées: \"{ info }\"",
149
149
  "dataset.error.unsupportedType": "Le type de contenu suivant n'est pas pris en charge: \"{ info }\"",
150
+ "domain.contact.role.author": "Auteur",
151
+ "domain.contact.role.collaborator": "Collaborateur",
152
+ "domain.contact.role.contributor": "Contributeur",
153
+ "domain.contact.role.custodian": "Gestionnaire",
154
+ "domain.contact.role.distributor": "Distributeur",
155
+ "domain.contact.role.editor": "Éditeur",
156
+ "domain.contact.role.funder": "Financeur",
157
+ "domain.contact.role.mediator": "Médiateur",
158
+ "domain.contact.role.originator": "Créateur",
159
+ "domain.contact.role.other": "Autre",
160
+ "domain.contact.role.owner": "Propriétaire",
161
+ "domain.contact.role.point_of_contact": "Point de contact",
162
+ "domain.contact.role.principal_investigator": "Chercheur principal",
163
+ "domain.contact.role.processor": "Processeur",
164
+ "domain.contact.role.publisher": "Éditeur",
165
+ "domain.contact.role.resource_provider": "Fournisseur",
166
+ "domain.contact.role.rights_holder": "Détenteur des droits",
167
+ "domain.contact.role.sponsor": "Sponsor",
168
+ "domain.contact.role.stakeholder": "Partie prenante",
169
+ "domain.contact.role.unspecified": "Non spécifié",
170
+ "domain.contact.role.user": "Utilisateur",
150
171
  "domain.record.status.completed": "Finalisé",
151
172
  "domain.record.status.deprecated": "Obsolète",
152
173
  "domain.record.status.ongoing": "Mise à jour continue",
@@ -177,14 +198,16 @@
177
198
  "editor.record.form.bottomButtons.comeBackLater": "Revenir plus tard",
178
199
  "editor.record.form.bottomButtons.next": "Suivant",
179
200
  "editor.record.form.bottomButtons.previous": "Précédent",
201
+ "editor.record.form.classification.opendata": "Données ouvertes",
180
202
  "editor.record.form.field.abstract": "Résumé",
203
+ "editor.record.form.field.contactsForResource.noContact": "Veuillez renseigner au moins un point de contact responsable de la donnée.",
181
204
  "editor.record.form.field.keywords": "Mots-clés",
182
205
  "editor.record.form.field.license": "Licence",
183
206
  "editor.record.form.field.overviews": "Aperçus",
184
207
  "editor.record.form.field.recordUpdated": "Date de dernière révision",
185
208
  "editor.record.form.field.resourceUpdated": "Date de dernière révision",
186
209
  "editor.record.form.field.temporalExtents": "Étendue temporelle",
187
- "editor.record.form.field.title": "Titre",
210
+ "editor.record.form.field.title": "",
188
211
  "editor.record.form.field.uniqueIdentifier": "Identifiant unique",
189
212
  "editor.record.form.field.updateFrequency": "Fréquence de mise à jour",
190
213
  "editor.record.form.license.cc-by": "",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "I dati sono stati caricati ma la decodifica non è riuscita: \"{info}\"",
148
148
  "dataset.error.unknown": "Impossibile visualizzare i dati: \"{info}\"",
149
149
  "dataset.error.unsupportedType": "Il seguente tipo di contenuto non è supportato: \"{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": "",
150
171
  "domain.record.status.completed": "Completato",
151
172
  "domain.record.status.deprecated": "Deprecato",
152
173
  "domain.record.status.ongoing": "Aggiornamento continuo",
@@ -177,7 +198,9 @@
177
198
  "editor.record.form.bottomButtons.comeBackLater": "",
178
199
  "editor.record.form.bottomButtons.next": "",
179
200
  "editor.record.form.bottomButtons.previous": "",
201
+ "editor.record.form.classification.opendata": "",
180
202
  "editor.record.form.field.abstract": "",
203
+ "editor.record.form.field.contactsForResource.noContact": "",
181
204
  "editor.record.form.field.keywords": "",
182
205
  "editor.record.form.field.license": "Licenza",
183
206
  "editor.record.form.field.overviews": "",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "",
148
148
  "dataset.error.unknown": "",
149
149
  "dataset.error.unsupportedType": "",
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": "",
150
171
  "domain.record.status.completed": "",
151
172
  "domain.record.status.deprecated": "",
152
173
  "domain.record.status.ongoing": "",
@@ -177,7 +198,9 @@
177
198
  "editor.record.form.bottomButtons.comeBackLater": "",
178
199
  "editor.record.form.bottomButtons.next": "",
179
200
  "editor.record.form.bottomButtons.previous": "",
201
+ "editor.record.form.classification.opendata": "",
180
202
  "editor.record.form.field.abstract": "",
203
+ "editor.record.form.field.contactsForResource.noContact": "",
181
204
  "editor.record.form.field.keywords": "",
182
205
  "editor.record.form.field.license": "",
183
206
  "editor.record.form.field.overviews": "",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "",
148
148
  "dataset.error.unknown": "",
149
149
  "dataset.error.unsupportedType": "",
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": "",
150
171
  "domain.record.status.completed": "",
151
172
  "domain.record.status.deprecated": "",
152
173
  "domain.record.status.ongoing": "",
@@ -177,7 +198,9 @@
177
198
  "editor.record.form.bottomButtons.comeBackLater": "",
178
199
  "editor.record.form.bottomButtons.next": "",
179
200
  "editor.record.form.bottomButtons.previous": "",
201
+ "editor.record.form.classification.opendata": "",
180
202
  "editor.record.form.field.abstract": "",
203
+ "editor.record.form.field.contactsForResource.noContact": "",
181
204
  "editor.record.form.field.keywords": "",
182
205
  "editor.record.form.field.license": "",
183
206
  "editor.record.form.field.overviews": "",
@@ -147,6 +147,27 @@
147
147
  "dataset.error.parse": "Dáta boli načítané, ale nedajú sa analyzovať: \"{ info }\"",
148
148
  "dataset.error.unknown": "Dáta nie je možné zobraziť: \"{ info }\"",
149
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": "",
150
171
  "domain.record.status.completed": "Dokončené",
151
172
  "domain.record.status.deprecated": "Zastarané",
152
173
  "domain.record.status.ongoing": "Prebiehajúce",
@@ -177,7 +198,9 @@
177
198
  "editor.record.form.bottomButtons.comeBackLater": "",
178
199
  "editor.record.form.bottomButtons.next": "",
179
200
  "editor.record.form.bottomButtons.previous": "",
201
+ "editor.record.form.classification.opendata": "",
180
202
  "editor.record.form.field.abstract": "",
203
+ "editor.record.form.field.contactsForResource.noContact": "",
181
204
  "editor.record.form.field.keywords": "",
182
205
  "editor.record.form.field.license": "Licencia",
183
206
  "editor.record.form.field.overviews": "",