Skip to content

Commit

Permalink
Upgrade composer and npm
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed Jul 20, 2024
1 parent c318797 commit 57e82a5
Show file tree
Hide file tree
Showing 8 changed files with 94 additions and 0 deletions.
5 changes: 5 additions & 0 deletions resources/views/filament/pages/api-tokens.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<x-filament::page>
<x-filament::card>
@livewire(\Laravel\Jetstream\Http\Livewire\ApiTokenManager::class)
</x-filament::card>
</x-filament::page>
6 changes: 6 additions & 0 deletions resources/views/filament/pages/create-team.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<x-filament-panels::page.simple>
<div class="mt-5">
@livewire(\Laravel\Jetstream\Http\Livewire\CreateTeamForm::class)
</div>

</x-filament-panels::page.simple>
35 changes: 35 additions & 0 deletions resources/views/filament/pages/edit-profile.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<x-filament-panels::page>
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire(Laravel\Jetstream\Http\Livewire\UpdateProfileInformationForm::class)

<x-section-border/>
@endif

@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
<div class="mt-10 sm:mt-0">
@livewire(Laravel\Jetstream\Http\Livewire\UpdatePasswordForm::class)
</div>

<x-section-border/>
@endif

@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
<div class="mt-10 sm:mt-0">
@livewire(Laravel\Jetstream\Http\Livewire\TwoFactorAuthenticationForm::class)
</div>

<x-section-border/>
@endif

<div class="mt-10 sm:mt-0">
@livewire(Laravel\Jetstream\Http\Livewire\LogoutOtherBrowserSessionsForm::class)
</div>

@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
<x-section-border/>

<div class="mt-10 sm:mt-0">
@livewire(Laravel\Jetstream\Http\Livewire\DeleteUserForm::class)
</div>
@endif
</x-filament-panels::page>
11 changes: 11 additions & 0 deletions resources/views/filament/pages/edit-team.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<x-filament-panels::page>
@livewire(Laravel\Jetstream\Http\Livewire\UpdateTeamNameForm::class, compact('team'))

@livewire(Laravel\Jetstream\Http\Livewire\TeamMemberManager::class, compact('team'))

@if (Gate::check('delete', $team) && ! $team->personal_team)
<x-section-border/>

@livewire(Laravel\Jetstream\Http\Livewire\DeleteTeamForm::class, compact('team'))
@endif
</x-filament-panels::page>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<x-filament-panels::page>
{{-- <livewire:pedigree-chart />
<livewire:fan-chart-component />
<livewire:descendant-chart-component />
<livewire:daboville-report /> --}}
</x-filament-panels::page>
15 changes: 15 additions & 0 deletions resources/views/filament/widgets/daboville-report.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daboville Report</title>
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="descendant-chart-container" class="flex justify-center items-center w-full h-screen bg-gray-100 overflow-auto">
<!-- Chart will be rendered inside this div by descendant-chart.js -->
</div>
<script src="{{ asset('js/filament/widgets/components/descendant-chart.js') }}"></script>
</body>
</html>
15 changes: 15 additions & 0 deletions resources/views/filament/widgets/descendant-chart.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Descendant Chart</title>
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
</head>
<body>
<div id="descendant-chart-container" class="flex justify-center items-center w-full h-screen bg-gray-100 overflow-auto">
<!-- Chart will be rendered inside this div by descendant-chart.js -->
</div>
<script src="{{ asset('js/filament/widgets/components/descendant-chart.js') }}"></script>
</body>
</html>
1 change: 1 addition & 0 deletions resources/views/filament/widgets/report-widget.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<div></div>

0 comments on commit 57e82a5

Please sign in to comment.