View on GitLab

Upgrade

From 0 to 1

Some attributes in the options parameter of checks and radios components have been renamed, to match naming used in other contexts.

  • button_classes has been renamed to classes
  • button_attributes has been renamed to attributes

Previously undocumented appendNodes parameter in Containers have changed syntax, to match syntax already used for Custom Elements.

Before
[
    'appendNodes' => [
        't' => [
            'node' => 'span',
            'classes' => ['text-success']
        ]
    ]
]
After
[
    'appendNodes' => [
        [
            'extends' => 't',
            'params' => [
                'node' => 'span',
                'classes' => ['text-success']
            ]
        ]
    ]
]