Releases: suenerds/arcanist-rest-api-renderer
Releases · suenerds/arcanist-rest-api-renderer
Release v0.2.0
- Use fork of package to add missing Laravel 11 compatibility
Full Changelog: v0.1.0...v1.0.0
Full Changelog: v0.1.0...v0.2.0
Release v0.1.0
- Add compatibility for Laravel 10
Full Changelog: v0.0.12...v0.1.0
v0.0.12
Changes the visability of the $wizard
attribute on the WizardStep
class from private to protected.
This makes it possible to use that variable in the conrete implementations of the WizardStep.
Release 0.0.11
Disable dependsOn
v0.0.10
- Moves validator messages and custom attributes into the Step instead of the Field
v0.0.9
- Add validation messages and customAttributes to validation rules configuration.
v0.0.8
- Removes the
->nestedRules()
method on the Field and - replaces it with the ability to add nested rules in the
->rules()
Method
Field::make('checkboxes')
->rules(['checkboxes.*' => 'in:optionA,optionB'])
v0.0.7
- Adds a new
->nestedRules()
method to the Fields to declare validation rules on nested fields. Usage:
$name = 'assigned_by';
//...
public function nestedRules()
{
return [
'id' => 'required|exists:users,id'
];
}
// parsed validation rule: 'assigned_by.id' => 'required|exists:users,id'
v0.0.6
- Adds checkbox field
- Add support for default values
- Adding placeholder to select field
- ReadOnly method for checkbox group
v0.0.5
Support setting options for RadioGroup by passing an array of labels. The values will be set equal to their labels.
Change CheckboxGroup to correctly set initial array.