Wizard validation from Filament v3 to v4: required() fields validated parent has ->visible(false)
After upgrading from Filament v3.3 to v4.2, our tests are now failing because
Code Example
required() fields inside a Wizard step are being validated even when their parent container is hidden with ->visible(false).Code Example
- Filament v3: When a parent container had ->visible(false), child required() fields were not validated
- Filament v4: required() fields are still validated even when parent container is hiddenIs this a documented breaking change in Filament v4, or is this a bug?In v3, tests passed without providing data for hidden fields. In v4, we're getting validation errors on fields that aren't even visible tousers.Has anyone else encountered this? What's the recommended approach for conditional required fields in Wizard forms with v4?