Skip to content

Commit

Permalink
Bump Filament to alpha100, fix bc break from Filament with use statem…
Browse files Browse the repository at this point in the history
…ents
  • Loading branch information
cheesegrits committed May 19, 2023
1 parent 8f6f811 commit 7c92478
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
}
],
"require-dev": {
"filament/filament": "v3.0.0-alpha99",
"filament/filament": "v3.0.0-alpha100",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3",
"orchestra/testbench": "^7.11",
Expand Down
5 changes: 4 additions & 1 deletion src/Widgets/MapWidget.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
use Cheesegrits\FilamentGoogleMaps\Helpers\MapsHelper;
use Filament\Actions\Concerns\InteractsWithActions;
use Filament\Actions\Contracts\HasActions;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Contracts\HasForms;
use Filament\Widgets;

class MapWidget extends Widgets\Widget implements HasActions
class MapWidget extends Widgets\Widget implements HasForms, HasActions
{
use InteractsWithForms;
use InteractsWithActions;
use Widgets\Concerns\CanPoll;

Expand Down

0 comments on commit 7c92478

Please sign in to comment.