Some attributes in the options parameter of checks and radios components have been renamed, to match naming used in other contexts.
Previously undocumented appendNodes parameter in Containers have changed syntax, to match syntax already used for Custom Elements.
[
'appendNodes' => [
't' => [
'node' => 'span',
'classes' => ['text-success']
]
]
]
[
'appendNodes' => [
[
'extends' => 't',
'params' => [
'node' => 'span',
'classes' => ['text-success']
]
]
]
]