All notable changes to Filament-Form-Builder will be documented in this file.
- Bump maatwebsite/excel to ^4.0 on 4.x by @swilla in #75
- Update maatwebsite/excel version constraint by @swilla in #76
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.3.2...v4.3.3
- Bump dependabot/fetch-metadata from 3.0.0 to 3.1.0 by @dependabot[bot] in #72
- Bump postcss from 8.4.41 to 8.5.10 by @dependabot[bot] in #73
- Drop PHP 8.2, add PHP 8.5 to CI matrix by @swilla in #74
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.3.1...v4.3.2
- Fix RichEditor toolbar actions (e.g. link) crashing in Show component by adding
HasActions/InteractsWithActions
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.3.0...v4.3.1
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.2.0...v4.3.0
- Fix mobile overflow: remove
min-wconstraints that caused horizontal overflow on mobile viewports - Reduce opinionated styling: remove forced borders, backgrounds, shadows, and border-radius from form views
- Apps can now fully customize form appearance via
.fb-form-container,.fb-form-component, and.fb-form-user-containerCSS hooks
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.7...v4.1.8
- Use policy for viewing form entries when app registers one by @scottgrayson in #63
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.6...v4.1.7
- Allow form description to be rich text / HTML by @scottgrayson in #62
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.5...v4.1.6
- Bump minimatch from 9.0.5 to 9.0.9 by @dependabot[bot] in #61
- Add private entries support for form entry visibility by @scottgrayson in #59
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.4...v4.1.5
removes file upload from the rich text editor as this is not supported functionality and throws an exception.
- Table actions in ActionGroup at row start by @scottgrayson in #56
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.2...v4.1.3
- Restrict copy action to users who can create forms by @scottgrayson in #55
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.1...v4.1.2
- Change field label to text by @andreia in #54
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.1.0...v4.1.1
- Bump aglipanci/laravel-pint-action from 2.5 to 2.6 by @dependabot[bot] in #49
- Bump actions/checkout from 4 to 6 by @dependabot[bot] in #48
- Bump stefanzweifel/git-auto-commit-action from 5 to 7 by @dependabot[bot] in #51
- Bump dependabot/fetch-metadata from 2.4.0 to 2.5.0 by @dependabot[bot] in #50
- Add guest panel support for form pages by @scottgrayson in #53
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.0.9...v4.1.0
- Add Filament 5 support by @andreia in #47
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.0.8...v4.0.9
- Multi-tenancy support by @andreia in #37
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v4.0.6...v4.0.8
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v1.43...v1.51
- use the filament button component by @swilla in #21
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v1.5.0...v1.43
- Repeater and Heading fields by @scottgrayson in #15
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v1.42...v1.5.0
- Laravel 12 Support by @swilla in #6
- Bump dependabot/fetch-metadata from 1.6.0 to 2.3.0 by @dependabot in #7
- Bump aglipanci/laravel-pint-action from 2.4 to 2.5 by @dependabot in #8
- add event and layouts for public forms by @scottgrayson in #10
- Can we add a preview cu 868cwr2en by @johnwesely in #11
- File Uploads by @scottgrayson in #12
- Bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by @dependabot in #13
- Middleware for form show that handles guest entries by @scottgrayson in #14
Full Changelog: https://github.com/TappNetwork/Filament-Form-Builder/compare/v1.41...v1.42
Fix bug with single select fields when multi select fields were introduced.
Adds support for Select()->multiple() fields.
Actually commit changes described in last release
Fixes a bug with copy action
This release add a copy action for filament forms.
Makes type field required when creating a field.
Add 'fb-form-user-container' class for styling form results container.
Sends id of saved entry instead of entry itself when entrySaved event is dispatched to resolve intermittent error with laravel model biding on event consumption.
This Update fixes a bug when the first option was selected in a radio select.
This PR adds a $blockRedirect property to the FilamentForm/Show component. Passing this as true to the component will prevent the redirect action when a new form entry is saved.
Add styles to plugin
Include stylesheet for filament classes
Fixes a typo in locking action visibility and adds a locked column to form resource.
1.2 supports locking forms so that entries from a form can always be compared apples to apples over time with no risk of the form being changed and previous entries becoming incompatible with new entires. If you are upgrading from 1.0 or 1.1 to 1.2, create a migration with the following method to reflect this change
Schema::table('filament_forms', function (Blueprint $table) {
$table->boolean('locked')->default(false);
});