Change record status: 
Project: 
Introduced in branch: 
8.x-5.x
Introduced in version: 
8.x-5.3-beta1
Description: 

To prevent the of customize composite element #options the
\Drupal\webform\Plugin\WebformElement\WebformCompositeBase::buildCompositeElementsTable method now must include the $form and $form_state.

In \Drupal\webform\Plugin\WebformElement\WebformCompositeBase…

protected function buildCompositeElementsTable();

…has changed to…

protected function buildCompositeElementsTable(array $form, FormStateInterface $form_state);

Any custom composite elements which override WebformCompositeBase::buildCompositeElementsTable needs to be updated.

Impacts: 
Module developers