Merge branch 'master' into HEAD

# Conflicts:
#	src/excalidraw-app/collab/Collab.tsx
#	src/excalidraw-app/index.tsx
#	src/locales/en.json
This commit is contained in:
dwelle 2023-05-11 16:35:27 +02:00
commit d61a87f132
434 changed files with 43177 additions and 22861 deletions

View file

@ -35,8 +35,16 @@ export const STORAGE_KEYS = {
LOCAL_STORAGE_ELEMENTS: "excalidraw",
LOCAL_STORAGE_APP_STATE: "excalidraw-state",
LOCAL_STORAGE_COLLAB: "excalidraw-collab",
LOCAL_STORAGE_KEY_COLLAB_FORCE_FLAG: "collabLinkForceLoadFlag",
LOCAL_STORAGE_LIBRARY: "excalidraw-library",
LOCAL_STORAGE_THEME: "excalidraw-theme",
VERSION_DATA_STATE: "version-dataState",
VERSION_FILES: "version-files",
} as const;
export const COOKIES = {
AUTH_STATE_COOKIE: "excplus-auth",
} as const;
export const isExcalidrawPlusSignedUser = document.cookie.includes(
COOKIES.AUTH_STATE_COOKIE,
);