@excalidraw/excalidraw 0.18.0-b7aac689a → 0.18.0-c65b684e9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev/{chunk-CBGOW5JB.js → chunk-65CT75SH.js} +3 -4
- package/dist/dev/chunk-65CT75SH.js.map +7 -0
- package/dist/dev/data/{image-SURZSZNX.js → image-G3ZXYWE6.js} +2 -2
- package/dist/dev/index.css +4 -0
- package/dist/dev/index.css.map +2 -2
- package/dist/dev/index.js +1251 -1204
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/chunk-YZO7PSYQ.js +4 -0
- package/dist/prod/data/{image-HXEZYJPQ.js → image-53OPA26C.js} +1 -1
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +19 -19
- package/dist/types/common/src/constants.d.ts +1 -0
- package/dist/types/element/src/align.d.ts +2 -1
- package/dist/types/element/src/delta.d.ts +11 -1
- package/dist/types/element/src/distribute.d.ts +2 -1
- package/dist/types/element/src/groups.d.ts +1 -0
- package/dist/types/element/src/linearElementEditor.d.ts +2 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +0 -3
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +13 -13
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +3 -8
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +3 -6
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionExport.d.ts +0 -9
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +0 -4
- package/dist/types/excalidraw/actions/actionGroup.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +33 -3
- package/dist/types/excalidraw/actions/actionLink.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionMenu.d.ts +0 -3
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionProperties.d.ts +0 -15
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionStyles.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +0 -1
- package/dist/types/excalidraw/components/Actions.d.ts +0 -4
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/index.d.ts +1 -0
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/types.d.ts +1 -3
- package/package.json +4 -4
- package/dist/dev/chunk-CBGOW5JB.js.map +0 -7
- package/dist/prod/chunk-IRHK23LL.js +0 -4
- /package/dist/dev/data/{image-SURZSZNX.js.map → image-G3ZXYWE6.js.map} +0 -0
|
@@ -63,7 +63,6 @@ var getDefaultAppState = () => {
|
|
|
63
63
|
newElement: null,
|
|
64
64
|
editingTextElement: null,
|
|
65
65
|
editingGroupId: null,
|
|
66
|
-
editingLinearElement: null,
|
|
67
66
|
activeTool: {
|
|
68
67
|
type: "selection",
|
|
69
68
|
customType: null,
|
|
@@ -174,7 +173,6 @@ var APP_STATE_STORAGE_CONF = /* @__PURE__ */ ((config) => config)({
|
|
|
174
173
|
newElement: { browser: false, export: false, server: false },
|
|
175
174
|
editingTextElement: { browser: false, export: false, server: false },
|
|
176
175
|
editingGroupId: { browser: true, export: false, server: false },
|
|
177
|
-
editingLinearElement: { browser: false, export: false, server: false },
|
|
178
176
|
activeTool: { browser: true, export: false, server: false },
|
|
179
177
|
penMode: { browser: true, export: false, server: false },
|
|
180
178
|
penDetected: { browser: true, export: false, server: false },
|
|
@@ -5217,7 +5215,7 @@ var parseFileContents = async (blob) => {
|
|
|
5217
5215
|
let contents;
|
|
5218
5216
|
if (blob.type === MIME_TYPES6.png) {
|
|
5219
5217
|
try {
|
|
5220
|
-
return await (await import("./data/image-
|
|
5218
|
+
return await (await import("./data/image-G3ZXYWE6.js")).decodePngMetadata(blob);
|
|
5221
5219
|
} catch (error) {
|
|
5222
5220
|
if (error.message === "INVALID") {
|
|
5223
5221
|
throw new ImageSceneDataError(
|
|
@@ -5633,6 +5631,7 @@ export {
|
|
|
5633
5631
|
strokeEllipseWithRotation,
|
|
5634
5632
|
strokeRectWithRotation,
|
|
5635
5633
|
drawHighlightForDiamondWithRotation,
|
|
5634
|
+
frameClip,
|
|
5636
5635
|
renderStaticSceneThrottled,
|
|
5637
5636
|
renderStaticScene,
|
|
5638
5637
|
exportToCanvas,
|
|
@@ -5666,4 +5665,4 @@ export {
|
|
|
5666
5665
|
createFile,
|
|
5667
5666
|
normalizeFile
|
|
5668
5667
|
};
|
|
5669
|
-
//# sourceMappingURL=chunk-
|
|
5668
|
+
//# sourceMappingURL=chunk-65CT75SH.js.map
|