Skip to content

Commit 837a549

Browse files
committed
fix conflicts
2 parents ee4190d + 6918571 commit 837a549

14 files changed

+42
-45
lines changed

composer.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
"npm run build:ssr",
6262
"Composer\\Config::disableProcessTimeout",
6363
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"php artisan inertia:start-ssr\" --names=server,queue,logs,ssr"
64+
],
65+
"test": [
66+
"@php artisan config:clear --ansi",
67+
"@php artisan test"
6468
]
6569
},
6670
"extra": {

package-lock.json

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

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,23 @@
1919
"prettier": "^3.4.2",
2020
"prettier-plugin-organize-imports": "^4.1.0",
2121
"prettier-plugin-tailwindcss": "^0.6.11",
22-
"tw-animate-css": "^1.2.5",
2322
"typescript-eslint": "^8.23.0",
2423
"vue-tsc": "^2.2.4"
2524
},
2625
"dependencies": {
27-
"@inertiajs/vue3": "^2.0.0-beta.3",
26+
"@inertiajs/vue3": "^2.0.0",
2827
"@tailwindcss/vite": "^4.1.1",
2928
"@vitejs/plugin-vue": "^5.2.1",
3029
"@vueuse/core": "^12.8.2",
3130
"class-variance-authority": "^0.7.1",
3231
"clsx": "^2.1.1",
3332
"concurrently": "^9.0.1",
3433
"laravel-vite-plugin": "^1.0",
35-
"lucide": "^0.468.0",
3634
"lucide-vue-next": "^0.468.0",
3735
"reka-ui": "^2.2.0",
38-
"tailwind-merge": "^2.5.5",
36+
"tailwind-merge": "^3.2.0",
3937
"tailwindcss": "^4.1.1",
40-
"tailwindcss-animate": "^1.0.7",
38+
"tw-animate-css": "^1.2.5",
4139
"typescript": "^5.2.2",
4240
"vite": "^6.2.0",
4341
"vue": "^3.5.13",

public/apple-touch-icon.png

1.69 KB
Loading

public/favicon.ico

4.19 KB
Binary file not shown.

public/favicon.svg

Lines changed: 3 additions & 0 deletions
Loading

resources/js/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const rightNavItems: NavItem[] = [
5454
},
5555
{
5656
title: 'Documentation',
57-
href: 'https://laravel.com/docs/starter-kits',
57+
href: 'https://laravel.com/docs/starter-kits#vue',
5858
icon: BookOpen,
5959
},
6060
];

resources/js/components/AppSidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const footerNavItems: NavItem[] = [
2424
},
2525
{
2626
title: 'Documentation',
27-
href: 'https://laravel.com/docs/starter-kits',
27+
href: 'https://laravel.com/docs/starter-kits#vue',
2828
icon: BookOpen,
2929
},
3030
];

resources/js/components/AppSidebarHeader.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ import Breadcrumbs from '@/components/Breadcrumbs.vue';
33
import { SidebarTrigger } from '@/components/ui/sidebar';
44
import type { BreadcrumbItemType } from '@/types';
55
6-
defineProps<{
6+
withDefaults(defineProps<{
77
breadcrumbs?: BreadcrumbItemType[];
8-
}>();
8+
}>(),{
9+
breadcrumbs:()=>[]
10+
});
911
</script>
1012

1113
<template>
@@ -14,7 +16,7 @@ defineProps<{
1416
>
1517
<div class="flex items-center gap-2">
1618
<SidebarTrigger class="-ml-1" />
17-
<template v-if="breadcrumbs.length > 0">
19+
<template v-if="breadcrumbs && breadcrumbs.length > 0">
1820
<Breadcrumbs :breadcrumbs="breadcrumbs" />
1921
</template>
2022
</div>

resources/js/components/AppearanceTabs.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
import { useAppearance } from '@/composables/useAppearance';
33
import { Monitor, Moon, Sun } from 'lucide-vue-next';
44
5-
interface Props {
6-
class?: string;
7-
}
8-
9-
const { class: containerClass = '' } = defineProps<Props>();
10-
115
const { appearance, updateAppearance } = useAppearance();
126
137
const tabs = [
@@ -18,7 +12,7 @@ const tabs = [
1812
</script>
1913

2014
<template>
21-
<div :class="['inline-flex gap-1 rounded-lg bg-neutral-100 p-1 dark:bg-neutral-800', containerClass]">
15+
<div class="inline-flex gap-1 rounded-lg bg-neutral-100 p-1 dark:bg-neutral-800">
2216
<button
2317
v-for="{ value, Icon, label } in tabs"
2418
:key="value"

0 commit comments

Comments
 (0)