Skip to content

Releases: suenerds/arcanist-rest-api-renderer

Release v0.2.0

17 Dec 16:12
Compare
Choose a tag to compare
  • 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

25 Jul 13:18
Compare
Choose a tag to compare
  • Add compatibility for Laravel 10

Full Changelog: v0.0.12...v0.1.0

v0.0.12

17 May 08:50
Compare
Choose a tag to compare

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

22 Feb 13:29
Compare
Choose a tag to compare

Disable dependsOn

v0.0.10

26 Oct 08:24
Compare
Choose a tag to compare
  • Moves validator messages and custom attributes into the Step instead of the Field

v0.0.9

19 Oct 14:21
Compare
Choose a tag to compare
  • Add validation messages and customAttributes to validation rules configuration.

v0.0.8

14 Oct 12:33
Compare
Choose a tag to compare
  • 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

07 Oct 13:34
Compare
Choose a tag to compare
  • 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

15 Sep 08:31
Compare
Choose a tag to compare
  • Adds checkbox field
  • Add support for default values
  • Adding placeholder to select field
  • ReadOnly method for checkbox group

v0.0.5

24 Aug 13:25
Compare
Choose a tag to compare

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.