Display Builder config entity has a library
property configurable from admin UI:
$form['library'] = [
'#type' => 'select',
'#title' => $this->t('Shoelace library'),
'#description' => $this->t('Select the library mode. If local must be installed in libraries folder, see README.'),
'#options' => [
'cdn' => $this->t('CDN'),
'local' => $this->t('Local'),
],
'#default_value' => $entity->get('library'),
];
Remove shoelace library from display builder config entity because
Active
1.0
Main / Misc.