@zsviczian/excalidraw 0.17.1-obsidian-49 → 0.17.1-obsidian-51
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/package.json +1 -1
- package/types/excalidraw/actions/actionAddToLibrary.d.ts +30 -0
- package/types/excalidraw/actions/actionBoundText.d.ts +20 -0
- package/types/excalidraw/actions/actionCanvas.d.ts +140 -0
- package/types/excalidraw/actions/actionClipboard.d.ts +70 -0
- package/types/excalidraw/actions/actionDeleteSelected.d.ts +30 -0
- package/types/excalidraw/actions/actionElementLock.d.ts +20 -0
- package/types/excalidraw/actions/actionExport.d.ts +90 -0
- package/types/excalidraw/actions/actionFinalize.d.ts +20 -0
- package/types/excalidraw/actions/actionFrame.d.ts +40 -0
- package/types/excalidraw/actions/actionGroup.d.ts +20 -0
- package/types/excalidraw/actions/actionLinearEditor.d.ts +10 -0
- package/types/excalidraw/actions/actionLink.d.ts +10 -0
- package/types/excalidraw/actions/actionMenu.d.ts +30 -0
- package/types/excalidraw/actions/actionNavigate.d.ts +20 -0
- package/types/excalidraw/actions/actionProperties.d.ts +150 -0
- package/types/excalidraw/actions/actionSelectAll.d.ts +10 -0
- package/types/excalidraw/actions/actionStyles.d.ts +10 -0
- package/types/excalidraw/actions/actionToggleGridMode.d.ts +10 -0
- package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +10 -0
- package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +406 -0
- package/types/excalidraw/actions/actionToggleStats.d.ts +10 -0
- package/types/excalidraw/actions/actionToggleViewMode.d.ts +10 -0
- package/types/excalidraw/actions/actionToggleZenMode.d.ts +10 -0
- package/types/excalidraw/actions/index.d.ts +1 -0
- package/types/excalidraw/actions/shortcuts.d.ts +1 -1
- package/types/excalidraw/actions/types.d.ts +2 -2
- package/types/excalidraw/components/App.d.ts +12 -2
- package/types/excalidraw/components/DefaultSidebar.d.ts +1 -0
- package/types/excalidraw/components/SearchMenu.d.ts +5 -0
- package/types/excalidraw/components/SearchSidebar.d.ts +1 -0
- package/types/excalidraw/components/TextField.d.ts +2 -0
- package/types/excalidraw/components/icons.d.ts +1 -0
- package/types/excalidraw/components/main-menu/DefaultItems.d.ts +6 -0
- package/types/excalidraw/constants.d.ts +4 -0
- package/types/excalidraw/element/embeddable.d.ts +10 -0
- package/types/excalidraw/element/textElement.d.ts +1 -1
- package/types/excalidraw/fonts/ExcalidrawFont.d.ts +2 -2
- package/types/excalidraw/types.d.ts +15 -0
- package/dist/excalidraw.development.js +0 -6944
- package/dist/excalidraw.production.min.js +0 -2
- package/dist/excalidraw.production.min.js.LICENSE.txt +0 -121
- package/dist/styles.development.css +0 -6708
- package/dist/styles.production.css +0 -65
package/package.json
CHANGED
|
@@ -189,6 +189,16 @@ export declare const actionAddToLibrary: {
|
|
|
189
189
|
objectsSnapModeEnabled: boolean;
|
|
190
190
|
userToFollow: import("../types").UserToFollow | null;
|
|
191
191
|
followedBy: Set<import("../types").SocketId>;
|
|
192
|
+
searchMatches: readonly {
|
|
193
|
+
id: string;
|
|
194
|
+
focus: boolean;
|
|
195
|
+
matchedLines: {
|
|
196
|
+
offsetX: number;
|
|
197
|
+
offsetY: number;
|
|
198
|
+
width: number;
|
|
199
|
+
height: number;
|
|
200
|
+
}[];
|
|
201
|
+
}[];
|
|
192
202
|
};
|
|
193
203
|
} | {
|
|
194
204
|
storeAction: "none";
|
|
@@ -378,6 +388,16 @@ export declare const actionAddToLibrary: {
|
|
|
378
388
|
objectsSnapModeEnabled: boolean;
|
|
379
389
|
userToFollow: import("../types").UserToFollow | null;
|
|
380
390
|
followedBy: Set<import("../types").SocketId>;
|
|
391
|
+
searchMatches: readonly {
|
|
392
|
+
id: string;
|
|
393
|
+
focus: boolean;
|
|
394
|
+
matchedLines: {
|
|
395
|
+
offsetX: number;
|
|
396
|
+
offsetY: number;
|
|
397
|
+
width: number;
|
|
398
|
+
height: number;
|
|
399
|
+
}[];
|
|
400
|
+
}[];
|
|
381
401
|
};
|
|
382
402
|
}> | {
|
|
383
403
|
storeAction: "none";
|
|
@@ -567,6 +587,16 @@ export declare const actionAddToLibrary: {
|
|
|
567
587
|
objectsSnapModeEnabled: boolean;
|
|
568
588
|
userToFollow: import("../types").UserToFollow | null;
|
|
569
589
|
followedBy: Set<import("../types").SocketId>;
|
|
590
|
+
searchMatches: readonly {
|
|
591
|
+
id: string;
|
|
592
|
+
focus: boolean;
|
|
593
|
+
matchedLines: {
|
|
594
|
+
offsetX: number;
|
|
595
|
+
offsetY: number;
|
|
596
|
+
width: number;
|
|
597
|
+
height: number;
|
|
598
|
+
}[];
|
|
599
|
+
}[];
|
|
570
600
|
};
|
|
571
601
|
};
|
|
572
602
|
label: string;
|
|
@@ -211,6 +211,16 @@ export declare const actionBindText: {
|
|
|
211
211
|
objectsSnapModeEnabled: boolean;
|
|
212
212
|
userToFollow: import("../types").UserToFollow | null;
|
|
213
213
|
followedBy: Set<import("../types").SocketId>;
|
|
214
|
+
searchMatches: readonly {
|
|
215
|
+
id: string;
|
|
216
|
+
focus: boolean;
|
|
217
|
+
matchedLines: {
|
|
218
|
+
offsetX: number;
|
|
219
|
+
offsetY: number;
|
|
220
|
+
width: number;
|
|
221
|
+
height: number;
|
|
222
|
+
}[];
|
|
223
|
+
}[];
|
|
214
224
|
};
|
|
215
225
|
storeAction: "capture";
|
|
216
226
|
};
|
|
@@ -412,6 +422,16 @@ export declare const actionWrapTextInContainer: {
|
|
|
412
422
|
objectsSnapModeEnabled: boolean;
|
|
413
423
|
userToFollow: import("../types").UserToFollow | null;
|
|
414
424
|
followedBy: Set<import("../types").SocketId>;
|
|
425
|
+
searchMatches: readonly {
|
|
426
|
+
id: string;
|
|
427
|
+
focus: boolean;
|
|
428
|
+
matchedLines: {
|
|
429
|
+
offsetX: number;
|
|
430
|
+
offsetY: number;
|
|
431
|
+
width: number;
|
|
432
|
+
height: number;
|
|
433
|
+
}[];
|
|
434
|
+
}[];
|
|
415
435
|
};
|
|
416
436
|
storeAction: "capture";
|
|
417
437
|
};
|
|
@@ -209,6 +209,16 @@ export declare const actionClearCanvas: {
|
|
|
209
209
|
objectsSnapModeEnabled: boolean;
|
|
210
210
|
userToFollow: import("../types").UserToFollow | null;
|
|
211
211
|
followedBy: Set<import("../types").SocketId>;
|
|
212
|
+
searchMatches: readonly {
|
|
213
|
+
id: string;
|
|
214
|
+
focus: boolean;
|
|
215
|
+
matchedLines: {
|
|
216
|
+
offsetX: number;
|
|
217
|
+
offsetY: number;
|
|
218
|
+
width: number;
|
|
219
|
+
height: number;
|
|
220
|
+
}[];
|
|
221
|
+
}[];
|
|
212
222
|
};
|
|
213
223
|
storeAction: "capture";
|
|
214
224
|
};
|
|
@@ -410,6 +420,16 @@ export declare const actionZoomIn: {
|
|
|
410
420
|
} | null;
|
|
411
421
|
objectsSnapModeEnabled: boolean;
|
|
412
422
|
followedBy: Set<import("../types").SocketId>;
|
|
423
|
+
searchMatches: readonly {
|
|
424
|
+
id: string;
|
|
425
|
+
focus: boolean;
|
|
426
|
+
matchedLines: {
|
|
427
|
+
offsetX: number;
|
|
428
|
+
offsetY: number;
|
|
429
|
+
width: number;
|
|
430
|
+
height: number;
|
|
431
|
+
}[];
|
|
432
|
+
}[];
|
|
413
433
|
};
|
|
414
434
|
storeAction: "none";
|
|
415
435
|
};
|
|
@@ -613,6 +633,16 @@ export declare const actionZoomOut: {
|
|
|
613
633
|
} | null;
|
|
614
634
|
objectsSnapModeEnabled: boolean;
|
|
615
635
|
followedBy: Set<import("../types").SocketId>;
|
|
636
|
+
searchMatches: readonly {
|
|
637
|
+
id: string;
|
|
638
|
+
focus: boolean;
|
|
639
|
+
matchedLines: {
|
|
640
|
+
offsetX: number;
|
|
641
|
+
offsetY: number;
|
|
642
|
+
width: number;
|
|
643
|
+
height: number;
|
|
644
|
+
}[];
|
|
645
|
+
}[];
|
|
616
646
|
};
|
|
617
647
|
storeAction: "none";
|
|
618
648
|
};
|
|
@@ -816,6 +846,16 @@ export declare const actionResetZoom: {
|
|
|
816
846
|
} | null;
|
|
817
847
|
objectsSnapModeEnabled: boolean;
|
|
818
848
|
followedBy: Set<import("../types").SocketId>;
|
|
849
|
+
searchMatches: readonly {
|
|
850
|
+
id: string;
|
|
851
|
+
focus: boolean;
|
|
852
|
+
matchedLines: {
|
|
853
|
+
offsetX: number;
|
|
854
|
+
offsetY: number;
|
|
855
|
+
width: number;
|
|
856
|
+
height: number;
|
|
857
|
+
}[];
|
|
858
|
+
}[];
|
|
819
859
|
};
|
|
820
860
|
storeAction: "none";
|
|
821
861
|
};
|
|
@@ -1018,6 +1058,16 @@ export declare const zoomToFitBounds: ({ bounds, appState, fitToViewport, viewpo
|
|
|
1018
1058
|
objectsSnapModeEnabled: boolean;
|
|
1019
1059
|
userToFollow: import("../types").UserToFollow | null;
|
|
1020
1060
|
followedBy: Set<import("../types").SocketId>;
|
|
1061
|
+
searchMatches: readonly {
|
|
1062
|
+
id: string;
|
|
1063
|
+
focus: boolean;
|
|
1064
|
+
matchedLines: {
|
|
1065
|
+
offsetX: number;
|
|
1066
|
+
offsetY: number;
|
|
1067
|
+
width: number;
|
|
1068
|
+
height: number;
|
|
1069
|
+
}[];
|
|
1070
|
+
}[];
|
|
1021
1071
|
};
|
|
1022
1072
|
storeAction: "none";
|
|
1023
1073
|
};
|
|
@@ -1215,6 +1265,16 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
|
|
|
1215
1265
|
objectsSnapModeEnabled: boolean;
|
|
1216
1266
|
userToFollow: import("../types").UserToFollow | null;
|
|
1217
1267
|
followedBy: Set<import("../types").SocketId>;
|
|
1268
|
+
searchMatches: readonly {
|
|
1269
|
+
id: string;
|
|
1270
|
+
focus: boolean;
|
|
1271
|
+
matchedLines: {
|
|
1272
|
+
offsetX: number;
|
|
1273
|
+
offsetY: number;
|
|
1274
|
+
width: number;
|
|
1275
|
+
height: number;
|
|
1276
|
+
}[];
|
|
1277
|
+
}[];
|
|
1218
1278
|
};
|
|
1219
1279
|
storeAction: "none";
|
|
1220
1280
|
};
|
|
@@ -1412,6 +1472,16 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
1412
1472
|
objectsSnapModeEnabled: boolean;
|
|
1413
1473
|
userToFollow: import("../types").UserToFollow | null;
|
|
1414
1474
|
followedBy: Set<import("../types").SocketId>;
|
|
1475
|
+
searchMatches: readonly {
|
|
1476
|
+
id: string;
|
|
1477
|
+
focus: boolean;
|
|
1478
|
+
matchedLines: {
|
|
1479
|
+
offsetX: number;
|
|
1480
|
+
offsetY: number;
|
|
1481
|
+
width: number;
|
|
1482
|
+
height: number;
|
|
1483
|
+
}[];
|
|
1484
|
+
}[];
|
|
1415
1485
|
};
|
|
1416
1486
|
storeAction: "none";
|
|
1417
1487
|
};
|
|
@@ -1613,6 +1683,16 @@ export declare const actionZoomToFitSelection: {
|
|
|
1613
1683
|
objectsSnapModeEnabled: boolean;
|
|
1614
1684
|
userToFollow: import("../types").UserToFollow | null;
|
|
1615
1685
|
followedBy: Set<import("../types").SocketId>;
|
|
1686
|
+
searchMatches: readonly {
|
|
1687
|
+
id: string;
|
|
1688
|
+
focus: boolean;
|
|
1689
|
+
matchedLines: {
|
|
1690
|
+
offsetX: number;
|
|
1691
|
+
offsetY: number;
|
|
1692
|
+
width: number;
|
|
1693
|
+
height: number;
|
|
1694
|
+
}[];
|
|
1695
|
+
}[];
|
|
1616
1696
|
};
|
|
1617
1697
|
storeAction: "none";
|
|
1618
1698
|
};
|
|
@@ -1815,6 +1895,16 @@ export declare const actionZoomToFit: {
|
|
|
1815
1895
|
objectsSnapModeEnabled: boolean;
|
|
1816
1896
|
userToFollow: import("../types").UserToFollow | null;
|
|
1817
1897
|
followedBy: Set<import("../types").SocketId>;
|
|
1898
|
+
searchMatches: readonly {
|
|
1899
|
+
id: string;
|
|
1900
|
+
focus: boolean;
|
|
1901
|
+
matchedLines: {
|
|
1902
|
+
offsetX: number;
|
|
1903
|
+
offsetY: number;
|
|
1904
|
+
width: number;
|
|
1905
|
+
height: number;
|
|
1906
|
+
}[];
|
|
1907
|
+
}[];
|
|
1818
1908
|
};
|
|
1819
1909
|
storeAction: "none";
|
|
1820
1910
|
};
|
|
@@ -2018,6 +2108,16 @@ export declare const actionToggleTheme: {
|
|
|
2018
2108
|
objectsSnapModeEnabled: boolean;
|
|
2019
2109
|
userToFollow: import("../types").UserToFollow | null;
|
|
2020
2110
|
followedBy: Set<import("../types").SocketId>;
|
|
2111
|
+
searchMatches: readonly {
|
|
2112
|
+
id: string;
|
|
2113
|
+
focus: boolean;
|
|
2114
|
+
matchedLines: {
|
|
2115
|
+
offsetX: number;
|
|
2116
|
+
offsetY: number;
|
|
2117
|
+
width: number;
|
|
2118
|
+
height: number;
|
|
2119
|
+
}[];
|
|
2120
|
+
}[];
|
|
2021
2121
|
};
|
|
2022
2122
|
storeAction: "none";
|
|
2023
2123
|
};
|
|
@@ -2212,6 +2312,16 @@ export declare const actionToggleEraserTool: {
|
|
|
2212
2312
|
objectsSnapModeEnabled: boolean;
|
|
2213
2313
|
userToFollow: import("../types").UserToFollow | null;
|
|
2214
2314
|
followedBy: Set<import("../types").SocketId>;
|
|
2315
|
+
searchMatches: readonly {
|
|
2316
|
+
id: string;
|
|
2317
|
+
focus: boolean;
|
|
2318
|
+
matchedLines: {
|
|
2319
|
+
offsetX: number;
|
|
2320
|
+
offsetY: number;
|
|
2321
|
+
width: number;
|
|
2322
|
+
height: number;
|
|
2323
|
+
}[];
|
|
2324
|
+
}[];
|
|
2215
2325
|
};
|
|
2216
2326
|
storeAction: "capture";
|
|
2217
2327
|
};
|
|
@@ -2408,6 +2518,16 @@ export declare const actionToggleHandTool: {
|
|
|
2408
2518
|
objectsSnapModeEnabled: boolean;
|
|
2409
2519
|
userToFollow: import("../types").UserToFollow | null;
|
|
2410
2520
|
followedBy: Set<import("../types").SocketId>;
|
|
2521
|
+
searchMatches: readonly {
|
|
2522
|
+
id: string;
|
|
2523
|
+
focus: boolean;
|
|
2524
|
+
matchedLines: {
|
|
2525
|
+
offsetX: number;
|
|
2526
|
+
offsetY: number;
|
|
2527
|
+
width: number;
|
|
2528
|
+
height: number;
|
|
2529
|
+
}[];
|
|
2530
|
+
}[];
|
|
2411
2531
|
};
|
|
2412
2532
|
storeAction: "capture";
|
|
2413
2533
|
};
|
|
@@ -2601,6 +2721,16 @@ export declare const actionToggleLaserPointer: {
|
|
|
2601
2721
|
objectsSnapModeEnabled: boolean;
|
|
2602
2722
|
userToFollow: import("../types").UserToFollow | null;
|
|
2603
2723
|
followedBy: Set<import("../types").SocketId>;
|
|
2724
|
+
searchMatches: readonly {
|
|
2725
|
+
id: string;
|
|
2726
|
+
focus: boolean;
|
|
2727
|
+
matchedLines: {
|
|
2728
|
+
offsetX: number;
|
|
2729
|
+
offsetY: number;
|
|
2730
|
+
width: number;
|
|
2731
|
+
height: number;
|
|
2732
|
+
}[];
|
|
2733
|
+
}[];
|
|
2604
2734
|
};
|
|
2605
2735
|
storeAction: "none";
|
|
2606
2736
|
};
|
|
@@ -2797,6 +2927,16 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
|
|
|
2797
2927
|
objectsSnapModeEnabled: boolean;
|
|
2798
2928
|
userToFollow: import("../types").UserToFollow | null;
|
|
2799
2929
|
followedBy: Set<import("../types").SocketId>;
|
|
2930
|
+
searchMatches: readonly {
|
|
2931
|
+
id: string;
|
|
2932
|
+
focus: boolean;
|
|
2933
|
+
matchedLines: {
|
|
2934
|
+
offsetX: number;
|
|
2935
|
+
offsetY: number;
|
|
2936
|
+
width: number;
|
|
2937
|
+
height: number;
|
|
2938
|
+
}[];
|
|
2939
|
+
}[];
|
|
2800
2940
|
};
|
|
2801
2941
|
commitToHistory: boolean;
|
|
2802
2942
|
};
|
|
@@ -193,6 +193,16 @@ export declare const actionCopy: {
|
|
|
193
193
|
objectsSnapModeEnabled: boolean;
|
|
194
194
|
userToFollow: import("../types").UserToFollow | null;
|
|
195
195
|
followedBy: Set<import("../types").SocketId>;
|
|
196
|
+
searchMatches: readonly {
|
|
197
|
+
id: string;
|
|
198
|
+
focus: boolean;
|
|
199
|
+
matchedLines: {
|
|
200
|
+
offsetX: number;
|
|
201
|
+
offsetY: number;
|
|
202
|
+
width: number;
|
|
203
|
+
height: number;
|
|
204
|
+
}[];
|
|
205
|
+
}[];
|
|
196
206
|
};
|
|
197
207
|
} | {
|
|
198
208
|
storeAction: "none";
|
|
@@ -396,6 +406,16 @@ export declare const actionPaste: {
|
|
|
396
406
|
objectsSnapModeEnabled: boolean;
|
|
397
407
|
userToFollow: import("../types").UserToFollow | null;
|
|
398
408
|
followedBy: Set<import("../types").SocketId>;
|
|
409
|
+
searchMatches: readonly {
|
|
410
|
+
id: string;
|
|
411
|
+
focus: boolean;
|
|
412
|
+
matchedLines: {
|
|
413
|
+
offsetX: number;
|
|
414
|
+
offsetY: number;
|
|
415
|
+
width: number;
|
|
416
|
+
height: number;
|
|
417
|
+
}[];
|
|
418
|
+
}[];
|
|
399
419
|
};
|
|
400
420
|
} | {
|
|
401
421
|
storeAction: "none";
|
|
@@ -600,6 +620,16 @@ export declare const actionCut: {
|
|
|
600
620
|
objectsSnapModeEnabled: boolean;
|
|
601
621
|
userToFollow: import("../types").UserToFollow | null;
|
|
602
622
|
followedBy: Set<import("../types").SocketId>;
|
|
623
|
+
searchMatches: readonly {
|
|
624
|
+
id: string;
|
|
625
|
+
focus: boolean;
|
|
626
|
+
matchedLines: {
|
|
627
|
+
offsetX: number;
|
|
628
|
+
offsetY: number;
|
|
629
|
+
width: number;
|
|
630
|
+
height: number;
|
|
631
|
+
}[];
|
|
632
|
+
}[];
|
|
603
633
|
};
|
|
604
634
|
storeAction: "capture";
|
|
605
635
|
} | {
|
|
@@ -819,6 +849,16 @@ export declare const actionCut: {
|
|
|
819
849
|
objectsSnapModeEnabled: boolean;
|
|
820
850
|
userToFollow: import("../types").UserToFollow | null;
|
|
821
851
|
followedBy: Set<import("../types").SocketId>;
|
|
852
|
+
searchMatches: readonly {
|
|
853
|
+
id: string;
|
|
854
|
+
focus: boolean;
|
|
855
|
+
matchedLines: {
|
|
856
|
+
offsetX: number;
|
|
857
|
+
offsetY: number;
|
|
858
|
+
width: number;
|
|
859
|
+
height: number;
|
|
860
|
+
}[];
|
|
861
|
+
}[];
|
|
822
862
|
};
|
|
823
863
|
storeAction: "capture";
|
|
824
864
|
} | {
|
|
@@ -1002,6 +1042,16 @@ export declare const actionCut: {
|
|
|
1002
1042
|
objectsSnapModeEnabled: boolean;
|
|
1003
1043
|
userToFollow: import("../types").UserToFollow | null;
|
|
1004
1044
|
followedBy: Set<import("../types").SocketId>;
|
|
1045
|
+
searchMatches: readonly {
|
|
1046
|
+
id: string;
|
|
1047
|
+
focus: boolean;
|
|
1048
|
+
matchedLines: {
|
|
1049
|
+
offsetX: number;
|
|
1050
|
+
offsetY: number;
|
|
1051
|
+
width: number;
|
|
1052
|
+
height: number;
|
|
1053
|
+
}[];
|
|
1054
|
+
}[];
|
|
1005
1055
|
};
|
|
1006
1056
|
storeAction: "none" | "capture";
|
|
1007
1057
|
};
|
|
@@ -1206,6 +1256,16 @@ export declare const actionCopyAsSvg: {
|
|
|
1206
1256
|
objectsSnapModeEnabled: boolean;
|
|
1207
1257
|
userToFollow: import("../types").UserToFollow | null;
|
|
1208
1258
|
followedBy: Set<import("../types").SocketId>;
|
|
1259
|
+
searchMatches: readonly {
|
|
1260
|
+
id: string;
|
|
1261
|
+
focus: boolean;
|
|
1262
|
+
matchedLines: {
|
|
1263
|
+
offsetX: number;
|
|
1264
|
+
offsetY: number;
|
|
1265
|
+
width: number;
|
|
1266
|
+
height: number;
|
|
1267
|
+
}[];
|
|
1268
|
+
}[];
|
|
1209
1269
|
};
|
|
1210
1270
|
storeAction: "none";
|
|
1211
1271
|
}>;
|
|
@@ -1411,6 +1471,16 @@ export declare const actionCopyAsPng: {
|
|
|
1411
1471
|
objectsSnapModeEnabled: boolean;
|
|
1412
1472
|
userToFollow: import("../types").UserToFollow | null;
|
|
1413
1473
|
followedBy: Set<import("../types").SocketId>;
|
|
1474
|
+
searchMatches: readonly {
|
|
1475
|
+
id: string;
|
|
1476
|
+
focus: boolean;
|
|
1477
|
+
matchedLines: {
|
|
1478
|
+
offsetX: number;
|
|
1479
|
+
offsetY: number;
|
|
1480
|
+
width: number;
|
|
1481
|
+
height: number;
|
|
1482
|
+
}[];
|
|
1483
|
+
}[];
|
|
1414
1484
|
};
|
|
1415
1485
|
storeAction: "none";
|
|
1416
1486
|
}>;
|
|
@@ -197,6 +197,16 @@ export declare const actionDeleteSelected: {
|
|
|
197
197
|
objectsSnapModeEnabled: boolean;
|
|
198
198
|
userToFollow: import("../types").UserToFollow | null;
|
|
199
199
|
followedBy: Set<import("../types").SocketId>;
|
|
200
|
+
searchMatches: readonly {
|
|
201
|
+
id: string;
|
|
202
|
+
focus: boolean;
|
|
203
|
+
matchedLines: {
|
|
204
|
+
offsetX: number;
|
|
205
|
+
offsetY: number;
|
|
206
|
+
width: number;
|
|
207
|
+
height: number;
|
|
208
|
+
}[];
|
|
209
|
+
}[];
|
|
200
210
|
};
|
|
201
211
|
storeAction: "capture";
|
|
202
212
|
} | {
|
|
@@ -416,6 +426,16 @@ export declare const actionDeleteSelected: {
|
|
|
416
426
|
objectsSnapModeEnabled: boolean;
|
|
417
427
|
userToFollow: import("../types").UserToFollow | null;
|
|
418
428
|
followedBy: Set<import("../types").SocketId>;
|
|
429
|
+
searchMatches: readonly {
|
|
430
|
+
id: string;
|
|
431
|
+
focus: boolean;
|
|
432
|
+
matchedLines: {
|
|
433
|
+
offsetX: number;
|
|
434
|
+
offsetY: number;
|
|
435
|
+
width: number;
|
|
436
|
+
height: number;
|
|
437
|
+
}[];
|
|
438
|
+
}[];
|
|
419
439
|
};
|
|
420
440
|
storeAction: "capture";
|
|
421
441
|
} | {
|
|
@@ -599,6 +619,16 @@ export declare const actionDeleteSelected: {
|
|
|
599
619
|
objectsSnapModeEnabled: boolean;
|
|
600
620
|
userToFollow: import("../types").UserToFollow | null;
|
|
601
621
|
followedBy: Set<import("../types").SocketId>;
|
|
622
|
+
searchMatches: readonly {
|
|
623
|
+
id: string;
|
|
624
|
+
focus: boolean;
|
|
625
|
+
matchedLines: {
|
|
626
|
+
offsetX: number;
|
|
627
|
+
offsetY: number;
|
|
628
|
+
width: number;
|
|
629
|
+
height: number;
|
|
630
|
+
}[];
|
|
631
|
+
}[];
|
|
602
632
|
};
|
|
603
633
|
storeAction: "none" | "capture";
|
|
604
634
|
};
|
|
@@ -195,6 +195,16 @@ export declare const actionToggleElementLock: {
|
|
|
195
195
|
objectsSnapModeEnabled: boolean;
|
|
196
196
|
userToFollow: import("../types").UserToFollow | null;
|
|
197
197
|
followedBy: Set<import("../types").SocketId>;
|
|
198
|
+
searchMatches: readonly {
|
|
199
|
+
id: string;
|
|
200
|
+
focus: boolean;
|
|
201
|
+
matchedLines: {
|
|
202
|
+
offsetX: number;
|
|
203
|
+
offsetY: number;
|
|
204
|
+
width: number;
|
|
205
|
+
height: number;
|
|
206
|
+
}[];
|
|
207
|
+
}[];
|
|
198
208
|
};
|
|
199
209
|
storeAction: "capture";
|
|
200
210
|
};
|
|
@@ -399,6 +409,16 @@ export declare const actionUnlockAllElements: {
|
|
|
399
409
|
objectsSnapModeEnabled: boolean;
|
|
400
410
|
userToFollow: import("../types").UserToFollow | null;
|
|
401
411
|
followedBy: Set<import("../types").SocketId>;
|
|
412
|
+
searchMatches: readonly {
|
|
413
|
+
id: string;
|
|
414
|
+
focus: boolean;
|
|
415
|
+
matchedLines: {
|
|
416
|
+
offsetX: number;
|
|
417
|
+
offsetY: number;
|
|
418
|
+
width: number;
|
|
419
|
+
height: number;
|
|
420
|
+
}[];
|
|
421
|
+
}[];
|
|
402
422
|
};
|
|
403
423
|
storeAction: "capture";
|
|
404
424
|
};
|
|
@@ -191,6 +191,16 @@ export declare const actionChangeProjectName: {
|
|
|
191
191
|
objectsSnapModeEnabled: boolean;
|
|
192
192
|
userToFollow: import("../types").UserToFollow | null;
|
|
193
193
|
followedBy: Set<import("../types").SocketId>;
|
|
194
|
+
searchMatches: readonly {
|
|
195
|
+
id: string;
|
|
196
|
+
focus: boolean;
|
|
197
|
+
matchedLines: {
|
|
198
|
+
offsetX: number;
|
|
199
|
+
offsetY: number;
|
|
200
|
+
width: number;
|
|
201
|
+
height: number;
|
|
202
|
+
}[];
|
|
203
|
+
}[];
|
|
194
204
|
};
|
|
195
205
|
storeAction: "none";
|
|
196
206
|
};
|
|
@@ -392,6 +402,16 @@ export declare const actionChangeExportScale: {
|
|
|
392
402
|
objectsSnapModeEnabled: boolean;
|
|
393
403
|
userToFollow: import("../types").UserToFollow | null;
|
|
394
404
|
followedBy: Set<import("../types").SocketId>;
|
|
405
|
+
searchMatches: readonly {
|
|
406
|
+
id: string;
|
|
407
|
+
focus: boolean;
|
|
408
|
+
matchedLines: {
|
|
409
|
+
offsetX: number;
|
|
410
|
+
offsetY: number;
|
|
411
|
+
width: number;
|
|
412
|
+
height: number;
|
|
413
|
+
}[];
|
|
414
|
+
}[];
|
|
395
415
|
};
|
|
396
416
|
storeAction: "none";
|
|
397
417
|
};
|
|
@@ -593,6 +613,16 @@ export declare const actionChangeExportBackground: {
|
|
|
593
613
|
objectsSnapModeEnabled: boolean;
|
|
594
614
|
userToFollow: import("../types").UserToFollow | null;
|
|
595
615
|
followedBy: Set<import("../types").SocketId>;
|
|
616
|
+
searchMatches: readonly {
|
|
617
|
+
id: string;
|
|
618
|
+
focus: boolean;
|
|
619
|
+
matchedLines: {
|
|
620
|
+
offsetX: number;
|
|
621
|
+
offsetY: number;
|
|
622
|
+
width: number;
|
|
623
|
+
height: number;
|
|
624
|
+
}[];
|
|
625
|
+
}[];
|
|
596
626
|
};
|
|
597
627
|
storeAction: "none";
|
|
598
628
|
};
|
|
@@ -794,6 +824,16 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
794
824
|
objectsSnapModeEnabled: boolean;
|
|
795
825
|
userToFollow: import("../types").UserToFollow | null;
|
|
796
826
|
followedBy: Set<import("../types").SocketId>;
|
|
827
|
+
searchMatches: readonly {
|
|
828
|
+
id: string;
|
|
829
|
+
focus: boolean;
|
|
830
|
+
matchedLines: {
|
|
831
|
+
offsetX: number;
|
|
832
|
+
offsetY: number;
|
|
833
|
+
width: number;
|
|
834
|
+
height: number;
|
|
835
|
+
}[];
|
|
836
|
+
}[];
|
|
797
837
|
};
|
|
798
838
|
storeAction: "none";
|
|
799
839
|
};
|
|
@@ -995,6 +1035,16 @@ export declare const actionSaveToActiveFile: {
|
|
|
995
1035
|
objectsSnapModeEnabled: boolean;
|
|
996
1036
|
userToFollow: import("../types").UserToFollow | null;
|
|
997
1037
|
followedBy: Set<import("../types").SocketId>;
|
|
1038
|
+
searchMatches: readonly {
|
|
1039
|
+
id: string;
|
|
1040
|
+
focus: boolean;
|
|
1041
|
+
matchedLines: {
|
|
1042
|
+
offsetX: number;
|
|
1043
|
+
offsetY: number;
|
|
1044
|
+
width: number;
|
|
1045
|
+
height: number;
|
|
1046
|
+
}[];
|
|
1047
|
+
}[];
|
|
998
1048
|
};
|
|
999
1049
|
} | {
|
|
1000
1050
|
storeAction: "none";
|
|
@@ -1191,6 +1241,16 @@ export declare const actionSaveFileToDisk: {
|
|
|
1191
1241
|
objectsSnapModeEnabled: boolean;
|
|
1192
1242
|
userToFollow: import("../types").UserToFollow | null;
|
|
1193
1243
|
followedBy: Set<import("../types").SocketId>;
|
|
1244
|
+
searchMatches: readonly {
|
|
1245
|
+
id: string;
|
|
1246
|
+
focus: boolean;
|
|
1247
|
+
matchedLines: {
|
|
1248
|
+
offsetX: number;
|
|
1249
|
+
offsetY: number;
|
|
1250
|
+
width: number;
|
|
1251
|
+
height: number;
|
|
1252
|
+
}[];
|
|
1253
|
+
}[];
|
|
1194
1254
|
};
|
|
1195
1255
|
} | {
|
|
1196
1256
|
storeAction: "none";
|
|
@@ -1392,6 +1452,16 @@ export declare const actionLoadScene: {
|
|
|
1392
1452
|
objectsSnapModeEnabled: boolean;
|
|
1393
1453
|
userToFollow: import("../types").UserToFollow | null;
|
|
1394
1454
|
followedBy: Set<import("../types").SocketId>;
|
|
1455
|
+
searchMatches: readonly {
|
|
1456
|
+
id: string;
|
|
1457
|
+
focus: boolean;
|
|
1458
|
+
matchedLines: {
|
|
1459
|
+
offsetX: number;
|
|
1460
|
+
offsetY: number;
|
|
1461
|
+
width: number;
|
|
1462
|
+
height: number;
|
|
1463
|
+
}[];
|
|
1464
|
+
}[];
|
|
1395
1465
|
};
|
|
1396
1466
|
files: import("../types").BinaryFiles;
|
|
1397
1467
|
storeAction: "capture";
|
|
@@ -1583,6 +1653,16 @@ export declare const actionLoadScene: {
|
|
|
1583
1653
|
objectsSnapModeEnabled: boolean;
|
|
1584
1654
|
userToFollow: import("../types").UserToFollow | null;
|
|
1585
1655
|
followedBy: Set<import("../types").SocketId>;
|
|
1656
|
+
searchMatches: readonly {
|
|
1657
|
+
id: string;
|
|
1658
|
+
focus: boolean;
|
|
1659
|
+
matchedLines: {
|
|
1660
|
+
offsetX: number;
|
|
1661
|
+
offsetY: number;
|
|
1662
|
+
width: number;
|
|
1663
|
+
height: number;
|
|
1664
|
+
}[];
|
|
1665
|
+
}[];
|
|
1586
1666
|
};
|
|
1587
1667
|
files: import("../types").BinaryFiles;
|
|
1588
1668
|
storeAction: "none";
|
|
@@ -1785,6 +1865,16 @@ export declare const actionExportWithDarkMode: {
|
|
|
1785
1865
|
objectsSnapModeEnabled: boolean;
|
|
1786
1866
|
userToFollow: import("../types").UserToFollow | null;
|
|
1787
1867
|
followedBy: Set<import("../types").SocketId>;
|
|
1868
|
+
searchMatches: readonly {
|
|
1869
|
+
id: string;
|
|
1870
|
+
focus: boolean;
|
|
1871
|
+
matchedLines: {
|
|
1872
|
+
offsetX: number;
|
|
1873
|
+
offsetY: number;
|
|
1874
|
+
width: number;
|
|
1875
|
+
height: number;
|
|
1876
|
+
}[];
|
|
1877
|
+
}[];
|
|
1788
1878
|
};
|
|
1789
1879
|
storeAction: "none";
|
|
1790
1880
|
};
|