\Drupal\experience_builder\Controller\ApiAutoSaveController::validatePageRegion
has
// @todo Use a violation list that allows keeping track of the entity
// context.
// @see https://www.drupal.org/project/drupal/issues/3495599
$violations = $this->typedConfigManager->createFromNameAndData($entity->getConfigDependencyName(), $entity->toArray())->validate();
if ($violations->count() > 0) {
throw new ConstraintViolationException($violations);
}
But we actually have \Drupal\experience_builder\Entity\EntityConstraintViolationList
which allows this until core provides it
user our EntityConstraintViolationList
Active
0.0
Page builder