feat: store library to IndexedDB & support storage adapters (#7655)

This commit is contained in:
David Luzar
2024-03-08 22:29:19 +01:00
committed by GitHub
parent 480572f893
commit 2382fad4f6
14 changed files with 718 additions and 95 deletions

View File

@@ -207,6 +207,8 @@ Excalidraw.displayName = "Excalidraw";
export {
getSceneVersion,
hashElementsVersion,
hashString,
isInvisiblySmallElement,
getNonDeletedElements,
} from "./element";
@@ -232,7 +234,7 @@ export {
loadLibraryFromBlob,
} from "./data/blob";
export { getFreeDrawSvgPath } from "./renderer/renderElement";
export { mergeLibraryItems } from "./data/library";
export { mergeLibraryItems, getLibraryItemsHash } from "./data/library";
export { isLinearElement } from "./element/typeChecks";
export { FONT_FAMILY, THEME, MIME_TYPES, ROUNDNESS } from "./constants";