Skip to content

Commit 0a70b9b

Browse files
feat(core): enhance diff handling and improve error handling logic
Improve key comparison logic in `diff` function to handle object key order differences. Add error handling in `Proxy` methods to prevent crashes in edge cases. Refactor wizard and tabs components for better autofocus behavior consistency. Remove unused admin seeder logic.
1 parent 4554649 commit 0a70b9b

15 files changed

Lines changed: 366 additions & 263 deletions

File tree

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"filament/filament": "^4.5",
2121
"laravel/framework": "^12.0",
2222
"laravel/tinker": "^2.10.1",
23+
"livewire/blaze": "^1.0",
2324
"livewire/livewire": "^3.7"
2425
},
2526
"require-dev": {

composer.lock

Lines changed: 300 additions & 227 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

database/seeders/DatabaseSeeder.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Database\Seeders;
44

5-
use App\Models\Admin;
65
use App\Models\User;
76
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
87
use Illuminate\Database\Seeder;
@@ -15,12 +14,6 @@ class DatabaseSeeder extends Seeder
1514
public function run(): void
1615
{
1716
// User::factory(10)->create();
18-
19-
Admin::factory()->create([
20-
'name' => 'Test Admin',
21-
'email' => 'admin@filakit.com',
22-
]);
23-
2417
User::factory()->create([
2518
'name' => 'Test User',
2619
'email' => 'user@filakit.com',

public/css/filament/filament/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/forms/components/color-picker.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/notifications/notifications.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/filament/schemas/components/tabs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)