@acorex/modules 20.7.15 → 20.7.16

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.
@@ -10061,7 +10061,7 @@ const metaDataFormPlugin = {
10061
10061
  throw new Error('meta-data-form plugin requires a path option (field name) to auto-detect metadata source');
10062
10062
  }
10063
10063
  const field = options.field ?? META_DATA_FORM_FIELD;
10064
- const defaultTitle = 'Meta Data Form';
10064
+ const defaultTitle = '@data-management:metadata-definitions.components.meta-data-form.title';
10065
10065
  // Normalize display configuration (convert string format to object format if needed)
10066
10066
  const displayConfig = normalizeDisplayConfig(options.display, defaultTitle);
10067
10067
  // Handle both 'section' and 'sections' for backward compatibility
@@ -10138,7 +10138,7 @@ const metaDataFormPlugin = {
10138
10138
  next.sections.push({
10139
10139
  id: sectionId,
10140
10140
  title: sectionTitle,
10141
- order: sectionConfig.order ?? 200
10141
+ order: sectionConfig.order ?? 200,
10142
10142
  });
10143
10143
  }
10144
10144
  next.properties = next.properties ?? [];
@@ -10161,7 +10161,7 @@ const metaDataFormPlugin = {
10161
10161
  next.sections.push({
10162
10162
  id: sectionId,
10163
10163
  title: sectionTitle,
10164
- order: sectionConfig.order
10164
+ order: sectionConfig.order,
10165
10165
  });
10166
10166
  }
10167
10167
  next.properties = next.properties ?? [];
@@ -10184,7 +10184,7 @@ const metaDataFormPlugin = {
10184
10184
  next.sections.push({
10185
10185
  id: sectionId,
10186
10186
  title: sectionTitle,
10187
- order: sectionConfig.order
10187
+ order: sectionConfig.order,
10188
10188
  });
10189
10189
  }
10190
10190
  next.properties = next.properties ?? [];