There still exists an issue with one Adobe led library ; @international-dates don't seem to compile their sourcemaps correctly. I don't think this is something I can fix however, and it may require hacks and workarounds to solve from what I've gathered
47 lines
1.2 KiB
Vue
47 lines
1.2 KiB
Vue
<script lang="ts" setup>
|
|
import { useCalendar } from '@/stores/CalendarStore'
|
|
|
|
import { PhMagnifyingGlass } from '@phosphor-icons/vue'
|
|
import CalendarMenuNav from './CalendarMenuNav.vue'
|
|
import CalendarMenuSubnav from './CalendarMenuSubnav.vue'
|
|
import CalendarMenuToday from './CalendarMenuToday.vue'
|
|
import CalendarSwitch from './CalendarSwitch.vue'
|
|
import CalendarCurrentDate from './CalendarCurrentDate.vue'
|
|
|
|
const { revealAdvancedSearch } = useCalendar()
|
|
</script>
|
|
|
|
<template>
|
|
<header class="pt-4 border-slate-700 border-b-[1px]">
|
|
<div class="px-6 flex justify-between">
|
|
<menu class="flex items-center gap-2">
|
|
<li class="flex items-center">
|
|
<CalendarMenuToday />
|
|
</li>
|
|
<li>
|
|
<CalendarMenuNav />
|
|
</li>
|
|
<li class="ml-6">
|
|
<CalendarCurrentDate />
|
|
</li>
|
|
</menu>
|
|
|
|
<menu class="flex items-center gap-2">
|
|
<li>
|
|
<UiButton search-slash @click="revealAdvancedSearch()">
|
|
<PhMagnifyingGlass size="20" weight="light" />
|
|
Recherche avancée
|
|
</UiButton>
|
|
</li>
|
|
<li>
|
|
<CalendarSwitch />
|
|
</li>
|
|
</menu>
|
|
</div>
|
|
|
|
<div class="ml-6">
|
|
<CalendarMenuSubnav />
|
|
</div>
|
|
</header>
|
|
</template>
|