Releases: rawilk/laravel-form-components
Releases · rawilk/laravel-form-components
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
Breaking Changes
- Drop support for php 7
Added
- Add
container-class
prop to inputs - Add language file for any text used in components
- Add switch toggle component (
<x-switch-toggle />
)
Changed
- Allow
form-group
component label to be omitted by passing infalse
forlabel
- Update alpine dependency to version
2.8.0
- Lighten up input placeholder color (apply
placeholder-gray-400
to inputs)
2.0.2
2.0.1
2.0.0
Changed
- Change styling to be compatible with TailwindCSS v2
- Change color classes to more abstract names like
primary
ordanger
- see the upgrade guide for more info <x-custom-select>
component now renders options in anx-for
loop and only accepts an array of options now<x-custom-select>
component now useswire:filter
as a livewire method name to perform server-side filtering- Change how alpine click event is registered on password component (from
@click
tox-on:click
) - Make
<x-timezone-select>
compatible with new api for<x-custom-select>
- Change default clear icon for
<x-custom-select>
Added
- Add
buttonDisplay
slot to<x-custom-select>
component - Add
optionDisplay
slot to<x-custom-select>
component - Add
wireListeners
property to<x-custom-select>
component - Add
$maxOptions
property to<x-custom-select>
component - Add ability for custom select options to be dependent on other custom selects
- Add php 8 support
Removed
- Remove
<x-custom-select-option>
blade component - Remove
array
type hint on$options
attribute on<x-custom-select>
to allow for more flexibility (i.e. passing in Collections)