@excalidraw/math 0.18.0-b7aac689a → 0.18.0-c141960
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/index.js +58 -61
- package/dist/dev/index.js.map +3 -3
- package/dist/prod/index.js +1 -1
- package/dist/types/common/src/constants.d.ts +21 -15
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/index.d.ts +2 -0
- package/dist/types/common/src/utils.d.ts +9 -3
- package/dist/types/common/src/visualdebug.d.ts +41 -0
- package/dist/types/element/src/Scene.d.ts +6 -2
- package/dist/types/element/src/align.d.ts +2 -1
- package/dist/types/element/src/binding.d.ts +55 -43
- package/dist/types/element/src/bounds.d.ts +1 -1
- package/dist/types/element/src/collision.d.ts +6 -2
- package/dist/types/element/src/delta.d.ts +16 -4
- 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/index.d.ts +1 -3
- package/dist/types/element/src/linearElementEditor.d.ts +17 -19
- package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
- package/dist/types/element/src/renderElement.d.ts +5 -2
- package/dist/types/element/src/resizeTest.d.ts +5 -4
- package/dist/types/element/src/store.d.ts +6 -1
- package/dist/types/element/src/textElement.d.ts +1 -1
- package/dist/types/element/src/transformHandles.d.ts +5 -4
- package/dist/types/element/src/typeChecks.d.ts +2 -3
- package/dist/types/element/src/types.d.ts +7 -11
- package/dist/types/element/src/utils.d.ts +2 -1
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +34 -16
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -6
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +25 -13
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +153 -275
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +45 -777
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +12 -6
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +45 -29
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +11 -7
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +23 -11
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +12 -6
- package/dist/types/excalidraw/actions/actionExport.d.ts +68 -952
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionFrame.d.ts +50 -28
- package/dist/types/excalidraw/actions/actionGroup.d.ts +24 -12
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +47 -14
- package/dist/types/excalidraw/actions/actionLink.d.ts +9 -3
- package/dist/types/excalidraw/actions/actionMenu.d.ts +10 -374
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +21 -361
- package/dist/types/excalidraw/actions/actionProperties.d.ts +87 -2418
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +12 -6
- package/dist/types/excalidraw/actions/actionStyles.d.ts +13 -7
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +11 -5
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +11 -5
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +10 -6
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +11 -5
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +11 -5
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +12 -6
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -2
- package/dist/types/excalidraw/actions/index.d.ts +2 -2
- package/dist/types/excalidraw/actions/manager.d.ts +1 -1
- package/dist/types/excalidraw/actions/register.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +4 -4
- package/dist/types/excalidraw/appState.d.ts +9 -4
- package/dist/types/excalidraw/clipboard.d.ts +64 -1
- package/dist/types/excalidraw/components/Actions.d.ts +20 -7
- package/dist/types/excalidraw/components/App.d.ts +35 -25
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +1 -2
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +1 -1
- package/dist/types/excalidraw/components/FilledButton.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +11 -0
- package/dist/types/excalidraw/components/Popover.d.ts +2 -1
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +1 -0
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +6 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +4 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +2 -1
- package/dist/types/excalidraw/components/icons.d.ts +10 -0
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +13 -1
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +0 -3
- package/dist/types/excalidraw/components/shapes.d.ts +129 -1
- package/dist/types/excalidraw/data/blob.d.ts +3 -7
- package/dist/types/excalidraw/data/reconcile.d.ts +1 -0
- package/dist/types/excalidraw/data/restore.d.ts +7 -2
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +3 -1
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/index.d.ts +4 -4
- package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +2 -6
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +5 -13
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/scene/types.d.ts +15 -3
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/types.d.ts +37 -24
- package/dist/types/math/src/segment.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import type { IMAGE_MIME_TYPES, UserIdleState, throttleRAF, MIME_TYPES } from "@excalidraw/common";
|
|
2
|
-
import type { SuggestedBinding } from "@excalidraw/element";
|
|
1
|
+
import type { IMAGE_MIME_TYPES, UserIdleState, throttleRAF, MIME_TYPES, EditorInterface } from "@excalidraw/common";
|
|
3
2
|
import type { LinearElementEditor } from "@excalidraw/element";
|
|
4
3
|
import type { MaybeTransformHandleType } from "@excalidraw/element";
|
|
5
|
-
import type { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, Arrowhead, ChartType, FontFamilyValues, FileId, Theme, StrokeRoundness, ExcalidrawEmbeddableElement, ExcalidrawMagicFrameElement, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeLikeElement, OrderedExcalidrawElement, ExcalidrawNonSelectionElement } from "@excalidraw/element/types";
|
|
4
|
+
import type { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, Arrowhead, ChartType, FontFamilyValues, FileId, Theme, StrokeRoundness, ExcalidrawEmbeddableElement, ExcalidrawMagicFrameElement, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeLikeElement, OrderedExcalidrawElement, ExcalidrawNonSelectionElement, BindMode } from "@excalidraw/element/types";
|
|
6
5
|
import type { Merge, MaybePromise, ValueOf, MakeBrand } from "@excalidraw/common/utility-types";
|
|
7
6
|
import type { CaptureUpdateActionType, DurableIncrement, EphemeralIncrement } from "@excalidraw/element";
|
|
8
7
|
import type { Action } from "./actions/types";
|
|
@@ -125,17 +124,18 @@ export type StaticCanvasAppState = Readonly<_CommonCanvasAppState & {
|
|
|
125
124
|
frameRendering: AppState["frameRendering"];
|
|
126
125
|
currentHoveredFontFamily: AppState["currentHoveredFontFamily"];
|
|
127
126
|
hoveredElementIds: AppState["hoveredElementIds"];
|
|
127
|
+
suggestedBinding: AppState["suggestedBinding"];
|
|
128
128
|
croppingElementId: AppState["croppingElementId"];
|
|
129
129
|
}>;
|
|
130
130
|
export type InteractiveCanvasAppState = Readonly<_CommonCanvasAppState & {
|
|
131
131
|
activeEmbeddable: AppState["activeEmbeddable"];
|
|
132
|
-
editingLinearElement: AppState["editingLinearElement"];
|
|
133
132
|
selectionElement: AppState["selectionElement"];
|
|
134
133
|
selectedGroupIds: AppState["selectedGroupIds"];
|
|
135
134
|
selectedLinearElement: AppState["selectedLinearElement"];
|
|
136
135
|
multiElement: AppState["multiElement"];
|
|
136
|
+
newElement: AppState["newElement"];
|
|
137
137
|
isBindingEnabled: AppState["isBindingEnabled"];
|
|
138
|
-
|
|
138
|
+
suggestedBinding: AppState["suggestedBinding"];
|
|
139
139
|
isRotating: AppState["isRotating"];
|
|
140
140
|
elementsToHighlight: AppState["elementsToHighlight"];
|
|
141
141
|
collaborators: AppState["collaborators"];
|
|
@@ -146,6 +146,10 @@ export type InteractiveCanvasAppState = Readonly<_CommonCanvasAppState & {
|
|
|
146
146
|
croppingElementId: AppState["croppingElementId"];
|
|
147
147
|
searchMatches: AppState["searchMatches"];
|
|
148
148
|
activeLockedId: AppState["activeLockedId"];
|
|
149
|
+
hoveredElementIds: AppState["hoveredElementIds"];
|
|
150
|
+
frameRendering: AppState["frameRendering"];
|
|
151
|
+
shouldCacheIgnoreZoom: AppState["shouldCacheIgnoreZoom"];
|
|
152
|
+
exportScale: AppState["exportScale"];
|
|
149
153
|
}>;
|
|
150
154
|
export type ObservedAppState = ObservedStandaloneAppState & ObservedElementsAppState;
|
|
151
155
|
export type ObservedStandaloneAppState = {
|
|
@@ -156,8 +160,10 @@ export type ObservedElementsAppState = {
|
|
|
156
160
|
editingGroupId: AppState["editingGroupId"];
|
|
157
161
|
selectedElementIds: AppState["selectedElementIds"];
|
|
158
162
|
selectedGroupIds: AppState["selectedGroupIds"];
|
|
159
|
-
|
|
160
|
-
|
|
163
|
+
selectedLinearElement: {
|
|
164
|
+
elementId: LinearElementEditor["elementId"];
|
|
165
|
+
isEditing: boolean;
|
|
166
|
+
} | null;
|
|
161
167
|
croppingElementId: AppState["croppingElementId"];
|
|
162
168
|
lockedMultiSelections: AppState["lockedMultiSelections"];
|
|
163
169
|
activeLockedId: AppState["activeLockedId"];
|
|
@@ -197,7 +203,7 @@ export interface AppState {
|
|
|
197
203
|
selectionElement: NonDeletedExcalidrawElement | null;
|
|
198
204
|
isBindingEnabled: boolean;
|
|
199
205
|
startBoundElement: NonDeleted<ExcalidrawBindableElement> | null;
|
|
200
|
-
|
|
206
|
+
suggestedBinding: NonDeleted<ExcalidrawBindableElement> | null;
|
|
201
207
|
frameToHighlight: NonDeleted<ExcalidrawFrameLikeElement> | null;
|
|
202
208
|
frameRendering: {
|
|
203
209
|
enabled: boolean;
|
|
@@ -211,7 +217,6 @@ export interface AppState {
|
|
|
211
217
|
* set when a new text is created or when an existing text is being edited
|
|
212
218
|
*/
|
|
213
219
|
editingTextElement: NonDeletedExcalidrawElement | null;
|
|
214
|
-
editingLinearElement: LinearElementEditor | null;
|
|
215
220
|
activeTool: {
|
|
216
221
|
/**
|
|
217
222
|
* indicates a previous tool we should revert back to if we deselect the
|
|
@@ -221,6 +226,10 @@ export interface AppState {
|
|
|
221
226
|
locked: boolean;
|
|
222
227
|
fromSelection: boolean;
|
|
223
228
|
} & ActiveTool;
|
|
229
|
+
preferredSelectionTool: {
|
|
230
|
+
type: "selection" | "lasso";
|
|
231
|
+
initialized: boolean;
|
|
232
|
+
};
|
|
224
233
|
penMode: boolean;
|
|
225
234
|
penDetected: boolean;
|
|
226
235
|
exportBackground: boolean;
|
|
@@ -251,8 +260,8 @@ export interface AppState {
|
|
|
251
260
|
isResizing: boolean;
|
|
252
261
|
isRotating: boolean;
|
|
253
262
|
zoom: Zoom;
|
|
254
|
-
openMenu: "canvas" |
|
|
255
|
-
openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | null;
|
|
263
|
+
openMenu: "canvas" | null;
|
|
264
|
+
openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
256
265
|
openSidebar: {
|
|
257
266
|
name: SidebarName;
|
|
258
267
|
tab?: SidebarTabName;
|
|
@@ -264,6 +273,8 @@ export interface AppState {
|
|
|
264
273
|
tab: "text-to-diagram" | "mermaid";
|
|
265
274
|
} | {
|
|
266
275
|
name: "commandPalette";
|
|
276
|
+
} | {
|
|
277
|
+
name: "settings";
|
|
267
278
|
} | {
|
|
268
279
|
name: "elementLinkSelector";
|
|
269
280
|
sourceElementId: ExcalidrawElement["id"];
|
|
@@ -351,6 +362,7 @@ export interface AppState {
|
|
|
351
362
|
lockedMultiSelections: {
|
|
352
363
|
[groupId: string]: true;
|
|
353
364
|
};
|
|
365
|
+
bindMode: BindMode;
|
|
354
366
|
}
|
|
355
367
|
export type SearchMatch = {
|
|
356
368
|
id: string;
|
|
@@ -363,7 +375,7 @@ export type SearchMatch = {
|
|
|
363
375
|
showOnCanvas: boolean;
|
|
364
376
|
}[];
|
|
365
377
|
};
|
|
366
|
-
export type UIAppState = Omit<AppState, "
|
|
378
|
+
export type UIAppState = Omit<AppState, "suggestedBinding" | "startBoundElement" | "cursorButton" | "scrollX" | "scrollY">;
|
|
367
379
|
export type NormalizedZoomValue = number & {
|
|
368
380
|
_brand: "normalizedZoom";
|
|
369
381
|
};
|
|
@@ -441,6 +453,7 @@ export interface ExcalidrawProps {
|
|
|
441
453
|
onDuplicate?: (nextElements: readonly ExcalidrawElement[],
|
|
442
454
|
/** excludes the duplicated elements */
|
|
443
455
|
prevElements: readonly ExcalidrawElement[]) => ExcalidrawElement[] | void;
|
|
456
|
+
renderTopLeftUI?: (isMobile: boolean, appState: UIAppState) => JSX.Element | null;
|
|
444
457
|
renderTopRightUI?: (isMobile: boolean, appState: UIAppState) => JSX.Element | null;
|
|
445
458
|
langCode?: Language["code"];
|
|
446
459
|
viewModeEnabled?: boolean;
|
|
@@ -498,6 +511,12 @@ export type UIOptions = Partial<{
|
|
|
498
511
|
tools: {
|
|
499
512
|
image: boolean;
|
|
500
513
|
};
|
|
514
|
+
/**
|
|
515
|
+
* Optionally control the editor form factor and desktop UI mode from the host app.
|
|
516
|
+
* If not provided, we will take care of it internally.
|
|
517
|
+
*/
|
|
518
|
+
formFactor?: EditorInterface["formFactor"];
|
|
519
|
+
desktopUIMode?: EditorInterface["desktopUIMode"];
|
|
501
520
|
/** @deprecated does nothing. Will be removed in 0.15 */
|
|
502
521
|
welcomeScreen?: boolean;
|
|
503
522
|
}>;
|
|
@@ -528,7 +547,7 @@ export type AppClassProperties = {
|
|
|
528
547
|
mimeType: ValueOf<typeof IMAGE_MIME_TYPES>;
|
|
529
548
|
}>;
|
|
530
549
|
files: BinaryFiles;
|
|
531
|
-
|
|
550
|
+
editorInterface: App["editorInterface"];
|
|
532
551
|
scene: App["scene"];
|
|
533
552
|
syncActionResult: App["syncActionResult"];
|
|
534
553
|
fonts: App["fonts"];
|
|
@@ -557,6 +576,8 @@ export type AppClassProperties = {
|
|
|
557
576
|
excalidrawContainerValue: App["excalidrawContainerValue"];
|
|
558
577
|
onPointerUpEmitter: App["onPointerUpEmitter"];
|
|
559
578
|
updateEditorAtom: App["updateEditorAtom"];
|
|
579
|
+
onPointerDownEmitter: App["onPointerDownEmitter"];
|
|
580
|
+
bindModeHandler: App["bindModeHandler"];
|
|
560
581
|
};
|
|
561
582
|
export type PointerDownState = Readonly<{
|
|
562
583
|
origin: Readonly<{
|
|
@@ -604,6 +625,7 @@ export type PointerDownState = Readonly<{
|
|
|
604
625
|
x: number;
|
|
605
626
|
y: number;
|
|
606
627
|
};
|
|
628
|
+
blockDragging: boolean;
|
|
607
629
|
};
|
|
608
630
|
eventListeners: {
|
|
609
631
|
onMove: null | ReturnType<typeof throttleRAF>;
|
|
@@ -618,6 +640,7 @@ export type PointerDownState = Readonly<{
|
|
|
618
640
|
export type UnsubscribeCallback = () => void;
|
|
619
641
|
export interface ExcalidrawImperativeAPI {
|
|
620
642
|
updateScene: InstanceType<typeof App>["updateScene"];
|
|
643
|
+
applyDeltas: InstanceType<typeof App>["applyDeltas"];
|
|
621
644
|
mutateElement: InstanceType<typeof App>["mutateElement"];
|
|
622
645
|
updateLibrary: InstanceType<typeof Library>["updateLibrary"];
|
|
623
646
|
resetScene: InstanceType<typeof App>["resetScene"];
|
|
@@ -640,6 +663,7 @@ export interface ExcalidrawImperativeAPI {
|
|
|
640
663
|
setCursor: InstanceType<typeof App>["setCursor"];
|
|
641
664
|
resetCursor: InstanceType<typeof App>["resetCursor"];
|
|
642
665
|
toggleSidebar: InstanceType<typeof App>["toggleSidebar"];
|
|
666
|
+
getEditorInterface: () => EditorInterface;
|
|
643
667
|
/**
|
|
644
668
|
* Disables rendering of frames (including element clipping), but currently
|
|
645
669
|
* the frames are still interactive in edit mode. As such, this API should be
|
|
@@ -653,17 +677,6 @@ export interface ExcalidrawImperativeAPI {
|
|
|
653
677
|
onScrollChange: (callback: (scrollX: number, scrollY: number, zoom: Zoom) => void) => UnsubscribeCallback;
|
|
654
678
|
onUserFollow: (callback: (payload: OnUserFollowedPayload) => void) => UnsubscribeCallback;
|
|
655
679
|
}
|
|
656
|
-
export type Device = Readonly<{
|
|
657
|
-
viewport: {
|
|
658
|
-
isMobile: boolean;
|
|
659
|
-
isLandscape: boolean;
|
|
660
|
-
};
|
|
661
|
-
editor: {
|
|
662
|
-
isMobile: boolean;
|
|
663
|
-
canFitSidebar: boolean;
|
|
664
|
-
};
|
|
665
|
-
isTouchScreen: boolean;
|
|
666
|
-
}>;
|
|
667
680
|
export type FrameNameBounds = {
|
|
668
681
|
x: number;
|
|
669
682
|
y: number;
|
|
@@ -37,3 +37,4 @@ export declare const distanceToLineSegment: <Point extends GlobalPoint | LocalPo
|
|
|
37
37
|
* @returns
|
|
38
38
|
*/
|
|
39
39
|
export declare function lineSegmentIntersectionPoints<Point extends GlobalPoint | LocalPoint>(l: LineSegment<Point>, s: LineSegment<Point>, threshold?: number): Point | null;
|
|
40
|
+
export declare function lineSegmentsDistance<Point extends GlobalPoint | LocalPoint>(s1: LineSegment<Point>, s2: LineSegment<Point>): number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@excalidraw/math",
|
|
3
|
-
"version": "0.18.0-
|
|
3
|
+
"version": "0.18.0-c141960",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/types/math/src/index.d.ts",
|
|
6
6
|
"main": "./dist/prod/index.js",
|
|
@@ -61,6 +61,6 @@
|
|
|
61
61
|
"build:esm": "rimraf dist && node ../../scripts/buildBase.js && yarn gen:types"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@excalidraw/common": "0.18.0-
|
|
64
|
+
"@excalidraw/common": "0.18.0-c141960"
|
|
65
65
|
}
|
|
66
66
|
}
|