geonetwork-ui 2.3.2 → 2.3.3
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/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +3 -3
- package/esm2022/libs/feature/search/src/lib/constants.mjs +2 -2
- package/fesm2022/geonetwork-ui.mjs +3 -3
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +2 -6
- package/src/libs/feature/search/src/lib/constants.ts +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
<div class="pl-5 pt-24 flex flex-1 flex-col justify-between">
|
|
2
|
-
<div
|
|
3
|
-
#wizardFields
|
|
4
|
-
class="flex-1 flex"
|
|
5
|
-
*ngFor="let config of configuration; let i = index"
|
|
6
|
-
>
|
|
1
|
+
<div class="pl-5 pt-24 flex flex-1 flex-col justify-between" #wizardFields>
|
|
2
|
+
<div class="flex-1 flex" *ngFor="let config of configuration; let i = index">
|
|
7
3
|
<gn-ui-wizard-field [wizardFieldConfig]="config"></gn-ui-wizard-field>
|
|
8
4
|
</div>
|
|
9
5
|
</div>
|
|
@@ -19,9 +19,9 @@ export const FIELDS_SUMMARY: FieldName[] = [
|
|
|
19
19
|
'userSavedCount',
|
|
20
20
|
'cl_topic',
|
|
21
21
|
'cl_maintenanceAndUpdateFrequency',
|
|
22
|
-
'tag',
|
|
23
22
|
'MD_LegalConstraintsUseLimitationObject',
|
|
24
23
|
'qualityScore',
|
|
24
|
+
'allKeywords',
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
export const FIELDS_BRIEF: FieldName[] = [
|