Skip to content

Commit 8507bfc

Browse files
authored
Release v0.11.13 (alexjustesen#550)
1 parent b48a5b3 commit 8507bfc

File tree

14 files changed

+674
-589
lines changed

14 files changed

+674
-589
lines changed

.github/pull_request_template.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Description
2+
3+
A short description of the pull request changes should go here and the sections below should list in detail all changes. You can remove the sections you don't need.
4+
5+
## Changelog
6+
7+
### Added
8+
- one
9+
- two
10+
11+
### Changed
12+
- one
13+
- two
14+
15+
### Fixed
16+
- one
17+
- two
18+
19+
### Removed
20+
- one
21+
- two
22+
23+
## Screenshots
24+
25+
If this PR has any UI/UX changes it's strongly suggested you add screenshots here.

_ide_helper.php

Lines changed: 81 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* 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.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -18593,7 +18593,7 @@ public static function registerErrorHandler()
1859318593
/**
1859418594
*
1859518595
*
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
1859718597
* @return \Spatie\FlareClient\Flare
1859818598
* @static
1859918599
*/
@@ -18888,6 +18888,21 @@ class TestableLivewire {
1888818888
public static function parseActionName($name)
1888918889
{
1889018890
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);
1889118906
}
1889218907
/**
1889318908
*
@@ -18974,6 +18989,18 @@ public static function assertPageActionExists($name)
1897418989
public static function assertPageActionDoesNotExist($name)
1897518990
{
1897618991
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);
1897719004
}
1897819005
/**
1897919006
*
@@ -19278,13 +19305,14 @@ public static function assertFormExists($name = 'form')
1927819305
*
1927919306
* @see \Filament\Forms\Testing\TestsForms::assertFormFieldExists()
1928019307
* @param string $fieldName
19281-
* @param string $formName
19308+
* @param \Closure|string $formName
19309+
* @param \Closure|null $callback
1928219310
* @return static
1928319311
* @static
1928419312
*/
19285-
public static function assertFormFieldExists($fieldName, $formName = 'form')
19313+
public static function assertFormFieldExists($fieldName, $formName = 'form', $callback = null)
1928619314
{
19287-
return \Livewire\Testing\TestableLivewire::assertFormFieldExists($fieldName, $formName);
19315+
return \Livewire\Testing\TestableLivewire::assertFormFieldExists($fieldName, $formName, $callback);
1928819316
}
1928919317
/**
1929019318
*
@@ -19437,6 +19465,42 @@ public static function assertTableActionExists($name)
1943719465
public static function assertTableActionDoesNotExist($name)
1943819466
{
1943919467
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);
1944019504
}
1944119505
/**
1944219506
*
@@ -19763,6 +19827,18 @@ public static function assertTableBulkActionExists($name)
1976319827
public static function assertTableBulkActionDoesNotExist($name)
1976419828
{
1976519829
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);
1976619842
}
1976719843
/**
1976819844
*

app/Filament/Pages/Dashboard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public function render(): View
3333
$settings = new GeneralSettings();
3434

3535
$this->lastResult = $result->created_at
36-
->timezone($settings->timezone)
37-
->format($settings->time_format);
36+
->timezone($settings->timezone)
37+
->format($settings->time_format);
3838
}
3939

4040
return view(static::$view, $this->getViewData())

0 commit comments

Comments
 (0)