geonetwork-ui 2.7.0-dev.47822f9d1 → 2.7.0-dev.8ac6cd7aa

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 (63) hide show
  1. package/esm2022/libs/feature/editor/src/index.mjs +2 -1
  2. package/esm2022/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.mjs +80 -0
  3. package/esm2022/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.mjs +3 -3
  4. package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +1 -3
  5. package/esm2022/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.mjs +4 -4
  6. package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +21 -43
  7. package/esm2022/libs/util/shared/src/index.mjs +2 -2
  8. package/esm2022/libs/util/shared/src/lib/record/index.mjs +3 -0
  9. package/esm2022/libs/util/shared/src/lib/record/quality-score.util.mjs +45 -0
  10. package/esm2022/libs/util/shared/src/lib/record/record.util.mjs +56 -0
  11. package/esm2022/translations/de.json +5 -0
  12. package/esm2022/translations/en.json +5 -0
  13. package/esm2022/translations/es.json +5 -0
  14. package/esm2022/translations/fr.json +5 -0
  15. package/esm2022/translations/it.json +5 -0
  16. package/esm2022/translations/nl.json +5 -0
  17. package/esm2022/translations/pt.json +5 -0
  18. package/esm2022/translations/sk.json +5 -0
  19. package/fesm2022/geonetwork-ui.mjs +181 -51
  20. package/fesm2022/geonetwork-ui.mjs.map +1 -1
  21. package/libs/feature/editor/src/index.d.ts +1 -0
  22. package/libs/feature/editor/src/index.d.ts.map +1 -1
  23. package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts +19 -0
  24. package/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.d.ts.map +1 -0
  25. package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
  26. package/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.d.ts.map +1 -1
  27. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +7 -6
  28. package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
  29. package/libs/util/shared/src/index.d.ts +1 -1
  30. package/libs/util/shared/src/index.d.ts.map +1 -1
  31. package/libs/util/shared/src/lib/record/index.d.ts +3 -0
  32. package/libs/util/shared/src/lib/record/index.d.ts.map +1 -0
  33. package/libs/util/shared/src/lib/record/quality-score.util.d.ts +13 -0
  34. package/libs/util/shared/src/lib/record/quality-score.util.d.ts.map +1 -0
  35. package/libs/util/shared/src/lib/record/record.util.d.ts +3 -0
  36. package/libs/util/shared/src/lib/record/record.util.d.ts.map +1 -0
  37. package/package.json +1 -1
  38. package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +0 -3
  39. package/src/libs/feature/editor/src/index.ts +1 -0
  40. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.css +0 -0
  41. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.html +37 -0
  42. package/src/libs/feature/editor/src/lib/components/metadata-quality-panel/metadata-quality-panel.component.ts +93 -0
  43. package/src/libs/feature/editor/src/lib/components/multilingual-panel/multilingual-panel.component.html +2 -1
  44. package/src/libs/feature/editor/src/lib/fields.config.ts +0 -2
  45. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.html +1 -0
  46. package/src/libs/ui/elements/src/lib/internal-link-card/internal-link-card.component.ts +5 -1
  47. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +1 -0
  48. package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +21 -54
  49. package/src/libs/util/shared/src/index.ts +1 -1
  50. package/src/libs/util/shared/src/lib/record/index.ts +2 -0
  51. package/src/libs/util/shared/src/lib/record/quality-score.util.ts +69 -0
  52. package/src/libs/util/shared/src/lib/{record.util.ts → record/record.util.ts} +1 -1
  53. package/translations/de.json +5 -0
  54. package/translations/en.json +5 -0
  55. package/translations/es.json +5 -0
  56. package/translations/fr.json +5 -0
  57. package/translations/it.json +5 -0
  58. package/translations/nl.json +5 -0
  59. package/translations/pt.json +5 -0
  60. package/translations/sk.json +5 -0
  61. package/esm2022/libs/util/shared/src/lib/record.util.mjs +0 -56
  62. package/libs/util/shared/src/lib/record.util.d.ts +0 -3
  63. package/libs/util/shared/src/lib/record.util.d.ts.map +0 -1
@@ -142,6 +142,7 @@
142
142
  "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.",
143
143
  "editor.record.form.field.abstract": "Riassunto",
144
144
  "editor.record.form.field.constraintsShortcuts": "",
145
+ "editor.record.form.field.contacts": "",
145
146
  "editor.record.form.field.contacts.noContact": "Inserisci almeno un punto di contatto.",
146
147
  "editor.record.form.field.contacts.placeholder": "Scegli un contatto",
147
148
  "editor.record.form.field.contactsForResource.noContact": "Inserisci almeno un punto di contatto responsabile dei dati.",
@@ -166,6 +167,7 @@
166
167
  "editor.record.form.field.onlineResource.toggle.dataset": "Collega un file",
167
168
  "editor.record.form.field.onlineResource.toggle.service": "Collega un servizio",
168
169
  "editor.record.form.field.onlineResources": "Distribuzione",
170
+ "editor.record.form.field.organisation": "",
169
171
  "editor.record.form.field.otherConstraints": "Vincolo generale",
170
172
  "editor.record.form.field.overviews": "Panoramica",
171
173
  "editor.record.form.field.recordUpdated": "Data di aggiornamento",
@@ -177,6 +179,7 @@
177
179
  "editor.record.form.field.temporalExtents": "Estensioni temporali",
178
180
  "editor.record.form.field.title": "Titolo",
179
181
  "editor.record.form.field.title.placeholder": "Inserisci un titolo",
182
+ "editor.record.form.field.topics": "",
180
183
  "editor.record.form.field.uniqueIdentifier": "Identificatore univoco",
181
184
  "editor.record.form.field.updateFrequency": "Frequenza di aggiornamento",
182
185
  "editor.record.form.keywords.place.placeholder": "Cerca una posizione per parola chiave",
@@ -191,6 +194,8 @@
191
194
  "editor.record.form.license.odc-by": "Open Data Commons ODC-By",
192
195
  "editor.record.form.license.pddl": "Open Data Commons PDDL",
193
196
  "editor.record.form.license.unknown": "Sconosciuto o assente",
197
+ "editor.record.form.metadataQuality.open": "",
198
+ "editor.record.form.metadataQuality.title": "",
194
199
  "editor.record.form.multilingual.activate": "",
195
200
  "editor.record.form.multilingual.default": "",
196
201
  "editor.record.form.multilingual.enable": "Aprire il pannello multilingue",
@@ -142,6 +142,7 @@
142
142
  "editor.record.form.draft.updateAlert": "",
143
143
  "editor.record.form.field.abstract": "",
144
144
  "editor.record.form.field.constraintsShortcuts": "",
145
+ "editor.record.form.field.contacts": "",
145
146
  "editor.record.form.field.contacts.noContact": "",
146
147
  "editor.record.form.field.contacts.placeholder": "",
147
148
  "editor.record.form.field.contactsForResource.noContact": "",
@@ -166,6 +167,7 @@
166
167
  "editor.record.form.field.onlineResource.toggle.dataset": "",
167
168
  "editor.record.form.field.onlineResource.toggle.service": "",
168
169
  "editor.record.form.field.onlineResources": "",
170
+ "editor.record.form.field.organisation": "",
169
171
  "editor.record.form.field.otherConstraints": "",
170
172
  "editor.record.form.field.overviews": "",
171
173
  "editor.record.form.field.recordUpdated": "",
@@ -177,6 +179,7 @@
177
179
  "editor.record.form.field.temporalExtents": "",
178
180
  "editor.record.form.field.title": "",
179
181
  "editor.record.form.field.title.placeholder": "Voer een titel in",
182
+ "editor.record.form.field.topics": "",
180
183
  "editor.record.form.field.uniqueIdentifier": "",
181
184
  "editor.record.form.field.updateFrequency": "",
182
185
  "editor.record.form.keywords.place.placeholder": "",
@@ -191,6 +194,8 @@
191
194
  "editor.record.form.license.odc-by": "",
192
195
  "editor.record.form.license.pddl": "",
193
196
  "editor.record.form.license.unknown": "",
197
+ "editor.record.form.metadataQuality.open": "",
198
+ "editor.record.form.metadataQuality.title": "",
194
199
  "editor.record.form.multilingual.activate": "",
195
200
  "editor.record.form.multilingual.default": "",
196
201
  "editor.record.form.multilingual.enable": "",
@@ -142,6 +142,7 @@
142
142
  "editor.record.form.draft.updateAlert": "",
143
143
  "editor.record.form.field.abstract": "",
144
144
  "editor.record.form.field.constraintsShortcuts": "",
145
+ "editor.record.form.field.contacts": "",
145
146
  "editor.record.form.field.contacts.noContact": "",
146
147
  "editor.record.form.field.contacts.placeholder": "",
147
148
  "editor.record.form.field.contactsForResource.noContact": "",
@@ -166,6 +167,7 @@
166
167
  "editor.record.form.field.onlineResource.toggle.dataset": "",
167
168
  "editor.record.form.field.onlineResource.toggle.service": "",
168
169
  "editor.record.form.field.onlineResources": "",
170
+ "editor.record.form.field.organisation": "",
169
171
  "editor.record.form.field.otherConstraints": "",
170
172
  "editor.record.form.field.overviews": "",
171
173
  "editor.record.form.field.recordUpdated": "",
@@ -177,6 +179,7 @@
177
179
  "editor.record.form.field.temporalExtents": "",
178
180
  "editor.record.form.field.title": "",
179
181
  "editor.record.form.field.title.placeholder": "Insira um título",
182
+ "editor.record.form.field.topics": "",
180
183
  "editor.record.form.field.uniqueIdentifier": "",
181
184
  "editor.record.form.field.updateFrequency": "",
182
185
  "editor.record.form.keywords.place.placeholder": "",
@@ -191,6 +194,8 @@
191
194
  "editor.record.form.license.odc-by": "",
192
195
  "editor.record.form.license.pddl": "",
193
196
  "editor.record.form.license.unknown": "",
197
+ "editor.record.form.metadataQuality.open": "",
198
+ "editor.record.form.metadataQuality.title": "",
194
199
  "editor.record.form.multilingual.activate": "",
195
200
  "editor.record.form.multilingual.default": "",
196
201
  "editor.record.form.multilingual.enable": "",
@@ -142,6 +142,7 @@
142
142
  "editor.record.form.draft.updateAlert": "",
143
143
  "editor.record.form.field.abstract": "",
144
144
  "editor.record.form.field.constraintsShortcuts": "",
145
+ "editor.record.form.field.contacts": "",
145
146
  "editor.record.form.field.contacts.noContact": "",
146
147
  "editor.record.form.field.contacts.placeholder": "",
147
148
  "editor.record.form.field.contactsForResource.noContact": "",
@@ -166,6 +167,7 @@
166
167
  "editor.record.form.field.onlineResource.toggle.dataset": "",
167
168
  "editor.record.form.field.onlineResource.toggle.service": "",
168
169
  "editor.record.form.field.onlineResources": "",
170
+ "editor.record.form.field.organisation": "",
169
171
  "editor.record.form.field.otherConstraints": "",
170
172
  "editor.record.form.field.overviews": "",
171
173
  "editor.record.form.field.recordUpdated": "",
@@ -177,6 +179,7 @@
177
179
  "editor.record.form.field.temporalExtents": "",
178
180
  "editor.record.form.field.title": "",
179
181
  "editor.record.form.field.title.placeholder": "Zadajte názov",
182
+ "editor.record.form.field.topics": "",
180
183
  "editor.record.form.field.uniqueIdentifier": "",
181
184
  "editor.record.form.field.updateFrequency": "",
182
185
  "editor.record.form.keywords.place.placeholder": "",
@@ -191,6 +194,8 @@
191
194
  "editor.record.form.license.odc-by": "",
192
195
  "editor.record.form.license.pddl": "",
193
196
  "editor.record.form.license.unknown": "",
197
+ "editor.record.form.metadataQuality.open": "",
198
+ "editor.record.form.metadataQuality.title": "",
194
199
  "editor.record.form.multilingual.activate": "",
195
200
  "editor.record.form.multilingual.default": "",
196
201
  "editor.record.form.multilingual.enable": "",