diff --git a/frontend/src/stores/toast.js b/frontend/src/stores/toast.js new file mode 100644 index 0000000..0206d89 --- /dev/null +++ b/frontend/src/stores/toast.js @@ -0,0 +1,20 @@ +/** + * Phase 7.1 STUB — Phase 10 (UX-10) fills in the full implementation. + * + * The signature `show(message, type, duration)` is locked and Phase 10 must + * honor it without modifying Phase 8 call sites. + * + * Default values match UI-SPEC.md: + * type = 'success' (NOT 'info') + * duration = 4000 + */ +import { defineStore } from 'pinia' + +export const useToastStore = defineStore('toast', () => { + // eslint-disable-next-line no-unused-vars + function show(message, type = 'success', duration = 4000) { + // No-op stub — Phase 10 implements rendering. + } + + return { show } +})