Add front component widget (#17440)

Modified the data model and introduced a seed to introduce front
components widgets.
This commit is contained in:
Raphaël Bosi
2026-01-26 13:45:58 +01:00
committed by GitHub
parent e0d4492013
commit 7e7a535af0
36 changed files with 596 additions and 190 deletions
@@ -116,6 +116,11 @@ const migrateConfiguration = (
...configuration,
configurationType: WidgetConfigurationType.FIELD,
};
case WidgetType.FRONT_COMPONENT:
return {
...configuration,
configurationType: WidgetConfigurationType.FRONT_COMPONENT,
};
default:
assertUnreachable(widgetType);
}