@vgip/meta-ui 1.3.3 → 1.3.4
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.
|
@@ -344,14 +344,11 @@ const fieldNormalizer = (field, uniqFieldNames) => {
|
|
|
344
344
|
}
|
|
345
345
|
else if (fieldType === 'list') {
|
|
346
346
|
const list = field.list || field.reference;
|
|
347
|
-
if (!list.name && list.type === 'composite') {
|
|
348
|
-
list.name = field.name;
|
|
349
|
-
}
|
|
350
347
|
f = {
|
|
351
348
|
type: field.name ? 'list' : 'missing name',
|
|
352
349
|
label: field.label,
|
|
353
350
|
name: field.name,
|
|
354
|
-
list: fieldNormalizer(uniqueNameFilter(list, uniqFieldNames), uniqFieldNames)
|
|
351
|
+
list: fieldNormalizer(uniqueNameFilter(list, uniqFieldNames, !list.name), uniqFieldNames)
|
|
355
352
|
};
|
|
356
353
|
}
|
|
357
354
|
else {
|
|
@@ -5357,4 +5354,3 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
5357
5354
|
*/
|
|
5358
5355
|
|
|
5359
5356
|
export { FieldBoolean, FieldComposite, FieldDatetime, FieldInput, FieldList, FieldRadio, FieldReference, FieldRichtext, FieldSelect, FieldText, FieldUnknown, MetaAutofocusDirective, MetaContextService, MetaField, MetaFieldContentDirective, MetaHttpClient, MetaIconsPipe, MetaLayout, MetaModelPipe, MetaModule, MetaMsgService, MetaRefDialog, MetaReferenceService, MetaResource, MetaResourceCard, MetaResourceService, MetaStripHtmlPipe, MetaTrackerService, ResourceDraftsService, metaDark, metaLight, metaNormalizer, relativeTimeBuilder };
|
|
5360
|
-
//# sourceMappingURL=vgip-meta-ui.mjs.map
|