Skip to content

Fixes #304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged

Fixes #304

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/Breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedBreadcrumbProps extends Omit<BreadcrumbProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedBreadcrumbProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/ContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedContextMenuProps extends Omit<ContextMenuProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedContextMenuProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedMenuProps extends Omit<MenuProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedMenuProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/Menubar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedMenubarProps extends Omit<MenubarProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = withDefaults(
defineProps<ExtendedMenubarProps>(),
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/PanelMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedPanelMenuProps extends Omit<PanelMenuProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedPanelMenuProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/TabMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedTabListProps extends Omit<TabListProps, 'items'> {
items: MenuItem[];
items?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedTabListProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/primevue/menu/TieredMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
import { ptViewMerge } from '@/utils';

interface ExtendedTieredMenuProps extends Omit<TieredMenuProps, 'model'> {
model: MenuItem[];
model?: MenuItem[] | undefined;
}
const componentProps = defineProps<ExtendedTieredMenuProps>();

Expand Down
2 changes: 1 addition & 1 deletion resources/js/layouts/GuestAuthLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ApplicationLogo from '@/components/ApplicationLogo.vue';
</script>

<template>
<Container class="min-h-screen flex flex-col justify-center items-center">
<Container class="min-h-svh flex flex-col justify-center items-center">
<div>
<InertiaLink href="/">
<ApplicationLogo class="w-12 h-12 fill-current text-surface-900 dark:text-surface-0" />
Expand Down