Skip to content

Commit

Permalink
Sync wireuse
Browse files Browse the repository at this point in the history
  • Loading branch information
francoism90 committed Apr 16, 2024
1 parent c066ce3 commit feb8296
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"require": {
"php": "^8.2",
"foxws/wireuse": "^0.0.2",
"foxws/wireuse": "^0.0.3",
"illuminate/contracts": "^10.0|^11.0",
"livewire/livewire": "^3.4",
"spatie/laravel-package-tools": "^1.16.3"
Expand Down
2 changes: 1 addition & 1 deletion src/Actions/Components/Button.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Actions\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\View\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Actions/Components/Dropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Actions\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\View\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Actions/Components/Link.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Actions\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\Support\Facades\Route;
use Illuminate\View\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Auth/Controllers/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Foxws\WireUi\Auth\Controllers;

use Foxws\WireUi\Auth\Forms\LoginForm;
use Foxws\WireUse\Views\Components\Page;
use Foxws\WireUse\Views\Support\Page;
use Illuminate\View\View;
use Livewire\Attributes\Layout;

Expand Down
2 changes: 1 addition & 1 deletion src/Auth/Controllers/LogoutController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Auth\Controllers;

use Foxws\WireUse\Views\Components\Page;
use Foxws\WireUse\Views\Support\Page;
use Illuminate\View\View;
use Livewire\Attributes\Layout;
use Livewire\Features\SupportRedirects\Redirector;
Expand Down
2 changes: 1 addition & 1 deletion src/Auth/Controllers/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Foxws\WireUi\Auth\Controllers;

use Foxws\WireUi\Auth\Forms\RegisterForm;
use Foxws\WireUse\Views\Components\Page;
use Foxws\WireUse\Views\Support\Page;
use Illuminate\View\View;
use Livewire\Attributes\Layout;

Expand Down
2 changes: 1 addition & 1 deletion src/Forms/Components/Checkbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Forms\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Checkbox extends Component
Expand Down
2 changes: 1 addition & 1 deletion src/Forms/Components/Input.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Forms\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Input extends Component
Expand Down
2 changes: 1 addition & 1 deletion src/Forms/Components/Label.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Forms\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\View\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Forms/Components/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Forms\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Schema extends Component
Expand Down
2 changes: 1 addition & 1 deletion src/Layout/Components/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Layout\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Container extends Component
Expand Down
2 changes: 1 addition & 1 deletion src/Layout/Components/Join.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Layout\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Join extends Component
Expand Down
2 changes: 1 addition & 1 deletion src/Navigation/Components/Navbar.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Navigation\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\View\View;

Expand Down
2 changes: 1 addition & 1 deletion src/Ui/Components/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Foxws\WireUi\Ui\Components;

use Foxws\WireUi\Views\Components\Component;
use Foxws\WireUi\Views\Support\Component;
use Illuminate\View\View;

class Card extends Component
Expand Down

0 comments on commit feb8296

Please sign in to comment.