feat: festival/series model with sub-events, cross-event sections, tab navigation, SectionsShiftsPanel extraction

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-10 11:15:19 +02:00
parent 11b9f1d399
commit 10bd55b8ae
40 changed files with 3087 additions and 1080 deletions

View File

@@ -0,0 +1,20 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
export const useSectionsUiStore = defineStore('sectionsUi', () => {
const timeSlotsExpanded = ref(false)
function toggleTimeSlots() {
timeSlotsExpanded.value = !timeSlotsExpanded.value
}
function expandTimeSlots() {
timeSlotsExpanded.value = true
}
return {
timeSlotsExpanded,
toggleTimeSlots,
expandTimeSlots,
}
})