Skip to content

Commit 7e9021e

Browse files
committed
chore: resolve main
1 parent 6e2e131 commit 7e9021e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2482
-2208
lines changed

app/View/Components/AppLayout.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App\View\Components;
6+
7+
use Illuminate\Contracts\View\View;
8+
use Illuminate\View\Component;
9+
10+
final class AppLayout extends Component
11+
{
12+
public function render(): View
13+
{
14+
return view('layouts.app');
15+
}
16+
}

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"filament/filament": "^3.0",
1818
"filament/notifications": "^3.0",
1919
"francescomalatesta/laravel-feature": "dev-l10-compatibility",
20+
"gehrisandro/tailwind-merge-laravel": "^1.0",
2021
"graham-campbell/markdown": "^15.0",
2122
"guzzlehttp/guzzle": "^7.7.0",
2223
"jenssegers/agent": "^2.6.4",

composer.lock

Lines changed: 150 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -5,47 +5,22 @@
55
"build": "vite build"
66
},
77
"devDependencies": {
8+
"@alpinejs/intersect": "^3.6.1",
89
"@awcodes/alpine-floating-ui": "^3.5.0",
9-
"@babel/core": "^7.12.10",
10-
"@babel/plugin-transform-react-jsx": "^7.12.12",
11-
"@babel/plugin-transform-runtime": "^7.16.4",
12-
"@babel/preset-env": "^7.12.11",
13-
"@babel/preset-react": "^7.16.0",
14-
"@defstudio/vite-livewire-plugin": "^1.2.1",
10+
"@ryangjchandler/alpine-tooltip": "^1.2.0",
1511
"@tailwindcss/aspect-ratio": "^0.4.2",
16-
"@tailwindcss/forms": "^0.5.4",
17-
"@tailwindcss/typography": "^0.5.9",
12+
"@tailwindcss/forms": "^0.5.7",
13+
"@tailwindcss/typography": "^0.5.10",
1814
"alpinejs": "^3.12.0",
19-
"autoprefixer": "^10.4.14",
20-
"babel-plugin-jsx-pragmatic": "^1.0.2",
21-
"eslint-config-preact": "^1.1.3",
22-
"fs": "^0.0.1-security",
15+
"autoprefixer": "^10.4.16",
2316
"laravel-vite-plugin": "^0.7.8",
2417
"lodash": "^4.17.19",
25-
"os": "^0.1.2",
2618
"path": "^0.12.7",
27-
"postcss": "^8.4.27",
19+
"postcss": "^8.4.32",
2820
"postcss-loader": "^6.2.1",
2921
"postcss-preset-env": "^7.0.1",
30-
"tailwindcss": "^3.3.3",
22+
"tailwindcss": "^3.4.7",
3123
"tippy.js": "^6.3.7",
32-
"vite": "^4.4.7"
33-
},
34-
"dependencies": {
35-
"@alpinejs/intersect": "^3.6.1",
36-
"@headlessui/react": "^1.7.2",
37-
"@heroicons/react": "^2.0.11",
38-
"@ryangjchandler/alpine-tooltip": "^1.2.0",
39-
"axios": "^0.21.1",
40-
"canvas-confetti": "^1.4.0",
41-
"choices.js": "^9.0.1",
42-
"filepond": "^4.30.4",
43-
"filepond-plugin-file-validate-size": "^2.2.8",
44-
"filepond-plugin-file-validate-type": "^1.2.8",
45-
"filepond-plugin-image-preview": "^4.6.11",
46-
"highlight.js": "^11.7.0",
47-
"htm": "^3.1.0",
48-
"intl-tel-input": "^17.0.13",
49-
"preact": "^10.5.15"
24+
"vite": "^5.0"
5025
}
5126
}

0 commit comments

Comments
 (0)