feat: Add anonymous dynamic canvas option to gallery

This commit is contained in:
2026-02-15 02:05:47 -06:00
parent d5ee533db9
commit 8154bac63f
4 changed files with 30 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ export const useCanvasStore = defineStore('canvas', () => {
const history = ref<HistoryEntry[]>([])
const notifications = ref<Notification[]>([])
const showHistoryPanel = ref(false)
const isAnonymousCanvas = ref(false)
let notificationId = 0
@@ -111,6 +112,8 @@ export const useCanvasStore = defineStore('canvas', () => {
connectionError,
connectionInfo,
statusColor,
// Canvas mode
isAnonymousCanvas,
// History & UI
history,
notifications,