@zsviczian/excalidraw 0.12.0-obsidian-11 → 0.13.0-obsidian-1
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/README.md +68 -14
- package/dist/excalidraw.development.js +1192 -154
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/excalidraw.production.min.js.LICENSE.txt +104 -0
- package/package.json +1 -1
- package/types/actions/actionAddToLibrary.d.ts +12 -9
- package/types/actions/actionAlign.d.ts +18 -6
- package/types/actions/actionBoundText.d.ts +4 -3
- package/types/actions/actionCanvas.d.ts +59 -36
- package/types/actions/actionClipboard.d.ts +20 -15
- package/types/actions/actionDeleteSelected.d.ts +15 -10
- package/types/actions/actionDistribute.d.ts +6 -2
- package/types/actions/actionDuplicateSelection.d.ts +3 -1
- package/types/actions/actionExport.d.ts +62 -37
- package/types/actions/actionFinalize.d.ts +11 -7
- package/types/actions/actionGroup.d.ts +6 -2
- package/types/actions/actionLinearEditor.d.ts +4 -3
- package/types/actions/actionMenu.d.ts +21 -12
- package/types/actions/actionNavigate.d.ts +3 -1
- package/types/actions/actionProperties.d.ts +91 -52
- package/types/actions/actionStyles.d.ts +4 -3
- package/types/actions/actionToggleGridMode.d.ts +4 -3
- package/types/actions/actionToggleLock.d.ts +4 -3
- package/types/actions/actionToggleStats.d.ts +4 -3
- package/types/actions/actionToggleViewMode.d.ts +4 -3
- package/types/actions/actionToggleZenMode.d.ts +4 -3
- package/types/actions/actionZindex.d.ts +12 -4
- package/types/actions/manager.d.ts +1 -1
- package/types/actions/shortcuts.d.ts +1 -1
- package/types/actions/types.d.ts +3 -1
- package/types/appState.d.ts +5 -4
- package/types/bug-issue-template.d.ts +2 -0
- package/types/clients.d.ts +1 -1
- package/types/components/Actions.d.ts +1 -0
- package/types/components/App.d.ts +52 -1
- package/types/components/Avatar.d.ts +1 -1
- package/types/components/CollabButton.d.ts +2 -1
- package/types/components/DialogActionButton.d.ts +10 -0
- package/types/components/EncryptedIcon.d.ts +2 -0
- package/types/components/Footer.d.ts +2 -1
- package/types/components/HelpButton.d.ts +8 -0
- package/types/components/HintViewer.d.ts +3 -2
- package/types/components/ImageExportDialog.d.ts +3 -1
- package/types/components/LayerUI.d.ts +3 -1
- package/types/components/LibraryButton.d.ts +1 -0
- package/types/components/LibraryMenu.d.ts +14 -5
- package/types/components/LibraryMenuBrowseButton.d.ts +7 -0
- package/types/components/LibraryMenuHeaderContent.d.ts +12 -0
- package/types/components/LibraryMenuItems.d.ts +5 -14
- package/types/components/LibraryUnit.d.ts +2 -3
- package/types/components/MenuItem.d.ts +11 -0
- package/types/components/MenuUtils.d.ts +2 -0
- package/types/components/MobileMenu.d.ts +5 -3
- package/types/components/Sidebar/Sidebar.d.ts +73 -0
- package/types/components/Sidebar/SidebarHeader.d.ts +20 -0
- package/types/components/Sidebar/common.d.ts +16 -0
- package/types/components/TopErrorBoundary.d.ts +15 -0
- package/types/components/WelcomeScreen.d.ts +8 -0
- package/types/components/WelcomeScreenDecor.d.ts +6 -0
- package/types/components/hoc/withUpstreamOverride.d.ts +10 -0
- package/types/components/icons.d.ts +83 -124
- package/types/constants.d.ts +1 -0
- package/types/data/restore.d.ts +1 -1
- package/types/data/types.d.ts +16 -1
- package/types/element/Hyperlink.d.ts +7 -4
- package/types/element/index.d.ts +1 -1
- package/types/element/linearElementEditor.d.ts +4 -3
- package/types/element/newElement.d.ts +8 -0
- package/types/element/transformHandles.d.ts +1 -1
- package/types/excalidraw-app/CustomStats.d.ts +9 -0
- package/types/excalidraw-app/app_constants.d.ts +32 -0
- package/types/excalidraw-app/collab/Collab.d.ts +163 -0
- package/types/excalidraw-app/collab/Portal.d.ts +28 -0
- package/types/excalidraw-app/collab/RoomDialog.d.ts +13 -0
- package/types/excalidraw-app/collab/reconciliation.d.ts +10 -0
- package/types/excalidraw-app/components/ExportToExcalidrawPlus.d.ts +9 -0
- package/types/excalidraw-app/components/LanguageList.d.ts +4 -0
- package/types/excalidraw-app/components/icons.d.ts +1 -0
- package/types/excalidraw-app/data/FileManager.d.ts +66 -0
- package/types/excalidraw-app/data/LocalData.d.ts +32 -0
- package/types/excalidraw-app/data/Locker.d.ts +8 -0
- package/types/excalidraw-app/data/firebase.d.ts +25 -0
- package/types/excalidraw-app/data/index.d.ts +186 -0
- package/types/excalidraw-app/data/localStorage.d.ts +112 -0
- package/types/excalidraw-app/data/tabSync.d.ts +9 -0
- package/types/excalidraw-app/index.d.ts +26 -0
- package/types/hooks/useOutsideClick.d.ts +2 -0
- package/types/keys.d.ts +13 -3
- package/types/packages/excalidraw/example/App.d.ts +2 -1
- package/types/packages/excalidraw/example/sidebar/ExampleSidebar.d.ts +5 -0
- package/types/packages/excalidraw/index.d.ts +4 -0
- package/types/packages/utils.d.ts +3 -1
- package/types/renderer/renderScene.d.ts +1 -1
- package/types/scene/scrollbars.d.ts +1 -1
- package/types/scene/types.d.ts +1 -0
- package/types/shapes.d.ts +27 -3
- package/types/types.d.ts +21 -3
|
@@ -8,7 +8,9 @@ export declare const actionChangeViewBackgroundColor: {
|
|
|
8
8
|
appState: any;
|
|
9
9
|
commitToHistory: boolean;
|
|
10
10
|
};
|
|
11
|
-
PanelComponent: ({ elements, appState, updateData }: import("./types").PanelComponentProps
|
|
11
|
+
PanelComponent: ({ elements, appState, updateData }: import("./types").PanelComponentProps & {
|
|
12
|
+
isInHamburgerMenu: boolean;
|
|
13
|
+
}) => JSX.Element;
|
|
12
14
|
} & {
|
|
13
15
|
keyTest?: undefined;
|
|
14
16
|
};
|
|
@@ -51,6 +53,8 @@ export declare const actionClearCanvas: {
|
|
|
51
53
|
elementBackground?: string[] | undefined;
|
|
52
54
|
elementStroke?: string[] | undefined;
|
|
53
55
|
};
|
|
56
|
+
trayModeEnabled: boolean;
|
|
57
|
+
name: string;
|
|
54
58
|
scrollX: number;
|
|
55
59
|
scrollY: number;
|
|
56
60
|
viewBackgroundColor: string;
|
|
@@ -58,6 +62,7 @@ export declare const actionClearCanvas: {
|
|
|
58
62
|
value: NormalizedZoomValue;
|
|
59
63
|
}>;
|
|
60
64
|
shouldCacheIgnoreZoom: boolean;
|
|
65
|
+
showWelcomeScreen: boolean;
|
|
61
66
|
isLoading: boolean;
|
|
62
67
|
errorMessage: string | null;
|
|
63
68
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -87,11 +92,13 @@ export declare const actionClearCanvas: {
|
|
|
87
92
|
currentItemLinearStrokeSharpness: import("../element/types").StrokeSharpness;
|
|
88
93
|
cursorButton: "up" | "down";
|
|
89
94
|
scrolledOutside: boolean;
|
|
90
|
-
name: string;
|
|
91
95
|
isResizing: boolean;
|
|
92
96
|
isRotating: boolean;
|
|
93
97
|
openMenu: "canvas" | "shape" | null;
|
|
94
98
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
99
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
100
|
+
openDialog: "imageExport" | "help" | null;
|
|
101
|
+
isSidebarDocked: boolean;
|
|
95
102
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
96
103
|
selectedElementIds: {
|
|
97
104
|
[id: string]: boolean;
|
|
@@ -99,7 +106,6 @@ export declare const actionClearCanvas: {
|
|
|
99
106
|
previousSelectedElementIds: {
|
|
100
107
|
[id: string]: boolean;
|
|
101
108
|
};
|
|
102
|
-
showHelpDialog: boolean;
|
|
103
109
|
toast: {
|
|
104
110
|
message: string;
|
|
105
111
|
closable?: boolean | undefined;
|
|
@@ -111,20 +117,19 @@ export declare const actionClearCanvas: {
|
|
|
111
117
|
[groupId: string]: boolean;
|
|
112
118
|
};
|
|
113
119
|
editingGroupId: string | null;
|
|
114
|
-
isLibraryOpen: boolean;
|
|
115
|
-
isLibraryMenuDocked: boolean;
|
|
116
120
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
117
121
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
118
122
|
currentChartType: import("../element/types").ChartType;
|
|
119
123
|
pendingImageElementId: string | null;
|
|
120
124
|
showHyperlinkPopup: false | "info" | "editor";
|
|
121
125
|
linkOpacity: number;
|
|
122
|
-
trayModeEnabled: boolean;
|
|
123
126
|
selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
|
|
124
127
|
};
|
|
125
128
|
commitToHistory: true;
|
|
126
129
|
};
|
|
127
|
-
PanelComponent: ({ updateData }: import("./types").PanelComponentProps
|
|
130
|
+
PanelComponent: ({ updateData }: import("./types").PanelComponentProps & {
|
|
131
|
+
isInHamburgerMenu: boolean;
|
|
132
|
+
}) => JSX.Element;
|
|
128
133
|
} & {
|
|
129
134
|
keyTest?: undefined;
|
|
130
135
|
};
|
|
@@ -140,6 +145,7 @@ export declare const actionZoomIn: {
|
|
|
140
145
|
zoom: {
|
|
141
146
|
value: NormalizedZoomValue;
|
|
142
147
|
};
|
|
148
|
+
showWelcomeScreen: boolean;
|
|
143
149
|
isLoading: boolean;
|
|
144
150
|
errorMessage: string | null;
|
|
145
151
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -190,6 +196,9 @@ export declare const actionZoomIn: {
|
|
|
190
196
|
isRotating: boolean;
|
|
191
197
|
openMenu: "canvas" | "shape" | null;
|
|
192
198
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
199
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
200
|
+
openDialog: "imageExport" | "help" | null;
|
|
201
|
+
isSidebarDocked: boolean;
|
|
193
202
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
194
203
|
selectedElementIds: {
|
|
195
204
|
[id: string]: boolean;
|
|
@@ -198,7 +207,6 @@ export declare const actionZoomIn: {
|
|
|
198
207
|
[id: string]: boolean;
|
|
199
208
|
};
|
|
200
209
|
shouldCacheIgnoreZoom: boolean;
|
|
201
|
-
showHelpDialog: boolean;
|
|
202
210
|
toast: {
|
|
203
211
|
message: string;
|
|
204
212
|
closable?: boolean | undefined;
|
|
@@ -216,8 +224,6 @@ export declare const actionZoomIn: {
|
|
|
216
224
|
height: number;
|
|
217
225
|
offsetTop: number;
|
|
218
226
|
offsetLeft: number;
|
|
219
|
-
isLibraryOpen: boolean;
|
|
220
|
-
isLibraryMenuDocked: boolean;
|
|
221
227
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
222
228
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
223
229
|
showStats: boolean;
|
|
@@ -242,7 +248,9 @@ export declare const actionZoomIn: {
|
|
|
242
248
|
};
|
|
243
249
|
commitToHistory: false;
|
|
244
250
|
};
|
|
245
|
-
PanelComponent: ({ updateData }: import("./types").PanelComponentProps
|
|
251
|
+
PanelComponent: ({ updateData }: import("./types").PanelComponentProps & {
|
|
252
|
+
isInHamburgerMenu: boolean;
|
|
253
|
+
}) => JSX.Element;
|
|
246
254
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
247
255
|
} & {
|
|
248
256
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
@@ -259,6 +267,7 @@ export declare const actionZoomOut: {
|
|
|
259
267
|
zoom: {
|
|
260
268
|
value: NormalizedZoomValue;
|
|
261
269
|
};
|
|
270
|
+
showWelcomeScreen: boolean;
|
|
262
271
|
isLoading: boolean;
|
|
263
272
|
errorMessage: string | null;
|
|
264
273
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -309,6 +318,9 @@ export declare const actionZoomOut: {
|
|
|
309
318
|
isRotating: boolean;
|
|
310
319
|
openMenu: "canvas" | "shape" | null;
|
|
311
320
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
321
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
322
|
+
openDialog: "imageExport" | "help" | null;
|
|
323
|
+
isSidebarDocked: boolean;
|
|
312
324
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
313
325
|
selectedElementIds: {
|
|
314
326
|
[id: string]: boolean;
|
|
@@ -317,7 +329,6 @@ export declare const actionZoomOut: {
|
|
|
317
329
|
[id: string]: boolean;
|
|
318
330
|
};
|
|
319
331
|
shouldCacheIgnoreZoom: boolean;
|
|
320
|
-
showHelpDialog: boolean;
|
|
321
332
|
toast: {
|
|
322
333
|
message: string;
|
|
323
334
|
closable?: boolean | undefined;
|
|
@@ -335,8 +346,6 @@ export declare const actionZoomOut: {
|
|
|
335
346
|
height: number;
|
|
336
347
|
offsetTop: number;
|
|
337
348
|
offsetLeft: number;
|
|
338
|
-
isLibraryOpen: boolean;
|
|
339
|
-
isLibraryMenuDocked: boolean;
|
|
340
349
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
341
350
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
342
351
|
showStats: boolean;
|
|
@@ -361,7 +370,9 @@ export declare const actionZoomOut: {
|
|
|
361
370
|
};
|
|
362
371
|
commitToHistory: false;
|
|
363
372
|
};
|
|
364
|
-
PanelComponent: ({ updateData }: import("./types").PanelComponentProps
|
|
373
|
+
PanelComponent: ({ updateData }: import("./types").PanelComponentProps & {
|
|
374
|
+
isInHamburgerMenu: boolean;
|
|
375
|
+
}) => JSX.Element;
|
|
365
376
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
366
377
|
} & {
|
|
367
378
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
@@ -378,6 +389,7 @@ export declare const actionResetZoom: {
|
|
|
378
389
|
zoom: {
|
|
379
390
|
value: NormalizedZoomValue;
|
|
380
391
|
};
|
|
392
|
+
showWelcomeScreen: boolean;
|
|
381
393
|
isLoading: boolean;
|
|
382
394
|
errorMessage: string | null;
|
|
383
395
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -428,6 +440,9 @@ export declare const actionResetZoom: {
|
|
|
428
440
|
isRotating: boolean;
|
|
429
441
|
openMenu: "canvas" | "shape" | null;
|
|
430
442
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
443
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
444
|
+
openDialog: "imageExport" | "help" | null;
|
|
445
|
+
isSidebarDocked: boolean;
|
|
431
446
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
432
447
|
selectedElementIds: {
|
|
433
448
|
[id: string]: boolean;
|
|
@@ -436,7 +451,6 @@ export declare const actionResetZoom: {
|
|
|
436
451
|
[id: string]: boolean;
|
|
437
452
|
};
|
|
438
453
|
shouldCacheIgnoreZoom: boolean;
|
|
439
|
-
showHelpDialog: boolean;
|
|
440
454
|
toast: {
|
|
441
455
|
message: string;
|
|
442
456
|
closable?: boolean | undefined;
|
|
@@ -454,8 +468,6 @@ export declare const actionResetZoom: {
|
|
|
454
468
|
height: number;
|
|
455
469
|
offsetTop: number;
|
|
456
470
|
offsetLeft: number;
|
|
457
|
-
isLibraryOpen: boolean;
|
|
458
|
-
isLibraryMenuDocked: boolean;
|
|
459
471
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
460
472
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
461
473
|
showStats: boolean;
|
|
@@ -480,7 +492,9 @@ export declare const actionResetZoom: {
|
|
|
480
492
|
};
|
|
481
493
|
commitToHistory: false;
|
|
482
494
|
};
|
|
483
|
-
PanelComponent: ({ updateData, appState }: import("./types").PanelComponentProps
|
|
495
|
+
PanelComponent: ({ updateData, appState }: import("./types").PanelComponentProps & {
|
|
496
|
+
isInHamburgerMenu: boolean;
|
|
497
|
+
}) => JSX.Element;
|
|
484
498
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
485
499
|
} & {
|
|
486
500
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
@@ -492,6 +506,7 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
|
|
|
492
506
|
};
|
|
493
507
|
scrollX: number;
|
|
494
508
|
scrollY: number;
|
|
509
|
+
showWelcomeScreen: boolean;
|
|
495
510
|
isLoading: boolean;
|
|
496
511
|
errorMessage: string | null;
|
|
497
512
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -542,6 +557,9 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
|
|
|
542
557
|
isRotating: boolean;
|
|
543
558
|
openMenu: "canvas" | "shape" | null;
|
|
544
559
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
560
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
561
|
+
openDialog: "imageExport" | "help" | null;
|
|
562
|
+
isSidebarDocked: boolean;
|
|
545
563
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
546
564
|
selectedElementIds: {
|
|
547
565
|
[id: string]: boolean;
|
|
@@ -550,7 +568,6 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
|
|
|
550
568
|
[id: string]: boolean;
|
|
551
569
|
};
|
|
552
570
|
shouldCacheIgnoreZoom: boolean;
|
|
553
|
-
showHelpDialog: boolean;
|
|
554
571
|
toast: {
|
|
555
572
|
message: string;
|
|
556
573
|
closable?: boolean | undefined;
|
|
@@ -568,8 +585,6 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
|
|
|
568
585
|
height: number;
|
|
569
586
|
offsetTop: number;
|
|
570
587
|
offsetLeft: number;
|
|
571
|
-
isLibraryOpen: boolean;
|
|
572
|
-
isLibraryMenuDocked: boolean;
|
|
573
588
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
574
589
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
575
590
|
showStats: boolean;
|
|
@@ -606,6 +621,7 @@ export declare const actionZoomToSelected: {
|
|
|
606
621
|
};
|
|
607
622
|
scrollX: number;
|
|
608
623
|
scrollY: number;
|
|
624
|
+
showWelcomeScreen: boolean;
|
|
609
625
|
isLoading: boolean;
|
|
610
626
|
errorMessage: string | null;
|
|
611
627
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -656,6 +672,9 @@ export declare const actionZoomToSelected: {
|
|
|
656
672
|
isRotating: boolean;
|
|
657
673
|
openMenu: "canvas" | "shape" | null;
|
|
658
674
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
675
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
676
|
+
openDialog: "imageExport" | "help" | null;
|
|
677
|
+
isSidebarDocked: boolean;
|
|
659
678
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
660
679
|
selectedElementIds: {
|
|
661
680
|
[id: string]: boolean;
|
|
@@ -664,7 +683,6 @@ export declare const actionZoomToSelected: {
|
|
|
664
683
|
[id: string]: boolean;
|
|
665
684
|
};
|
|
666
685
|
shouldCacheIgnoreZoom: boolean;
|
|
667
|
-
showHelpDialog: boolean;
|
|
668
686
|
toast: {
|
|
669
687
|
message: string;
|
|
670
688
|
closable?: boolean | undefined;
|
|
@@ -682,8 +700,6 @@ export declare const actionZoomToSelected: {
|
|
|
682
700
|
height: number;
|
|
683
701
|
offsetTop: number;
|
|
684
702
|
offsetLeft: number;
|
|
685
|
-
isLibraryOpen: boolean;
|
|
686
|
-
isLibraryMenuDocked: boolean;
|
|
687
703
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
688
704
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
689
705
|
showStats: boolean;
|
|
@@ -724,6 +740,7 @@ export declare const actionZoomToFit: {
|
|
|
724
740
|
};
|
|
725
741
|
scrollX: number;
|
|
726
742
|
scrollY: number;
|
|
743
|
+
showWelcomeScreen: boolean;
|
|
727
744
|
isLoading: boolean;
|
|
728
745
|
errorMessage: string | null;
|
|
729
746
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -774,6 +791,9 @@ export declare const actionZoomToFit: {
|
|
|
774
791
|
isRotating: boolean;
|
|
775
792
|
openMenu: "canvas" | "shape" | null;
|
|
776
793
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
794
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
795
|
+
openDialog: "imageExport" | "help" | null;
|
|
796
|
+
isSidebarDocked: boolean;
|
|
777
797
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
778
798
|
selectedElementIds: {
|
|
779
799
|
[id: string]: boolean;
|
|
@@ -782,7 +802,6 @@ export declare const actionZoomToFit: {
|
|
|
782
802
|
[id: string]: boolean;
|
|
783
803
|
};
|
|
784
804
|
shouldCacheIgnoreZoom: boolean;
|
|
785
|
-
showHelpDialog: boolean;
|
|
786
805
|
toast: {
|
|
787
806
|
message: string;
|
|
788
807
|
closable?: boolean | undefined;
|
|
@@ -800,8 +819,6 @@ export declare const actionZoomToFit: {
|
|
|
800
819
|
height: number;
|
|
801
820
|
offsetTop: number;
|
|
802
821
|
offsetLeft: number;
|
|
803
|
-
isLibraryOpen: boolean;
|
|
804
|
-
isLibraryMenuDocked: boolean;
|
|
805
822
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
806
823
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
807
824
|
showStats: boolean;
|
|
@@ -838,6 +855,7 @@ export declare const actionToggleTheme: {
|
|
|
838
855
|
perform: (_: readonly ExcalidrawElement[], appState: Readonly<AppState>, value: any, app: import("../types").AppClassProperties) => {
|
|
839
856
|
appState: {
|
|
840
857
|
theme: any;
|
|
858
|
+
showWelcomeScreen: boolean;
|
|
841
859
|
isLoading: boolean;
|
|
842
860
|
errorMessage: string | null;
|
|
843
861
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -893,6 +911,9 @@ export declare const actionToggleTheme: {
|
|
|
893
911
|
}>;
|
|
894
912
|
openMenu: "canvas" | "shape" | null;
|
|
895
913
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
914
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
915
|
+
openDialog: "imageExport" | "help" | null;
|
|
916
|
+
isSidebarDocked: boolean;
|
|
896
917
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
897
918
|
selectedElementIds: {
|
|
898
919
|
[id: string]: boolean;
|
|
@@ -901,7 +922,6 @@ export declare const actionToggleTheme: {
|
|
|
901
922
|
[id: string]: boolean;
|
|
902
923
|
};
|
|
903
924
|
shouldCacheIgnoreZoom: boolean;
|
|
904
|
-
showHelpDialog: boolean;
|
|
905
925
|
toast: {
|
|
906
926
|
message: string;
|
|
907
927
|
closable?: boolean | undefined;
|
|
@@ -918,8 +938,6 @@ export declare const actionToggleTheme: {
|
|
|
918
938
|
height: number;
|
|
919
939
|
offsetTop: number;
|
|
920
940
|
offsetLeft: number;
|
|
921
|
-
isLibraryOpen: boolean;
|
|
922
|
-
isLibraryMenuDocked: boolean;
|
|
923
941
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
924
942
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
925
943
|
showStats: boolean;
|
|
@@ -944,7 +962,9 @@ export declare const actionToggleTheme: {
|
|
|
944
962
|
};
|
|
945
963
|
commitToHistory: false;
|
|
946
964
|
};
|
|
947
|
-
PanelComponent: ({ appState, updateData }: import("./types").PanelComponentProps
|
|
965
|
+
PanelComponent: ({ appState, updateData }: import("./types").PanelComponentProps & {
|
|
966
|
+
isInHamburgerMenu: boolean;
|
|
967
|
+
}) => JSX.Element;
|
|
948
968
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
949
969
|
} & {
|
|
950
970
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
@@ -969,6 +989,7 @@ export declare const actionErase: {
|
|
|
969
989
|
lastActiveToolBeforeEraser: import("../types").LastActiveToolBeforeEraser;
|
|
970
990
|
locked: boolean;
|
|
971
991
|
};
|
|
992
|
+
showWelcomeScreen: boolean;
|
|
972
993
|
isLoading: boolean;
|
|
973
994
|
errorMessage: string | null;
|
|
974
995
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -1013,12 +1034,14 @@ export declare const actionErase: {
|
|
|
1013
1034
|
}>;
|
|
1014
1035
|
openMenu: "canvas" | "shape" | null;
|
|
1015
1036
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
1037
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
1038
|
+
openDialog: "imageExport" | "help" | null;
|
|
1039
|
+
isSidebarDocked: boolean;
|
|
1016
1040
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1017
1041
|
previousSelectedElementIds: {
|
|
1018
1042
|
[id: string]: boolean;
|
|
1019
1043
|
};
|
|
1020
1044
|
shouldCacheIgnoreZoom: boolean;
|
|
1021
|
-
showHelpDialog: boolean;
|
|
1022
1045
|
toast: {
|
|
1023
1046
|
message: string;
|
|
1024
1047
|
closable?: boolean | undefined;
|
|
@@ -1033,8 +1056,6 @@ export declare const actionErase: {
|
|
|
1033
1056
|
height: number;
|
|
1034
1057
|
offsetTop: number;
|
|
1035
1058
|
offsetLeft: number;
|
|
1036
|
-
isLibraryOpen: boolean;
|
|
1037
|
-
isLibraryMenuDocked: boolean;
|
|
1038
1059
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
1039
1060
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
1040
1061
|
showStats: boolean;
|
|
@@ -1060,7 +1081,9 @@ export declare const actionErase: {
|
|
|
1060
1081
|
commitToHistory: true;
|
|
1061
1082
|
};
|
|
1062
1083
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
1063
|
-
PanelComponent: ({ elements, appState, updateData, data }: import("./types").PanelComponentProps
|
|
1084
|
+
PanelComponent: ({ elements, appState, updateData, data }: import("./types").PanelComponentProps & {
|
|
1085
|
+
isInHamburgerMenu: boolean;
|
|
1086
|
+
}) => JSX.Element;
|
|
1064
1087
|
} & {
|
|
1065
1088
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
1066
1089
|
};
|
|
@@ -21,6 +21,7 @@ export declare const actionCut: {
|
|
|
21
21
|
elements: import("../element/types").ExcalidrawElement[];
|
|
22
22
|
appState: {
|
|
23
23
|
editingLinearElement: null;
|
|
24
|
+
showWelcomeScreen: boolean;
|
|
24
25
|
isLoading: boolean;
|
|
25
26
|
errorMessage: string | null;
|
|
26
27
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -75,6 +76,9 @@ export declare const actionCut: {
|
|
|
75
76
|
}>;
|
|
76
77
|
openMenu: "canvas" | "shape" | null;
|
|
77
78
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
79
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
80
|
+
openDialog: "imageExport" | "help" | null;
|
|
81
|
+
isSidebarDocked: boolean;
|
|
78
82
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
79
83
|
selectedElementIds: {
|
|
80
84
|
[id: string]: boolean;
|
|
@@ -83,7 +87,6 @@ export declare const actionCut: {
|
|
|
83
87
|
[id: string]: boolean;
|
|
84
88
|
};
|
|
85
89
|
shouldCacheIgnoreZoom: boolean;
|
|
86
|
-
showHelpDialog: boolean;
|
|
87
90
|
toast: {
|
|
88
91
|
message: string;
|
|
89
92
|
closable?: boolean | undefined;
|
|
@@ -101,8 +104,6 @@ export declare const actionCut: {
|
|
|
101
104
|
height: number;
|
|
102
105
|
offsetTop: number;
|
|
103
106
|
offsetLeft: number;
|
|
104
|
-
isLibraryOpen: boolean;
|
|
105
|
-
isLibraryMenuDocked: boolean;
|
|
106
107
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
107
108
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
108
109
|
showStats: boolean;
|
|
@@ -149,6 +150,7 @@ export declare const actionCut: {
|
|
|
149
150
|
hoverPointIndex: number;
|
|
150
151
|
segmentMidPointHoveredCoords: readonly [number, number] | null;
|
|
151
152
|
};
|
|
153
|
+
showWelcomeScreen: boolean;
|
|
152
154
|
isLoading: boolean;
|
|
153
155
|
errorMessage: string | null;
|
|
154
156
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -203,6 +205,9 @@ export declare const actionCut: {
|
|
|
203
205
|
}>;
|
|
204
206
|
openMenu: "canvas" | "shape" | null;
|
|
205
207
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
208
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
209
|
+
openDialog: "imageExport" | "help" | null;
|
|
210
|
+
isSidebarDocked: boolean;
|
|
206
211
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
207
212
|
selectedElementIds: {
|
|
208
213
|
[id: string]: boolean;
|
|
@@ -211,7 +216,6 @@ export declare const actionCut: {
|
|
|
211
216
|
[id: string]: boolean;
|
|
212
217
|
};
|
|
213
218
|
shouldCacheIgnoreZoom: boolean;
|
|
214
|
-
showHelpDialog: boolean;
|
|
215
219
|
toast: {
|
|
216
220
|
message: string;
|
|
217
221
|
closable?: boolean | undefined;
|
|
@@ -229,8 +233,6 @@ export declare const actionCut: {
|
|
|
229
233
|
height: number;
|
|
230
234
|
offsetTop: number;
|
|
231
235
|
offsetLeft: number;
|
|
232
|
-
isLibraryOpen: boolean;
|
|
233
|
-
isLibraryMenuDocked: boolean;
|
|
234
236
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
235
237
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
236
238
|
showStats: boolean;
|
|
@@ -270,6 +272,7 @@ export declare const actionCut: {
|
|
|
270
272
|
};
|
|
271
273
|
multiElement: null;
|
|
272
274
|
selectedElementIds: {};
|
|
275
|
+
showWelcomeScreen: boolean;
|
|
273
276
|
isLoading: boolean;
|
|
274
277
|
errorMessage: string | null;
|
|
275
278
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -313,12 +316,14 @@ export declare const actionCut: {
|
|
|
313
316
|
}>;
|
|
314
317
|
openMenu: "canvas" | "shape" | null;
|
|
315
318
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
319
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
320
|
+
openDialog: "imageExport" | "help" | null;
|
|
321
|
+
isSidebarDocked: boolean;
|
|
316
322
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
317
323
|
previousSelectedElementIds: {
|
|
318
324
|
[id: string]: boolean;
|
|
319
325
|
};
|
|
320
326
|
shouldCacheIgnoreZoom: boolean;
|
|
321
|
-
showHelpDialog: boolean;
|
|
322
327
|
toast: {
|
|
323
328
|
message: string;
|
|
324
329
|
closable?: boolean | undefined;
|
|
@@ -336,8 +341,6 @@ export declare const actionCut: {
|
|
|
336
341
|
height: number;
|
|
337
342
|
offsetTop: number;
|
|
338
343
|
offsetLeft: number;
|
|
339
|
-
isLibraryOpen: boolean;
|
|
340
|
-
isLibraryMenuDocked: boolean;
|
|
341
344
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
342
345
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
343
346
|
showStats: boolean;
|
|
@@ -378,6 +381,7 @@ export declare const actionCopyAsSvg: {
|
|
|
378
381
|
} | {
|
|
379
382
|
appState: {
|
|
380
383
|
errorMessage: any;
|
|
384
|
+
showWelcomeScreen: boolean;
|
|
381
385
|
isLoading: boolean;
|
|
382
386
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
383
387
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -432,6 +436,9 @@ export declare const actionCopyAsSvg: {
|
|
|
432
436
|
}>;
|
|
433
437
|
openMenu: "canvas" | "shape" | null;
|
|
434
438
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
439
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
440
|
+
openDialog: "imageExport" | "help" | null;
|
|
441
|
+
isSidebarDocked: boolean;
|
|
435
442
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
436
443
|
selectedElementIds: {
|
|
437
444
|
[id: string]: boolean;
|
|
@@ -440,7 +447,6 @@ export declare const actionCopyAsSvg: {
|
|
|
440
447
|
[id: string]: boolean;
|
|
441
448
|
};
|
|
442
449
|
shouldCacheIgnoreZoom: boolean;
|
|
443
|
-
showHelpDialog: boolean;
|
|
444
450
|
toast: {
|
|
445
451
|
message: string;
|
|
446
452
|
closable?: boolean | undefined;
|
|
@@ -458,8 +464,6 @@ export declare const actionCopyAsSvg: {
|
|
|
458
464
|
height: number;
|
|
459
465
|
offsetTop: number;
|
|
460
466
|
offsetLeft: number;
|
|
461
|
-
isLibraryOpen: boolean;
|
|
462
|
-
isLibraryMenuDocked: boolean;
|
|
463
467
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
464
468
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
465
469
|
showStats: boolean;
|
|
@@ -499,6 +503,7 @@ export declare const actionCopyAsPng: {
|
|
|
499
503
|
} | {
|
|
500
504
|
appState: {
|
|
501
505
|
errorMessage: any;
|
|
506
|
+
showWelcomeScreen: boolean;
|
|
502
507
|
isLoading: boolean;
|
|
503
508
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
504
509
|
resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -553,6 +558,9 @@ export declare const actionCopyAsPng: {
|
|
|
553
558
|
}>;
|
|
554
559
|
openMenu: "canvas" | "shape" | null;
|
|
555
560
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
561
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
562
|
+
openDialog: "imageExport" | "help" | null;
|
|
563
|
+
isSidebarDocked: boolean;
|
|
556
564
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
557
565
|
selectedElementIds: {
|
|
558
566
|
[id: string]: boolean;
|
|
@@ -561,7 +569,6 @@ export declare const actionCopyAsPng: {
|
|
|
561
569
|
[id: string]: boolean;
|
|
562
570
|
};
|
|
563
571
|
shouldCacheIgnoreZoom: boolean;
|
|
564
|
-
showHelpDialog: boolean;
|
|
565
572
|
toast: {
|
|
566
573
|
message: string;
|
|
567
574
|
closable?: boolean | undefined;
|
|
@@ -579,8 +586,6 @@ export declare const actionCopyAsPng: {
|
|
|
579
586
|
height: number;
|
|
580
587
|
offsetTop: number;
|
|
581
588
|
offsetLeft: number;
|
|
582
|
-
isLibraryOpen: boolean;
|
|
583
|
-
isLibraryMenuDocked: boolean;
|
|
584
589
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
585
590
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
586
591
|
showStats: boolean;
|
|
@@ -12,6 +12,7 @@ export declare const actionDeleteSelected: {
|
|
|
12
12
|
elements: ExcalidrawElement[];
|
|
13
13
|
appState: {
|
|
14
14
|
editingLinearElement: null;
|
|
15
|
+
showWelcomeScreen: boolean;
|
|
15
16
|
isLoading: boolean;
|
|
16
17
|
errorMessage: string | null;
|
|
17
18
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -66,6 +67,9 @@ export declare const actionDeleteSelected: {
|
|
|
66
67
|
}>;
|
|
67
68
|
openMenu: "canvas" | "shape" | null;
|
|
68
69
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
70
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
71
|
+
openDialog: "imageExport" | "help" | null;
|
|
72
|
+
isSidebarDocked: boolean;
|
|
69
73
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
70
74
|
selectedElementIds: {
|
|
71
75
|
[id: string]: boolean;
|
|
@@ -74,7 +78,6 @@ export declare const actionDeleteSelected: {
|
|
|
74
78
|
[id: string]: boolean;
|
|
75
79
|
};
|
|
76
80
|
shouldCacheIgnoreZoom: boolean;
|
|
77
|
-
showHelpDialog: boolean;
|
|
78
81
|
toast: {
|
|
79
82
|
message: string;
|
|
80
83
|
closable?: boolean | undefined;
|
|
@@ -92,8 +95,6 @@ export declare const actionDeleteSelected: {
|
|
|
92
95
|
height: number;
|
|
93
96
|
offsetTop: number;
|
|
94
97
|
offsetLeft: number;
|
|
95
|
-
isLibraryOpen: boolean;
|
|
96
|
-
isLibraryMenuDocked: boolean;
|
|
97
98
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
98
99
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
99
100
|
showStats: boolean;
|
|
@@ -140,6 +141,7 @@ export declare const actionDeleteSelected: {
|
|
|
140
141
|
hoverPointIndex: number;
|
|
141
142
|
segmentMidPointHoveredCoords: readonly [number, number] | null;
|
|
142
143
|
};
|
|
144
|
+
showWelcomeScreen: boolean;
|
|
143
145
|
isLoading: boolean;
|
|
144
146
|
errorMessage: string | null;
|
|
145
147
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -194,6 +196,9 @@ export declare const actionDeleteSelected: {
|
|
|
194
196
|
}>;
|
|
195
197
|
openMenu: "canvas" | "shape" | null;
|
|
196
198
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
199
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
200
|
+
openDialog: "imageExport" | "help" | null;
|
|
201
|
+
isSidebarDocked: boolean;
|
|
197
202
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
198
203
|
selectedElementIds: {
|
|
199
204
|
[id: string]: boolean;
|
|
@@ -202,7 +207,6 @@ export declare const actionDeleteSelected: {
|
|
|
202
207
|
[id: string]: boolean;
|
|
203
208
|
};
|
|
204
209
|
shouldCacheIgnoreZoom: boolean;
|
|
205
|
-
showHelpDialog: boolean;
|
|
206
210
|
toast: {
|
|
207
211
|
message: string;
|
|
208
212
|
closable?: boolean | undefined;
|
|
@@ -220,8 +224,6 @@ export declare const actionDeleteSelected: {
|
|
|
220
224
|
height: number;
|
|
221
225
|
offsetTop: number;
|
|
222
226
|
offsetLeft: number;
|
|
223
|
-
isLibraryOpen: boolean;
|
|
224
|
-
isLibraryMenuDocked: boolean;
|
|
225
227
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
226
228
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
227
229
|
showStats: boolean;
|
|
@@ -261,6 +263,7 @@ export declare const actionDeleteSelected: {
|
|
|
261
263
|
};
|
|
262
264
|
multiElement: null;
|
|
263
265
|
selectedElementIds: {};
|
|
266
|
+
showWelcomeScreen: boolean;
|
|
264
267
|
isLoading: boolean;
|
|
265
268
|
errorMessage: string | null;
|
|
266
269
|
draggingElement: import("../element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -304,12 +307,14 @@ export declare const actionDeleteSelected: {
|
|
|
304
307
|
}>;
|
|
305
308
|
openMenu: "canvas" | "shape" | null;
|
|
306
309
|
openPopup: "canvasColorPicker" | "backgroundColorPicker" | "strokeColorPicker" | null;
|
|
310
|
+
openSidebar: "library" | "customSidebar" | null;
|
|
311
|
+
openDialog: "imageExport" | "help" | null;
|
|
312
|
+
isSidebarDocked: boolean;
|
|
307
313
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
308
314
|
previousSelectedElementIds: {
|
|
309
315
|
[id: string]: boolean;
|
|
310
316
|
};
|
|
311
317
|
shouldCacheIgnoreZoom: boolean;
|
|
312
|
-
showHelpDialog: boolean;
|
|
313
318
|
toast: {
|
|
314
319
|
message: string;
|
|
315
320
|
closable?: boolean | undefined;
|
|
@@ -327,8 +332,6 @@ export declare const actionDeleteSelected: {
|
|
|
327
332
|
height: number;
|
|
328
333
|
offsetTop: number;
|
|
329
334
|
offsetLeft: number;
|
|
330
|
-
isLibraryOpen: boolean;
|
|
331
|
-
isLibraryMenuDocked: boolean;
|
|
332
335
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
333
336
|
collaborators: Map<string, import("../types").Collaborator>;
|
|
334
337
|
showStats: boolean;
|
|
@@ -355,7 +358,9 @@ export declare const actionDeleteSelected: {
|
|
|
355
358
|
};
|
|
356
359
|
contextItemLabel: string;
|
|
357
360
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
358
|
-
PanelComponent: ({ elements, appState, updateData }: import("./types").PanelComponentProps
|
|
361
|
+
PanelComponent: ({ elements, appState, updateData }: import("./types").PanelComponentProps & {
|
|
362
|
+
isInHamburgerMenu: boolean;
|
|
363
|
+
}) => JSX.Element;
|
|
359
364
|
} & {
|
|
360
365
|
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
361
366
|
};
|