@excalidraw/excalidraw 0.18.0-835eb8d → 0.18.0-8608d7b
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-N4PQJPAH.js → chunk-YMRX7R7U.js} +8 -3
- package/dist/dev/chunk-YMRX7R7U.js.map +7 -0
- package/dist/dev/data/{image-RT6RLBUE.js → image-L23D26XS.js} +2 -2
- package/dist/dev/index.css +272 -84
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +2930 -2161
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/chunk-HT4FKTIQ.js +4 -0
- package/dist/prod/data/{image-HPGPBQV2.js → image-NWF7UX55.js} +1 -1
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +20 -20
- package/dist/types/common/src/constants.d.ts +3 -0
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +15 -3
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +10 -2
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +65 -13
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +30 -6
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +15 -3
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +10 -2
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionExport.d.ts +45 -9
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -2
- package/dist/types/excalidraw/actions/actionFrame.d.ts +20 -4
- package/dist/types/excalidraw/actions/actionGroup.d.ts +10 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionLink.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionMenu.d.ts +15 -3
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +10 -2
- package/dist/types/excalidraw/actions/actionProperties.d.ts +76 -16
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionStyles.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +5 -1
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +5 -1
- package/dist/types/excalidraw/appState.d.ts +4 -1
- package/dist/types/excalidraw/components/Actions.d.ts +9 -2
- package/dist/types/excalidraw/components/App.d.ts +8 -3
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +1 -1
- 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/ExcalidrawLogo.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +2 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +2 -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/TTDDialog/TTDDialogTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
- 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 +0 -1
- package/dist/types/excalidraw/types.d.ts +7 -2
- package/package.json +4 -4
- package/dist/dev/chunk-N4PQJPAH.js.map +0 -7
- package/dist/prod/chunk-SVEJI6WL.js +0 -4
- /package/dist/dev/data/{image-RT6RLBUE.js.map → image-L23D26XS.js.map} +0 -0
|
@@ -42,6 +42,10 @@ export declare const actionChangeProjectName: {
|
|
|
42
42
|
locked: boolean;
|
|
43
43
|
fromSelection: boolean;
|
|
44
44
|
} & import("../types").ActiveTool;
|
|
45
|
+
preferredSelectionTool: {
|
|
46
|
+
type: "selection" | "lasso";
|
|
47
|
+
initialized: boolean;
|
|
48
|
+
};
|
|
45
49
|
penMode: boolean;
|
|
46
50
|
penDetected: boolean;
|
|
47
51
|
exportBackground: boolean;
|
|
@@ -175,7 +179,7 @@ export declare const actionChangeProjectName: {
|
|
|
175
179
|
lockedMultiSelections: {
|
|
176
180
|
[groupId: string]: true;
|
|
177
181
|
};
|
|
178
|
-
stylesPanelMode: "compact" | "full";
|
|
182
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
179
183
|
};
|
|
180
184
|
captureUpdate: "EVENTUALLY";
|
|
181
185
|
};
|
|
@@ -227,6 +231,10 @@ export declare const actionChangeExportScale: {
|
|
|
227
231
|
locked: boolean;
|
|
228
232
|
fromSelection: boolean;
|
|
229
233
|
} & import("../types").ActiveTool;
|
|
234
|
+
preferredSelectionTool: {
|
|
235
|
+
type: "selection" | "lasso";
|
|
236
|
+
initialized: boolean;
|
|
237
|
+
};
|
|
230
238
|
penMode: boolean;
|
|
231
239
|
penDetected: boolean;
|
|
232
240
|
exportBackground: boolean;
|
|
@@ -360,7 +368,7 @@ export declare const actionChangeExportScale: {
|
|
|
360
368
|
lockedMultiSelections: {
|
|
361
369
|
[groupId: string]: true;
|
|
362
370
|
};
|
|
363
|
-
stylesPanelMode: "compact" | "full";
|
|
371
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
364
372
|
};
|
|
365
373
|
captureUpdate: "EVENTUALLY";
|
|
366
374
|
};
|
|
@@ -412,6 +420,10 @@ export declare const actionChangeExportBackground: {
|
|
|
412
420
|
locked: boolean;
|
|
413
421
|
fromSelection: boolean;
|
|
414
422
|
} & import("../types").ActiveTool;
|
|
423
|
+
preferredSelectionTool: {
|
|
424
|
+
type: "selection" | "lasso";
|
|
425
|
+
initialized: boolean;
|
|
426
|
+
};
|
|
415
427
|
penMode: boolean;
|
|
416
428
|
penDetected: boolean;
|
|
417
429
|
exportEmbedScene: boolean;
|
|
@@ -545,7 +557,7 @@ export declare const actionChangeExportBackground: {
|
|
|
545
557
|
lockedMultiSelections: {
|
|
546
558
|
[groupId: string]: true;
|
|
547
559
|
};
|
|
548
|
-
stylesPanelMode: "compact" | "full";
|
|
560
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
549
561
|
};
|
|
550
562
|
captureUpdate: "EVENTUALLY";
|
|
551
563
|
};
|
|
@@ -597,6 +609,10 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
597
609
|
locked: boolean;
|
|
598
610
|
fromSelection: boolean;
|
|
599
611
|
} & import("../types").ActiveTool;
|
|
612
|
+
preferredSelectionTool: {
|
|
613
|
+
type: "selection" | "lasso";
|
|
614
|
+
initialized: boolean;
|
|
615
|
+
};
|
|
600
616
|
penMode: boolean;
|
|
601
617
|
penDetected: boolean;
|
|
602
618
|
exportBackground: boolean;
|
|
@@ -730,7 +746,7 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
730
746
|
lockedMultiSelections: {
|
|
731
747
|
[groupId: string]: true;
|
|
732
748
|
};
|
|
733
|
-
stylesPanelMode: "compact" | "full";
|
|
749
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
734
750
|
};
|
|
735
751
|
captureUpdate: "EVENTUALLY";
|
|
736
752
|
};
|
|
@@ -787,6 +803,10 @@ export declare const actionSaveToActiveFile: {
|
|
|
787
803
|
locked: boolean;
|
|
788
804
|
fromSelection: boolean;
|
|
789
805
|
} & import("../types").ActiveTool;
|
|
806
|
+
preferredSelectionTool: {
|
|
807
|
+
type: "selection" | "lasso";
|
|
808
|
+
initialized: boolean;
|
|
809
|
+
};
|
|
790
810
|
penMode: boolean;
|
|
791
811
|
penDetected: boolean;
|
|
792
812
|
exportBackground: boolean;
|
|
@@ -915,7 +935,7 @@ export declare const actionSaveToActiveFile: {
|
|
|
915
935
|
lockedMultiSelections: {
|
|
916
936
|
[groupId: string]: true;
|
|
917
937
|
};
|
|
918
|
-
stylesPanelMode: "compact" | "full";
|
|
938
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
919
939
|
};
|
|
920
940
|
} | {
|
|
921
941
|
captureUpdate: "EVENTUALLY";
|
|
@@ -975,6 +995,10 @@ export declare const actionSaveFileToDisk: {
|
|
|
975
995
|
locked: boolean;
|
|
976
996
|
fromSelection: boolean;
|
|
977
997
|
} & import("../types").ActiveTool;
|
|
998
|
+
preferredSelectionTool: {
|
|
999
|
+
type: "selection" | "lasso";
|
|
1000
|
+
initialized: boolean;
|
|
1001
|
+
};
|
|
978
1002
|
penMode: boolean;
|
|
979
1003
|
penDetected: boolean;
|
|
980
1004
|
exportBackground: boolean;
|
|
@@ -1092,7 +1116,7 @@ export declare const actionSaveFileToDisk: {
|
|
|
1092
1116
|
lockedMultiSelections: {
|
|
1093
1117
|
[groupId: string]: true;
|
|
1094
1118
|
};
|
|
1095
|
-
stylesPanelMode: "compact" | "full";
|
|
1119
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
1096
1120
|
};
|
|
1097
1121
|
} | {
|
|
1098
1122
|
captureUpdate: "EVENTUALLY";
|
|
@@ -1205,6 +1229,10 @@ export declare const actionLoadScene: {
|
|
|
1205
1229
|
locked: boolean;
|
|
1206
1230
|
fromSelection: boolean;
|
|
1207
1231
|
} & import("../types").ActiveTool;
|
|
1232
|
+
preferredSelectionTool: {
|
|
1233
|
+
type: "selection" | "lasso";
|
|
1234
|
+
initialized: boolean;
|
|
1235
|
+
};
|
|
1208
1236
|
penMode: boolean;
|
|
1209
1237
|
penDetected: boolean;
|
|
1210
1238
|
exportBackground: boolean;
|
|
@@ -1277,7 +1305,7 @@ export declare const actionLoadScene: {
|
|
|
1277
1305
|
lockedMultiSelections: {
|
|
1278
1306
|
[groupId: string]: true;
|
|
1279
1307
|
};
|
|
1280
|
-
stylesPanelMode: "compact" | "full";
|
|
1308
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
1281
1309
|
};
|
|
1282
1310
|
files: import("../types").BinaryFiles;
|
|
1283
1311
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -1318,6 +1346,10 @@ export declare const actionLoadScene: {
|
|
|
1318
1346
|
locked: boolean;
|
|
1319
1347
|
fromSelection: boolean;
|
|
1320
1348
|
} & import("../types").ActiveTool;
|
|
1349
|
+
preferredSelectionTool: {
|
|
1350
|
+
type: "selection" | "lasso";
|
|
1351
|
+
initialized: boolean;
|
|
1352
|
+
};
|
|
1321
1353
|
penMode: boolean;
|
|
1322
1354
|
penDetected: boolean;
|
|
1323
1355
|
exportBackground: boolean;
|
|
@@ -1452,7 +1484,7 @@ export declare const actionLoadScene: {
|
|
|
1452
1484
|
lockedMultiSelections: {
|
|
1453
1485
|
[groupId: string]: true;
|
|
1454
1486
|
};
|
|
1455
|
-
stylesPanelMode: "compact" | "full";
|
|
1487
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
1456
1488
|
};
|
|
1457
1489
|
files: import("../types").BinaryFiles;
|
|
1458
1490
|
captureUpdate: "EVENTUALLY";
|
|
@@ -1505,6 +1537,10 @@ export declare const actionExportWithDarkMode: {
|
|
|
1505
1537
|
locked: boolean;
|
|
1506
1538
|
fromSelection: boolean;
|
|
1507
1539
|
} & import("../types").ActiveTool;
|
|
1540
|
+
preferredSelectionTool: {
|
|
1541
|
+
type: "selection" | "lasso";
|
|
1542
|
+
initialized: boolean;
|
|
1543
|
+
};
|
|
1508
1544
|
penMode: boolean;
|
|
1509
1545
|
penDetected: boolean;
|
|
1510
1546
|
exportBackground: boolean;
|
|
@@ -1638,7 +1674,7 @@ export declare const actionExportWithDarkMode: {
|
|
|
1638
1674
|
lockedMultiSelections: {
|
|
1639
1675
|
[groupId: string]: true;
|
|
1640
1676
|
};
|
|
1641
|
-
stylesPanelMode: "compact" | "full";
|
|
1677
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
1642
1678
|
};
|
|
1643
1679
|
captureUpdate: "EVENTUALLY";
|
|
1644
1680
|
};
|
|
@@ -85,6 +85,10 @@ export declare const actionFinalize: {
|
|
|
85
85
|
locked: boolean;
|
|
86
86
|
fromSelection: boolean;
|
|
87
87
|
} & import("../types").ActiveTool;
|
|
88
|
+
preferredSelectionTool: {
|
|
89
|
+
type: "selection" | "lasso";
|
|
90
|
+
initialized: boolean;
|
|
91
|
+
};
|
|
88
92
|
penMode: boolean;
|
|
89
93
|
penDetected: boolean;
|
|
90
94
|
exportBackground: boolean;
|
|
@@ -217,7 +221,7 @@ export declare const actionFinalize: {
|
|
|
217
221
|
lockedMultiSelections: {
|
|
218
222
|
[groupId: string]: true;
|
|
219
223
|
};
|
|
220
|
-
stylesPanelMode: "compact" | "full";
|
|
224
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
221
225
|
};
|
|
222
226
|
captureUpdate: "IMMEDIATELY";
|
|
223
227
|
} | {
|
|
@@ -259,6 +263,10 @@ export declare const actionFinalize: {
|
|
|
259
263
|
};
|
|
260
264
|
editingFrame: string | null;
|
|
261
265
|
elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
|
|
266
|
+
preferredSelectionTool: {
|
|
267
|
+
type: "selection" | "lasso";
|
|
268
|
+
initialized: boolean;
|
|
269
|
+
};
|
|
262
270
|
penMode: boolean;
|
|
263
271
|
penDetected: boolean;
|
|
264
272
|
exportBackground: boolean;
|
|
@@ -388,7 +396,7 @@ export declare const actionFinalize: {
|
|
|
388
396
|
lockedMultiSelections: {
|
|
389
397
|
[groupId: string]: true;
|
|
390
398
|
};
|
|
391
|
-
stylesPanelMode: "compact" | "full";
|
|
399
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
392
400
|
};
|
|
393
401
|
captureUpdate: "IMMEDIATELY";
|
|
394
402
|
};
|
|
@@ -45,6 +45,10 @@ export declare const actionSelectAllElementsInFrame: {
|
|
|
45
45
|
locked: boolean;
|
|
46
46
|
fromSelection: boolean;
|
|
47
47
|
} & import("../types").ActiveTool;
|
|
48
|
+
preferredSelectionTool: {
|
|
49
|
+
type: "selection" | "lasso";
|
|
50
|
+
initialized: boolean;
|
|
51
|
+
};
|
|
48
52
|
penMode: boolean;
|
|
49
53
|
penDetected: boolean;
|
|
50
54
|
exportBackground: boolean;
|
|
@@ -176,7 +180,7 @@ export declare const actionSelectAllElementsInFrame: {
|
|
|
176
180
|
lockedMultiSelections: {
|
|
177
181
|
[groupId: string]: true;
|
|
178
182
|
};
|
|
179
|
-
stylesPanelMode: "compact" | "full";
|
|
183
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
180
184
|
};
|
|
181
185
|
captureUpdate: "IMMEDIATELY";
|
|
182
186
|
} | {
|
|
@@ -234,6 +238,10 @@ export declare const actionRemoveAllElementsFromFrame: {
|
|
|
234
238
|
locked: boolean;
|
|
235
239
|
fromSelection: boolean;
|
|
236
240
|
} & import("../types").ActiveTool;
|
|
241
|
+
preferredSelectionTool: {
|
|
242
|
+
type: "selection" | "lasso";
|
|
243
|
+
initialized: boolean;
|
|
244
|
+
};
|
|
237
245
|
penMode: boolean;
|
|
238
246
|
penDetected: boolean;
|
|
239
247
|
exportBackground: boolean;
|
|
@@ -365,7 +373,7 @@ export declare const actionRemoveAllElementsFromFrame: {
|
|
|
365
373
|
lockedMultiSelections: {
|
|
366
374
|
[groupId: string]: true;
|
|
367
375
|
};
|
|
368
|
-
stylesPanelMode: "compact" | "full";
|
|
376
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
369
377
|
};
|
|
370
378
|
captureUpdate: "IMMEDIATELY";
|
|
371
379
|
} | {
|
|
@@ -421,6 +429,10 @@ export declare const actionupdateFrameRendering: {
|
|
|
421
429
|
locked: boolean;
|
|
422
430
|
fromSelection: boolean;
|
|
423
431
|
} & import("../types").ActiveTool;
|
|
432
|
+
preferredSelectionTool: {
|
|
433
|
+
type: "selection" | "lasso";
|
|
434
|
+
initialized: boolean;
|
|
435
|
+
};
|
|
424
436
|
penMode: boolean;
|
|
425
437
|
penDetected: boolean;
|
|
426
438
|
exportBackground: boolean;
|
|
@@ -555,7 +567,7 @@ export declare const actionupdateFrameRendering: {
|
|
|
555
567
|
lockedMultiSelections: {
|
|
556
568
|
[groupId: string]: true;
|
|
557
569
|
};
|
|
558
|
-
stylesPanelMode: "compact" | "full";
|
|
570
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
559
571
|
};
|
|
560
572
|
captureUpdate: "EVENTUALLY";
|
|
561
573
|
};
|
|
@@ -608,6 +620,10 @@ export declare const actionSetFrameAsActiveTool: {
|
|
|
608
620
|
editingFrame: string | null;
|
|
609
621
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
610
622
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
623
|
+
preferredSelectionTool: {
|
|
624
|
+
type: "selection" | "lasso";
|
|
625
|
+
initialized: boolean;
|
|
626
|
+
};
|
|
611
627
|
penMode: boolean;
|
|
612
628
|
penDetected: boolean;
|
|
613
629
|
exportBackground: boolean;
|
|
@@ -742,7 +758,7 @@ export declare const actionSetFrameAsActiveTool: {
|
|
|
742
758
|
lockedMultiSelections: {
|
|
743
759
|
[groupId: string]: true;
|
|
744
760
|
};
|
|
745
|
-
stylesPanelMode: "compact" | "full";
|
|
761
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
746
762
|
};
|
|
747
763
|
captureUpdate: "EVENTUALLY";
|
|
748
764
|
};
|
|
@@ -55,6 +55,10 @@ export declare const actionGroup: {
|
|
|
55
55
|
locked: boolean;
|
|
56
56
|
fromSelection: boolean;
|
|
57
57
|
} & import("../types").ActiveTool;
|
|
58
|
+
preferredSelectionTool: {
|
|
59
|
+
type: "selection" | "lasso";
|
|
60
|
+
initialized: boolean;
|
|
61
|
+
};
|
|
58
62
|
penMode: boolean;
|
|
59
63
|
penDetected: boolean;
|
|
60
64
|
exportBackground: boolean;
|
|
@@ -182,7 +186,7 @@ export declare const actionGroup: {
|
|
|
182
186
|
lockedMultiSelections: {
|
|
183
187
|
[groupId: string]: true;
|
|
184
188
|
};
|
|
185
|
-
stylesPanelMode: "compact" | "full";
|
|
189
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
186
190
|
};
|
|
187
191
|
elements: OrderedExcalidrawElement[];
|
|
188
192
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -247,6 +251,10 @@ export declare const actionUngroup: {
|
|
|
247
251
|
locked: boolean;
|
|
248
252
|
fromSelection: boolean;
|
|
249
253
|
} & import("../types").ActiveTool;
|
|
254
|
+
preferredSelectionTool: {
|
|
255
|
+
type: "selection" | "lasso";
|
|
256
|
+
initialized: boolean;
|
|
257
|
+
};
|
|
250
258
|
penMode: boolean;
|
|
251
259
|
penDetected: boolean;
|
|
252
260
|
exportBackground: boolean;
|
|
@@ -374,7 +382,7 @@ export declare const actionUngroup: {
|
|
|
374
382
|
lockedMultiSelections: {
|
|
375
383
|
[groupId: string]: true;
|
|
376
384
|
};
|
|
377
|
-
stylesPanelMode: "compact" | "full";
|
|
385
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
378
386
|
};
|
|
379
387
|
elements: OrderedExcalidrawElement[];
|
|
380
388
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -78,6 +78,10 @@ export declare const actionToggleLinearEditor: {
|
|
|
78
78
|
locked: boolean;
|
|
79
79
|
fromSelection: boolean;
|
|
80
80
|
} & import("../types").ActiveTool;
|
|
81
|
+
preferredSelectionTool: {
|
|
82
|
+
type: "selection" | "lasso";
|
|
83
|
+
initialized: boolean;
|
|
84
|
+
};
|
|
81
85
|
penMode: boolean;
|
|
82
86
|
penDetected: boolean;
|
|
83
87
|
exportBackground: boolean;
|
|
@@ -211,7 +215,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
211
215
|
lockedMultiSelections: {
|
|
212
216
|
[groupId: string]: true;
|
|
213
217
|
};
|
|
214
|
-
stylesPanelMode: "compact" | "full";
|
|
218
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
215
219
|
};
|
|
216
220
|
captureUpdate: "IMMEDIATELY";
|
|
217
221
|
};
|
|
@@ -42,6 +42,10 @@ export declare const actionLink: {
|
|
|
42
42
|
locked: boolean;
|
|
43
43
|
fromSelection: boolean;
|
|
44
44
|
} & import("../types").ActiveTool;
|
|
45
|
+
preferredSelectionTool: {
|
|
46
|
+
type: "selection" | "lasso";
|
|
47
|
+
initialized: boolean;
|
|
48
|
+
};
|
|
45
49
|
penMode: boolean;
|
|
46
50
|
penDetected: boolean;
|
|
47
51
|
exportBackground: boolean;
|
|
@@ -174,7 +178,7 @@ export declare const actionLink: {
|
|
|
174
178
|
lockedMultiSelections: {
|
|
175
179
|
[groupId: string]: true;
|
|
176
180
|
};
|
|
177
|
-
stylesPanelMode: "compact" | "full";
|
|
181
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
178
182
|
};
|
|
179
183
|
captureUpdate: "IMMEDIATELY";
|
|
180
184
|
};
|
|
@@ -42,6 +42,10 @@ export declare const actionToggleCanvasMenu: {
|
|
|
42
42
|
locked: boolean;
|
|
43
43
|
fromSelection: boolean;
|
|
44
44
|
} & import("../types").ActiveTool;
|
|
45
|
+
preferredSelectionTool: {
|
|
46
|
+
type: "selection" | "lasso";
|
|
47
|
+
initialized: boolean;
|
|
48
|
+
};
|
|
45
49
|
penMode: boolean;
|
|
46
50
|
penDetected: boolean;
|
|
47
51
|
exportBackground: boolean;
|
|
@@ -175,7 +179,7 @@ export declare const actionToggleCanvasMenu: {
|
|
|
175
179
|
lockedMultiSelections: {
|
|
176
180
|
[groupId: string]: true;
|
|
177
181
|
};
|
|
178
|
-
stylesPanelMode: "compact" | "full";
|
|
182
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
179
183
|
};
|
|
180
184
|
captureUpdate: "EVENTUALLY";
|
|
181
185
|
};
|
|
@@ -226,6 +230,10 @@ export declare const actionToggleEditMenu: {
|
|
|
226
230
|
locked: boolean;
|
|
227
231
|
fromSelection: boolean;
|
|
228
232
|
} & import("../types").ActiveTool;
|
|
233
|
+
preferredSelectionTool: {
|
|
234
|
+
type: "selection" | "lasso";
|
|
235
|
+
initialized: boolean;
|
|
236
|
+
};
|
|
229
237
|
penMode: boolean;
|
|
230
238
|
penDetected: boolean;
|
|
231
239
|
exportBackground: boolean;
|
|
@@ -359,7 +367,7 @@ export declare const actionToggleEditMenu: {
|
|
|
359
367
|
lockedMultiSelections: {
|
|
360
368
|
[groupId: string]: true;
|
|
361
369
|
};
|
|
362
|
-
stylesPanelMode: "compact" | "full";
|
|
370
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
363
371
|
};
|
|
364
372
|
captureUpdate: "EVENTUALLY";
|
|
365
373
|
};
|
|
@@ -415,6 +423,10 @@ export declare const actionShortcuts: {
|
|
|
415
423
|
locked: boolean;
|
|
416
424
|
fromSelection: boolean;
|
|
417
425
|
} & import("../types").ActiveTool;
|
|
426
|
+
preferredSelectionTool: {
|
|
427
|
+
type: "selection" | "lasso";
|
|
428
|
+
initialized: boolean;
|
|
429
|
+
};
|
|
418
430
|
penMode: boolean;
|
|
419
431
|
penDetected: boolean;
|
|
420
432
|
exportBackground: boolean;
|
|
@@ -538,7 +550,7 @@ export declare const actionShortcuts: {
|
|
|
538
550
|
lockedMultiSelections: {
|
|
539
551
|
[groupId: string]: true;
|
|
540
552
|
};
|
|
541
|
-
stylesPanelMode: "compact" | "full";
|
|
553
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
542
554
|
};
|
|
543
555
|
captureUpdate: "EVENTUALLY";
|
|
544
556
|
};
|
|
@@ -44,6 +44,10 @@ export declare const actionGoToCollaborator: {
|
|
|
44
44
|
locked: boolean;
|
|
45
45
|
fromSelection: boolean;
|
|
46
46
|
} & import("../types").ActiveTool;
|
|
47
|
+
preferredSelectionTool: {
|
|
48
|
+
type: "selection" | "lasso";
|
|
49
|
+
initialized: boolean;
|
|
50
|
+
};
|
|
47
51
|
penMode: boolean;
|
|
48
52
|
penDetected: boolean;
|
|
49
53
|
exportBackground: boolean;
|
|
@@ -177,7 +181,7 @@ export declare const actionGoToCollaborator: {
|
|
|
177
181
|
lockedMultiSelections: {
|
|
178
182
|
[groupId: string]: true;
|
|
179
183
|
};
|
|
180
|
-
stylesPanelMode: "compact" | "full";
|
|
184
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
181
185
|
};
|
|
182
186
|
captureUpdate: "EVENTUALLY";
|
|
183
187
|
} | {
|
|
@@ -221,6 +225,10 @@ export declare const actionGoToCollaborator: {
|
|
|
221
225
|
locked: boolean;
|
|
222
226
|
fromSelection: boolean;
|
|
223
227
|
} & import("../types").ActiveTool;
|
|
228
|
+
preferredSelectionTool: {
|
|
229
|
+
type: "selection" | "lasso";
|
|
230
|
+
initialized: boolean;
|
|
231
|
+
};
|
|
224
232
|
penMode: boolean;
|
|
225
233
|
penDetected: boolean;
|
|
226
234
|
exportBackground: boolean;
|
|
@@ -353,7 +361,7 @@ export declare const actionGoToCollaborator: {
|
|
|
353
361
|
lockedMultiSelections: {
|
|
354
362
|
[groupId: string]: true;
|
|
355
363
|
};
|
|
356
|
-
stylesPanelMode: "compact" | "full";
|
|
364
|
+
stylesPanelMode: "compact" | "full" | "mobile";
|
|
357
365
|
};
|
|
358
366
|
captureUpdate: "EVENTUALLY";
|
|
359
367
|
};
|