Skip to content

Commit

Permalink
Bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaeljorhult committed Feb 8, 2024
1 parent a73aedb commit 6330886
Show file tree
Hide file tree
Showing 9 changed files with 1,646 additions and 1,180 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
- uses: actions/checkout@v3

- name: Copy .env
Expand Down
1,738 changes: 902 additions & 836 deletions composer.lock

Large diffs are not rendered by default.

868 changes: 632 additions & 236 deletions package-lock.json

Large diffs are not rendered by default.

103 changes: 0 additions & 103 deletions public/build/assets/app-0375bd94.js

This file was deleted.

1 change: 0 additions & 1 deletion public/build/assets/app-298aede8.css

This file was deleted.

1 change: 1 addition & 0 deletions public/build/assets/app-433994a8.css

Large diffs are not rendered by default.

105 changes: 105 additions & 0 deletions public/build/assets/app-f292e467.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/build/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"dynamicImports": [
"node_modules/qr-scanner/qr-scanner-worker.min.js"
],
"file": "assets/app-0375bd94.js",
"file": "assets/app-f292e467.js",
"isEntry": true,
"src": "resources/js/app.js"
},
"resources/sass/app.scss": {
"file": "assets/app-298aede8.css",
"file": "assets/app-433994a8.css",
"isEntry": true,
"src": "resources/sass/app.scss"
}
Expand Down
4 changes: 3 additions & 1 deletion resources/views/livewire/segel.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class="order-1"
title="Previous"
href="{{ route('calendar') }}"
wire:click.prevent="previousTimeScope"
dusk="segel-previous-timescope"
>
<x-heroicon-s-chevron-left class="w-5" />
<span class="sr-only">Previous</span>
Expand All @@ -18,6 +19,7 @@ class="order-3"
title="Next"
href="{{ route('calendar') }}"
wire:click.prevent="nextTimeScope"
dusk="segel-next-timescope"
>
<span class="sr-only">Next</span>
<x-heroicon-s-chevron-right class="w-5" />
Expand All @@ -29,11 +31,11 @@ class="order-3"
<x-forms.label for="type">Show:</x-forms.label>

<x-forms.select
class="ml-1"
name="type"
id="type"
:options="['day' => 'Day', 'week' => 'Week', 'month' => 'Month']"
wire:model.live="type"
class="ml-1"
/>
</div>
</div>
Expand Down

0 comments on commit 6330886

Please sign in to comment.