|
4 | 4 |
|
5 | 5 | /** |
6 | 6 | * A helper file for Laravel, to provide autocomplete information to your IDE |
7 | | - * Generated for Laravel 9.52.4. |
| 7 | + * Generated for Laravel 9.52.6. |
8 | 8 | * |
9 | 9 | * This file should not be included in your code, only analyzed by your IDE! |
10 | 10 | * |
@@ -18593,7 +18593,7 @@ public static function registerErrorHandler() |
18593 | 18593 | /** |
18594 | 18594 | * |
18595 | 18595 | * |
18596 | | - * @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware> $middleware |
| 18596 | + * @param \Spatie\FlareClient\FlareMiddleware\FlareMiddleware|array<FlareMiddleware>|\Spatie\FlareClient\class-string<FlareMiddleware>|callable $middleware |
18597 | 18597 | * @return \Spatie\FlareClient\Flare |
18598 | 18598 | * @static |
18599 | 18599 | */ |
@@ -18888,6 +18888,21 @@ class TestableLivewire { |
18888 | 18888 | public static function parseActionName($name) |
18889 | 18889 | { |
18890 | 18890 | return \Livewire\Testing\TestableLivewire::parseActionName($name); |
| 18891 | + } |
| 18892 | + /** |
| 18893 | + * |
| 18894 | + * |
| 18895 | + * @see \Filament\Support\Testing\TestsActions::assertActionListInOrder() |
| 18896 | + * @param array $names |
| 18897 | + * @param array $actions |
| 18898 | + * @param string $actionType |
| 18899 | + * @param string $actionClass |
| 18900 | + * @return self |
| 18901 | + * @static |
| 18902 | + */ |
| 18903 | + public static function assertActionListInOrder($names, $actions, $actionType, $actionClass) |
| 18904 | + { |
| 18905 | + return \Livewire\Testing\TestableLivewire::assertActionListInOrder($names, $actions, $actionType, $actionClass); |
18891 | 18906 | } |
18892 | 18907 | /** |
18893 | 18908 | * |
@@ -18974,6 +18989,18 @@ public static function assertPageActionExists($name) |
18974 | 18989 | public static function assertPageActionDoesNotExist($name) |
18975 | 18990 | { |
18976 | 18991 | return \Livewire\Testing\TestableLivewire::assertPageActionDoesNotExist($name); |
| 18992 | + } |
| 18993 | + /** |
| 18994 | + * |
| 18995 | + * |
| 18996 | + * @see \Filament\Testing\TestsPageActions::assertPageActionsExistInOrder() |
| 18997 | + * @param array $names |
| 18998 | + * @return static |
| 18999 | + * @static |
| 19000 | + */ |
| 19001 | + public static function assertPageActionsExistInOrder($names) |
| 19002 | + { |
| 19003 | + return \Livewire\Testing\TestableLivewire::assertPageActionsExistInOrder($names); |
18977 | 19004 | } |
18978 | 19005 | /** |
18979 | 19006 | * |
@@ -19278,13 +19305,14 @@ public static function assertFormExists($name = 'form') |
19278 | 19305 | * |
19279 | 19306 | * @see \Filament\Forms\Testing\TestsForms::assertFormFieldExists() |
19280 | 19307 | * @param string $fieldName |
19281 | | - * @param string $formName |
| 19308 | + * @param \Closure|string $formName |
| 19309 | + * @param \Closure|null $callback |
19282 | 19310 | * @return static |
19283 | 19311 | * @static |
19284 | 19312 | */ |
19285 | | - public static function assertFormFieldExists($fieldName, $formName = 'form') |
| 19313 | + public static function assertFormFieldExists($fieldName, $formName = 'form', $callback = null) |
19286 | 19314 | { |
19287 | | - return \Livewire\Testing\TestableLivewire::assertFormFieldExists($fieldName, $formName); |
| 19315 | + return \Livewire\Testing\TestableLivewire::assertFormFieldExists($fieldName, $formName, $callback); |
19288 | 19316 | } |
19289 | 19317 | /** |
19290 | 19318 | * |
@@ -19437,6 +19465,42 @@ public static function assertTableActionExists($name) |
19437 | 19465 | public static function assertTableActionDoesNotExist($name) |
19438 | 19466 | { |
19439 | 19467 | return \Livewire\Testing\TestableLivewire::assertTableActionDoesNotExist($name); |
| 19468 | + } |
| 19469 | + /** |
| 19470 | + * |
| 19471 | + * |
| 19472 | + * @see \Filament\Tables\Testing\TestsActions::assertTableActionsExistInOrder() |
| 19473 | + * @param array $names |
| 19474 | + * @return static |
| 19475 | + * @static |
| 19476 | + */ |
| 19477 | + public static function assertTableActionsExistInOrder($names) |
| 19478 | + { |
| 19479 | + return \Livewire\Testing\TestableLivewire::assertTableActionsExistInOrder($names); |
| 19480 | + } |
| 19481 | + /** |
| 19482 | + * |
| 19483 | + * |
| 19484 | + * @see \Filament\Tables\Testing\TestsActions::assertTableHeaderActionsExistInOrder() |
| 19485 | + * @param array $names |
| 19486 | + * @return static |
| 19487 | + * @static |
| 19488 | + */ |
| 19489 | + public static function assertTableHeaderActionsExistInOrder($names) |
| 19490 | + { |
| 19491 | + return \Livewire\Testing\TestableLivewire::assertTableHeaderActionsExistInOrder($names); |
| 19492 | + } |
| 19493 | + /** |
| 19494 | + * |
| 19495 | + * |
| 19496 | + * @see \Filament\Tables\Testing\TestsActions::assertTableEmptyStateActionsExistInOrder() |
| 19497 | + * @param array $names |
| 19498 | + * @return static |
| 19499 | + * @static |
| 19500 | + */ |
| 19501 | + public static function assertTableEmptyStateActionsExistInOrder($names) |
| 19502 | + { |
| 19503 | + return \Livewire\Testing\TestableLivewire::assertTableEmptyStateActionsExistInOrder($names); |
19440 | 19504 | } |
19441 | 19505 | /** |
19442 | 19506 | * |
@@ -19763,6 +19827,18 @@ public static function assertTableBulkActionExists($name) |
19763 | 19827 | public static function assertTableBulkActionDoesNotExist($name) |
19764 | 19828 | { |
19765 | 19829 | return \Livewire\Testing\TestableLivewire::assertTableBulkActionDoesNotExist($name); |
| 19830 | + } |
| 19831 | + /** |
| 19832 | + * |
| 19833 | + * |
| 19834 | + * @see \Filament\Tables\Testing\TestsBulkActions::assertTableBulkActionsExistInOrder() |
| 19835 | + * @param array $names |
| 19836 | + * @return static |
| 19837 | + * @static |
| 19838 | + */ |
| 19839 | + public static function assertTableBulkActionsExistInOrder($names) |
| 19840 | + { |
| 19841 | + return \Livewire\Testing\TestableLivewire::assertTableBulkActionsExistInOrder($names); |
19766 | 19842 | } |
19767 | 19843 | /** |
19768 | 19844 | * |
|
0 commit comments