geonetwork-ui 2.10.0-dev.300bb3d2d → 2.10.0-dev.3445256ab
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.
- package/fesm2022/geonetwork-ui.mjs +573 -123
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/index.d.ts +119 -27
- package/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +9 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metadata-for-i18n.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +2 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +7 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +8 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +11 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +33 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +33 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +4 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +54 -32
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +46 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +11 -0
- package/src/libs/common/domain/src/lib/model/user/group.model.ts +8 -0
- package/src/libs/common/domain/src/lib/model/user/index.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +2 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +5 -0
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +6 -0
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +10 -1
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.html +67 -0
- package/src/libs/feature/editor/src/lib/components/contact-details/contact-details-form.component.ts +39 -0
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +18 -3
- package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +33 -40
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/field-focus.directive.ts +38 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +33 -34
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +13 -13
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.ts +18 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +8 -7
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +6 -6
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.css +0 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-single-link-resource/form-field-online-single-link-resource.component.ts +89 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.css +37 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.ts +59 -3
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +4 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +1 -1
- package/src/libs/feature/notify-reuse/src/index.ts +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.css +0 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.html +1 -0
- package/src/libs/feature/notify-reuse/src/lib/notify-reuse-form/notify-reuse-form.component.ts +21 -0
- package/src/libs/ui/elements/src/index.ts +2 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.html +96 -0
- package/src/libs/ui/elements/src/lib/contact-details/contact-details.component.ts +45 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.html +37 -0
- package/src/libs/ui/elements/src/lib/contact-pill/contact-pill.component.ts +70 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +2 -5
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +0 -4
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +28 -67
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +30 -10
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +4 -0
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +2 -1
- package/src/libs/ui/map/src/lib/components/spatial-extent/spatial-extent.component.ts +11 -10
- package/src/libs/util/app-config/src/lib/app-config.ts +49 -0
- package/src/libs/util/app-config/src/lib/model.ts +7 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +50 -1
- package/src/libs/util/shared/src/lib/links/link-utils.ts +1 -1
- package/src/libs/util/shared/src/lib/record/quality-score.util.ts +33 -18
- package/src/libs/util/shared/src/lib/utils/index.ts +1 -0
- package/src/libs/util/shared/src/lib/utils/user-display.ts +32 -0
- package/tailwind.base.css +11 -2
- package/translations/de.json +10 -1
- package/translations/en.json +10 -1
- package/translations/es.json +10 -1
- package/translations/fr.json +10 -1
- package/translations/it.json +10 -1
- package/translations/nl.json +10 -1
- package/translations/pt.json +10 -1
- package/translations/sk.json +10 -1
package/translations/fr.json
CHANGED
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
"editor.record.form.draft.updateAlert": "Depuis la création de ce brouillon, ce jeu de données a été modifié le { date } par { user }. Publier votre version peut supprimer ses modifications. Pour éviter cela, vous pouvez annuler vos changements, ou publier votre version en connaissance de cause.",
|
|
151
151
|
"editor.record.form.field.abstract": "Description",
|
|
152
152
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
+
"editor.record.form.field.contactDetails.email": "Email du point de contact",
|
|
154
|
+
"editor.record.form.field.contactDetails.email.placeholder": "exemple@nomdedomaine.com",
|
|
155
|
+
"editor.record.form.field.contactDetails.firstName": "Prénom du point de contact",
|
|
156
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "Prénom",
|
|
157
|
+
"editor.record.form.field.contactDetails.lastName": "Nom du point de contact",
|
|
158
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "Nom",
|
|
159
|
+
"editor.record.form.field.contactDetails.organization": "Organisation du point de contact",
|
|
160
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "Company",
|
|
153
161
|
"editor.record.form.field.contacts": "Point de contact - Email",
|
|
154
162
|
"editor.record.form.field.contacts.noContact": "Veuillez renseigner au moins un point de contact.",
|
|
155
163
|
"editor.record.form.field.contacts.placeholder": "Choisissez un contact",
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
"editor.record.form.field.legalConstraints": "Contrainte légale",
|
|
160
168
|
"editor.record.form.field.license": "Licence",
|
|
161
169
|
"editor.record.form.field.onlineLinkResources": "Ressources attachées",
|
|
170
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "Lien",
|
|
162
171
|
"editor.record.form.field.onlineResource.cancel": "Annuler",
|
|
163
172
|
"editor.record.form.field.onlineResource.confirm": "Valider",
|
|
164
173
|
"editor.record.form.field.onlineResource.dialogTitle": "Modifier l'aperçu du jeu de données",
|
|
@@ -494,7 +503,6 @@
|
|
|
494
503
|
"record.metadata.preview.config.idle": "Définir l'aperçu par défaut",
|
|
495
504
|
"record.metadata.preview.config.saved": "Sauvegardé !",
|
|
496
505
|
"record.metadata.preview.config.saving": "Sauvegarde...",
|
|
497
|
-
"record.metadata.producer": "Producteur de la donnée",
|
|
498
506
|
"record.metadata.publication": "Date de publication",
|
|
499
507
|
"record.metadata.publications": "{count, plural, =0{ressource} one{ressource} other{ressources}}",
|
|
500
508
|
"record.metadata.quality": "Description de la ressource",
|
|
@@ -520,6 +528,7 @@
|
|
|
520
528
|
"record.metadata.quality.updateFrequency.failed": "La fréquence de mise à jour n'est pas renseignée",
|
|
521
529
|
"record.metadata.quality.updateFrequency.success": "La fréquence de mise à jour est renseignée",
|
|
522
530
|
"record.metadata.related": "Explorez le catalogue",
|
|
531
|
+
"record.metadata.resource.contacts": "Contacts liés à la donnée",
|
|
523
532
|
"record.metadata.resourceCreated": "Créé",
|
|
524
533
|
"record.metadata.resourcePublished": "Publié",
|
|
525
534
|
"record.metadata.resourceUpdated": "Mis à jour",
|
package/translations/it.json
CHANGED
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
"editor.record.form.draft.updateAlert": "Da quando è stata creata questa bozza, questo dataset è stato modificato il { date } da { user }. La pubblicazione della sua versione potrebbe rimuovere le loro modifiche. Per evitarlo, puoi annullare le sue modifiche o pubblicare la sua versione consapevolmente.",
|
|
151
151
|
"editor.record.form.field.abstract": "Riassunto",
|
|
152
152
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
154
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
155
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
156
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
161
|
"editor.record.form.field.contacts": "",
|
|
154
162
|
"editor.record.form.field.contacts.noContact": "Inserisci almeno un punto di contatto.",
|
|
155
163
|
"editor.record.form.field.contacts.placeholder": "Scegli un contatto",
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
"editor.record.form.field.legalConstraints": "Vincolo legale",
|
|
160
168
|
"editor.record.form.field.license": "Licenza",
|
|
161
169
|
"editor.record.form.field.onlineLinkResources": "Risorse allegate",
|
|
170
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "Link",
|
|
162
171
|
"editor.record.form.field.onlineResource.cancel": "Annulla",
|
|
163
172
|
"editor.record.form.field.onlineResource.confirm": "Convalida",
|
|
164
173
|
"editor.record.form.field.onlineResource.dialogTitle": "Modifica anteprima dataset",
|
|
@@ -494,7 +503,6 @@
|
|
|
494
503
|
"record.metadata.preview.config.idle": "",
|
|
495
504
|
"record.metadata.preview.config.saved": "",
|
|
496
505
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "Produttore dei dati",
|
|
498
506
|
"record.metadata.publication": "Data di pubblicazione",
|
|
499
507
|
"record.metadata.publications": "{count, plural, =0{pubblicazione} one{pubblicazione} other{pubblicazioni}}",
|
|
500
508
|
"record.metadata.quality": "Qualità dei metadati",
|
|
@@ -520,6 +528,7 @@
|
|
|
520
528
|
"record.metadata.quality.updateFrequency.failed": "La frequenza di aggiornamento non è specificata",
|
|
521
529
|
"record.metadata.quality.updateFrequency.success": "La frequenza di aggiornamento è specificata",
|
|
522
530
|
"record.metadata.related": "Vedi anche",
|
|
531
|
+
"record.metadata.resource.contacts": "Contatti per la risorsa",
|
|
523
532
|
"record.metadata.resourceCreated": "Creato",
|
|
524
533
|
"record.metadata.resourcePublished": "Pubblicato",
|
|
525
534
|
"record.metadata.resourceUpdated": "Ultimo aggiornamento",
|
package/translations/nl.json
CHANGED
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
"editor.record.form.draft.updateAlert": "",
|
|
151
151
|
"editor.record.form.field.abstract": "",
|
|
152
152
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
154
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
155
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
156
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
161
|
"editor.record.form.field.contacts": "",
|
|
154
162
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
163
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
"editor.record.form.field.legalConstraints": "",
|
|
160
168
|
"editor.record.form.field.license": "",
|
|
161
169
|
"editor.record.form.field.onlineLinkResources": "",
|
|
170
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
171
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
172
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
173
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -494,7 +503,6 @@
|
|
|
494
503
|
"record.metadata.preview.config.idle": "",
|
|
495
504
|
"record.metadata.preview.config.saved": "",
|
|
496
505
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
506
|
"record.metadata.publication": "",
|
|
499
507
|
"record.metadata.publications": "{count, plural, =0{} one{} other{}}",
|
|
500
508
|
"record.metadata.quality": "",
|
|
@@ -520,6 +528,7 @@
|
|
|
520
528
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
521
529
|
"record.metadata.quality.updateFrequency.success": "",
|
|
522
530
|
"record.metadata.related": "",
|
|
531
|
+
"record.metadata.resource.contacts": "",
|
|
523
532
|
"record.metadata.resourceCreated": "",
|
|
524
533
|
"record.metadata.resourcePublished": "",
|
|
525
534
|
"record.metadata.resourceUpdated": "",
|
package/translations/pt.json
CHANGED
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
"editor.record.form.draft.updateAlert": "",
|
|
151
151
|
"editor.record.form.field.abstract": "",
|
|
152
152
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
154
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
155
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
156
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
161
|
"editor.record.form.field.contacts": "",
|
|
154
162
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
163
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
"editor.record.form.field.legalConstraints": "",
|
|
160
168
|
"editor.record.form.field.license": "",
|
|
161
169
|
"editor.record.form.field.onlineLinkResources": "",
|
|
170
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
171
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
172
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
173
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -494,7 +503,6 @@
|
|
|
494
503
|
"record.metadata.preview.config.idle": "",
|
|
495
504
|
"record.metadata.preview.config.saved": "",
|
|
496
505
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
506
|
"record.metadata.publication": "",
|
|
499
507
|
"record.metadata.publications": "{count, plural, =0{} one{} other{}}",
|
|
500
508
|
"record.metadata.quality": "",
|
|
@@ -520,6 +528,7 @@
|
|
|
520
528
|
"record.metadata.quality.updateFrequency.failed": "",
|
|
521
529
|
"record.metadata.quality.updateFrequency.success": "",
|
|
522
530
|
"record.metadata.related": "",
|
|
531
|
+
"record.metadata.resource.contacts": "",
|
|
523
532
|
"record.metadata.resourceCreated": "",
|
|
524
533
|
"record.metadata.resourcePublished": "",
|
|
525
534
|
"record.metadata.resourceUpdated": "",
|
package/translations/sk.json
CHANGED
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
"editor.record.form.draft.updateAlert": "",
|
|
151
151
|
"editor.record.form.field.abstract": "",
|
|
152
152
|
"editor.record.form.field.constraintsShortcuts": "",
|
|
153
|
+
"editor.record.form.field.contactDetails.email": "",
|
|
154
|
+
"editor.record.form.field.contactDetails.email.placeholder": "",
|
|
155
|
+
"editor.record.form.field.contactDetails.firstName": "",
|
|
156
|
+
"editor.record.form.field.contactDetails.firstName.placeholder": "",
|
|
157
|
+
"editor.record.form.field.contactDetails.lastName": "",
|
|
158
|
+
"editor.record.form.field.contactDetails.lastName.placeholder": "",
|
|
159
|
+
"editor.record.form.field.contactDetails.organization": "",
|
|
160
|
+
"editor.record.form.field.contactDetails.organization.placeholder": "",
|
|
153
161
|
"editor.record.form.field.contacts": "",
|
|
154
162
|
"editor.record.form.field.contacts.noContact": "",
|
|
155
163
|
"editor.record.form.field.contacts.placeholder": "",
|
|
@@ -159,6 +167,7 @@
|
|
|
159
167
|
"editor.record.form.field.legalConstraints": "",
|
|
160
168
|
"editor.record.form.field.license": "Licencia",
|
|
161
169
|
"editor.record.form.field.onlineLinkResources": "",
|
|
170
|
+
"editor.record.form.field.onlineLinkageResource.defaultName": "",
|
|
162
171
|
"editor.record.form.field.onlineResource.cancel": "",
|
|
163
172
|
"editor.record.form.field.onlineResource.confirm": "",
|
|
164
173
|
"editor.record.form.field.onlineResource.dialogTitle": "",
|
|
@@ -494,7 +503,6 @@
|
|
|
494
503
|
"record.metadata.preview.config.idle": "",
|
|
495
504
|
"record.metadata.preview.config.saved": "",
|
|
496
505
|
"record.metadata.preview.config.saving": "",
|
|
497
|
-
"record.metadata.producer": "",
|
|
498
506
|
"record.metadata.publication": "dátum publikácia",
|
|
499
507
|
"record.metadata.publications": "{count, plural, =0{publikácia} one{publikácia} other{publikácie}}",
|
|
500
508
|
"record.metadata.quality": "Kvalita metadát",
|
|
@@ -520,6 +528,7 @@
|
|
|
520
528
|
"record.metadata.quality.updateFrequency.failed": "Frekvencia aktualizácie nie je určená",
|
|
521
529
|
"record.metadata.quality.updateFrequency.success": "Frekvencia aktualizácie je určená",
|
|
522
530
|
"record.metadata.related": "Súvisiace záznamy",
|
|
531
|
+
"record.metadata.resource.contacts": "Kontakty k zdroju",
|
|
523
532
|
"record.metadata.resourceCreated": "",
|
|
524
533
|
"record.metadata.resourcePublished": "",
|
|
525
534
|
"record.metadata.resourceUpdated": "",
|