@zsviczian/excalidraw 0.17.1-obsidian-39 → 0.17.1-obsidian-41
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/excalidraw.development.js +63 -30
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/styles.development.css +2 -1
- package/dist/styles.production.css +1 -1
- package/package.json +1 -1
- package/types/excalidraw/actions/actionAddToLibrary.d.ts +12 -9
- package/types/excalidraw/actions/actionBoundText.d.ts +8 -6
- package/types/excalidraw/actions/actionCanvas.d.ts +56 -42
- package/types/excalidraw/actions/actionClipboard.d.ts +28 -21
- package/types/excalidraw/actions/actionDeleteSelected.d.ts +12 -9
- package/types/excalidraw/actions/actionElementLock.d.ts +8 -6
- package/types/excalidraw/actions/actionExport.d.ts +36 -27
- package/types/excalidraw/actions/actionFinalize.d.ts +8 -6
- package/types/excalidraw/actions/actionFrame.d.ts +16 -12
- package/types/excalidraw/actions/actionGroup.d.ts +8 -6
- package/types/excalidraw/actions/actionLinearEditor.d.ts +4 -3
- package/types/excalidraw/actions/actionLink.d.ts +4 -3
- package/types/excalidraw/actions/actionMenu.d.ts +12 -9
- package/types/excalidraw/actions/actionNavigate.d.ts +8 -6
- package/types/excalidraw/actions/actionProperties.d.ts +60 -45
- package/types/excalidraw/actions/actionSelectAll.d.ts +4 -3
- package/types/excalidraw/actions/actionStyles.d.ts +4 -3
- package/types/excalidraw/actions/actionToggleGridMode.d.ts +4 -3
- package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +4 -3
- package/types/excalidraw/actions/actionToggleStats.d.ts +4 -3
- package/types/excalidraw/actions/actionToggleViewMode.d.ts +4 -3
- package/types/excalidraw/actions/actionToggleZenMode.d.ts +4 -3
- package/types/excalidraw/appState.d.ts +9 -3
- package/types/excalidraw/components/App.d.ts +7 -1
- package/types/excalidraw/components/Stats/CanvasGrid.d.ts +10 -0
- package/types/excalidraw/components/Stats/CanvasGridSize.d.ts +10 -0
- package/types/excalidraw/components/Stats/DragInput.d.ts +4 -1
- package/types/excalidraw/components/Stats/index.d.ts +4 -4
- package/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/types/excalidraw/constants.d.ts +2 -1
- package/types/excalidraw/element/dragElements.d.ts +2 -2
- package/types/excalidraw/element/embeddable.d.ts +4 -3
- package/types/excalidraw/element/linearElementEditor.d.ts +11 -10
- package/types/excalidraw/index.d.ts +1 -1
- package/types/excalidraw/math.d.ts +3 -2
- package/types/excalidraw/obsidianUtils.d.ts +2 -1
- package/types/excalidraw/scene/index.d.ts +1 -1
- package/types/excalidraw/scene/normalize.d.ts +4 -0
- package/types/excalidraw/scene/zoom.d.ts +0 -1
- package/types/excalidraw/snapping.d.ts +8 -7
- package/types/excalidraw/types.d.ts +13 -5
- package/types/utils/export.d.ts +1 -1
|
@@ -113,8 +113,9 @@ export declare const actionDeleteSelected: {
|
|
|
113
113
|
} | null;
|
|
114
114
|
zenModeEnabled: boolean;
|
|
115
115
|
theme: import("../element/types").Theme;
|
|
116
|
-
gridSize: number
|
|
117
|
-
|
|
116
|
+
gridSize: number;
|
|
117
|
+
gridStep: number;
|
|
118
|
+
gridModeEnabled: boolean;
|
|
118
119
|
viewModeEnabled: boolean;
|
|
119
120
|
selectedGroupIds: {
|
|
120
121
|
[groupId: string]: boolean;
|
|
@@ -180,8 +181,8 @@ export declare const actionDeleteSelected: {
|
|
|
180
181
|
gridColor: {
|
|
181
182
|
Bold: string;
|
|
182
183
|
Regular: string;
|
|
183
|
-
MajorGridFrequency?: number | undefined;
|
|
184
184
|
};
|
|
185
|
+
highlightSearchResult: boolean;
|
|
185
186
|
dynamicStyle: {
|
|
186
187
|
[x: string]: string;
|
|
187
188
|
};
|
|
@@ -335,8 +336,9 @@ export declare const actionDeleteSelected: {
|
|
|
335
336
|
} | null;
|
|
336
337
|
zenModeEnabled: boolean;
|
|
337
338
|
theme: import("../element/types").Theme;
|
|
338
|
-
gridSize: number
|
|
339
|
-
|
|
339
|
+
gridSize: number;
|
|
340
|
+
gridStep: number;
|
|
341
|
+
gridModeEnabled: boolean;
|
|
340
342
|
viewModeEnabled: boolean;
|
|
341
343
|
selectedGroupIds: {
|
|
342
344
|
[groupId: string]: boolean;
|
|
@@ -402,8 +404,8 @@ export declare const actionDeleteSelected: {
|
|
|
402
404
|
gridColor: {
|
|
403
405
|
Bold: string;
|
|
404
406
|
Regular: string;
|
|
405
|
-
MajorGridFrequency?: number | undefined;
|
|
406
407
|
};
|
|
408
|
+
highlightSearchResult: boolean;
|
|
407
409
|
dynamicStyle: {
|
|
408
410
|
[x: string]: string;
|
|
409
411
|
};
|
|
@@ -524,8 +526,9 @@ export declare const actionDeleteSelected: {
|
|
|
524
526
|
} | null;
|
|
525
527
|
zenModeEnabled: boolean;
|
|
526
528
|
theme: import("../element/types").Theme;
|
|
527
|
-
gridSize: number
|
|
528
|
-
|
|
529
|
+
gridSize: number;
|
|
530
|
+
gridStep: number;
|
|
531
|
+
gridModeEnabled: boolean;
|
|
529
532
|
viewModeEnabled: boolean;
|
|
530
533
|
editingGroupId: string | null;
|
|
531
534
|
width: number;
|
|
@@ -588,8 +591,8 @@ export declare const actionDeleteSelected: {
|
|
|
588
591
|
gridColor: {
|
|
589
592
|
Bold: string;
|
|
590
593
|
Regular: string;
|
|
591
|
-
MajorGridFrequency?: number | undefined;
|
|
592
594
|
};
|
|
595
|
+
highlightSearchResult: boolean;
|
|
593
596
|
dynamicStyle: {
|
|
594
597
|
[x: string]: string;
|
|
595
598
|
};
|
|
@@ -112,8 +112,9 @@ export declare const actionToggleElementLock: {
|
|
|
112
112
|
} | null;
|
|
113
113
|
zenModeEnabled: boolean;
|
|
114
114
|
theme: import("../element/types").Theme;
|
|
115
|
-
gridSize: number
|
|
116
|
-
|
|
115
|
+
gridSize: number;
|
|
116
|
+
gridStep: number;
|
|
117
|
+
gridModeEnabled: boolean;
|
|
117
118
|
viewModeEnabled: boolean;
|
|
118
119
|
selectedGroupIds: {
|
|
119
120
|
[groupId: string]: boolean;
|
|
@@ -179,8 +180,8 @@ export declare const actionToggleElementLock: {
|
|
|
179
180
|
gridColor: {
|
|
180
181
|
Bold: string;
|
|
181
182
|
Regular: string;
|
|
182
|
-
MajorGridFrequency?: number | undefined;
|
|
183
183
|
};
|
|
184
|
+
highlightSearchResult: boolean;
|
|
184
185
|
dynamicStyle: {
|
|
185
186
|
[x: string]: string;
|
|
186
187
|
};
|
|
@@ -318,8 +319,9 @@ export declare const actionUnlockAllElements: {
|
|
|
318
319
|
} | null;
|
|
319
320
|
zenModeEnabled: boolean;
|
|
320
321
|
theme: import("../element/types").Theme;
|
|
321
|
-
gridSize: number
|
|
322
|
-
|
|
322
|
+
gridSize: number;
|
|
323
|
+
gridStep: number;
|
|
324
|
+
gridModeEnabled: boolean;
|
|
323
325
|
viewModeEnabled: boolean;
|
|
324
326
|
selectedGroupIds: {
|
|
325
327
|
[groupId: string]: boolean;
|
|
@@ -385,8 +387,8 @@ export declare const actionUnlockAllElements: {
|
|
|
385
387
|
gridColor: {
|
|
386
388
|
Bold: string;
|
|
387
389
|
Regular: string;
|
|
388
|
-
MajorGridFrequency?: number | undefined;
|
|
389
390
|
};
|
|
391
|
+
highlightSearchResult: boolean;
|
|
390
392
|
dynamicStyle: {
|
|
391
393
|
[x: string]: string;
|
|
392
394
|
};
|
|
@@ -107,8 +107,9 @@ export declare const actionChangeProjectName: {
|
|
|
107
107
|
} | null;
|
|
108
108
|
zenModeEnabled: boolean;
|
|
109
109
|
theme: Theme;
|
|
110
|
-
gridSize: number
|
|
111
|
-
|
|
110
|
+
gridSize: number;
|
|
111
|
+
gridStep: number;
|
|
112
|
+
gridModeEnabled: boolean;
|
|
112
113
|
viewModeEnabled: boolean;
|
|
113
114
|
selectedGroupIds: {
|
|
114
115
|
[groupId: string]: boolean;
|
|
@@ -174,8 +175,8 @@ export declare const actionChangeProjectName: {
|
|
|
174
175
|
gridColor: {
|
|
175
176
|
Bold: string;
|
|
176
177
|
Regular: string;
|
|
177
|
-
MajorGridFrequency?: number | undefined;
|
|
178
178
|
};
|
|
179
|
+
highlightSearchResult: boolean;
|
|
179
180
|
dynamicStyle: {
|
|
180
181
|
[x: string]: string;
|
|
181
182
|
};
|
|
@@ -311,8 +312,9 @@ export declare const actionChangeExportScale: {
|
|
|
311
312
|
} | null;
|
|
312
313
|
zenModeEnabled: boolean;
|
|
313
314
|
theme: Theme;
|
|
314
|
-
gridSize: number
|
|
315
|
-
|
|
315
|
+
gridSize: number;
|
|
316
|
+
gridStep: number;
|
|
317
|
+
gridModeEnabled: boolean;
|
|
316
318
|
viewModeEnabled: boolean;
|
|
317
319
|
selectedGroupIds: {
|
|
318
320
|
[groupId: string]: boolean;
|
|
@@ -378,8 +380,8 @@ export declare const actionChangeExportScale: {
|
|
|
378
380
|
gridColor: {
|
|
379
381
|
Bold: string;
|
|
380
382
|
Regular: string;
|
|
381
|
-
MajorGridFrequency?: number | undefined;
|
|
382
383
|
};
|
|
384
|
+
highlightSearchResult: boolean;
|
|
383
385
|
dynamicStyle: {
|
|
384
386
|
[x: string]: string;
|
|
385
387
|
};
|
|
@@ -515,8 +517,9 @@ export declare const actionChangeExportBackground: {
|
|
|
515
517
|
} | null;
|
|
516
518
|
zenModeEnabled: boolean;
|
|
517
519
|
theme: Theme;
|
|
518
|
-
gridSize: number
|
|
519
|
-
|
|
520
|
+
gridSize: number;
|
|
521
|
+
gridStep: number;
|
|
522
|
+
gridModeEnabled: boolean;
|
|
520
523
|
viewModeEnabled: boolean;
|
|
521
524
|
selectedGroupIds: {
|
|
522
525
|
[groupId: string]: boolean;
|
|
@@ -582,8 +585,8 @@ export declare const actionChangeExportBackground: {
|
|
|
582
585
|
gridColor: {
|
|
583
586
|
Bold: string;
|
|
584
587
|
Regular: string;
|
|
585
|
-
MajorGridFrequency?: number | undefined;
|
|
586
588
|
};
|
|
589
|
+
highlightSearchResult: boolean;
|
|
587
590
|
dynamicStyle: {
|
|
588
591
|
[x: string]: string;
|
|
589
592
|
};
|
|
@@ -719,8 +722,9 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
719
722
|
} | null;
|
|
720
723
|
zenModeEnabled: boolean;
|
|
721
724
|
theme: Theme;
|
|
722
|
-
gridSize: number
|
|
723
|
-
|
|
725
|
+
gridSize: number;
|
|
726
|
+
gridStep: number;
|
|
727
|
+
gridModeEnabled: boolean;
|
|
724
728
|
viewModeEnabled: boolean;
|
|
725
729
|
selectedGroupIds: {
|
|
726
730
|
[groupId: string]: boolean;
|
|
@@ -786,8 +790,8 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
786
790
|
gridColor: {
|
|
787
791
|
Bold: string;
|
|
788
792
|
Regular: string;
|
|
789
|
-
MajorGridFrequency?: number | undefined;
|
|
790
793
|
};
|
|
794
|
+
highlightSearchResult: boolean;
|
|
791
795
|
dynamicStyle: {
|
|
792
796
|
[x: string]: string;
|
|
793
797
|
};
|
|
@@ -924,8 +928,9 @@ export declare const actionSaveToActiveFile: {
|
|
|
924
928
|
shouldCacheIgnoreZoom: boolean;
|
|
925
929
|
zenModeEnabled: boolean;
|
|
926
930
|
theme: Theme;
|
|
927
|
-
gridSize: number
|
|
928
|
-
|
|
931
|
+
gridSize: number;
|
|
932
|
+
gridStep: number;
|
|
933
|
+
gridModeEnabled: boolean;
|
|
929
934
|
viewModeEnabled: boolean;
|
|
930
935
|
selectedGroupIds: {
|
|
931
936
|
[groupId: string]: boolean;
|
|
@@ -990,8 +995,8 @@ export declare const actionSaveToActiveFile: {
|
|
|
990
995
|
gridColor: {
|
|
991
996
|
Bold: string;
|
|
992
997
|
Regular: string;
|
|
993
|
-
MajorGridFrequency?: number | undefined;
|
|
994
998
|
};
|
|
999
|
+
highlightSearchResult: boolean;
|
|
995
1000
|
dynamicStyle: {
|
|
996
1001
|
[x: string]: string;
|
|
997
1002
|
};
|
|
@@ -1119,8 +1124,9 @@ export declare const actionSaveFileToDisk: {
|
|
|
1119
1124
|
shouldCacheIgnoreZoom: boolean;
|
|
1120
1125
|
zenModeEnabled: boolean;
|
|
1121
1126
|
theme: Theme;
|
|
1122
|
-
gridSize: number
|
|
1123
|
-
|
|
1127
|
+
gridSize: number;
|
|
1128
|
+
gridStep: number;
|
|
1129
|
+
gridModeEnabled: boolean;
|
|
1124
1130
|
viewModeEnabled: boolean;
|
|
1125
1131
|
selectedGroupIds: {
|
|
1126
1132
|
[groupId: string]: boolean;
|
|
@@ -1185,8 +1191,8 @@ export declare const actionSaveFileToDisk: {
|
|
|
1185
1191
|
gridColor: {
|
|
1186
1192
|
Bold: string;
|
|
1187
1193
|
Regular: string;
|
|
1188
|
-
MajorGridFrequency?: number | undefined;
|
|
1189
1194
|
};
|
|
1195
|
+
highlightSearchResult: boolean;
|
|
1190
1196
|
dynamicStyle: {
|
|
1191
1197
|
[x: string]: string;
|
|
1192
1198
|
};
|
|
@@ -1227,6 +1233,7 @@ export declare const actionLoadScene: {
|
|
|
1227
1233
|
appState: {
|
|
1228
1234
|
viewModeEnabled: boolean;
|
|
1229
1235
|
zenModeEnabled: boolean;
|
|
1236
|
+
gridModeEnabled: boolean;
|
|
1230
1237
|
objectsSnapModeEnabled: boolean;
|
|
1231
1238
|
theme: Theme;
|
|
1232
1239
|
name: string | null;
|
|
@@ -1328,8 +1335,8 @@ export declare const actionLoadScene: {
|
|
|
1328
1335
|
closable?: boolean | undefined;
|
|
1329
1336
|
duration?: number | undefined;
|
|
1330
1337
|
} | null;
|
|
1331
|
-
gridSize: number
|
|
1332
|
-
|
|
1338
|
+
gridSize: number;
|
|
1339
|
+
gridStep: number;
|
|
1333
1340
|
selectedGroupIds: {
|
|
1334
1341
|
[groupId: string]: boolean;
|
|
1335
1342
|
};
|
|
@@ -1390,8 +1397,8 @@ export declare const actionLoadScene: {
|
|
|
1390
1397
|
gridColor: {
|
|
1391
1398
|
Bold: string;
|
|
1392
1399
|
Regular: string;
|
|
1393
|
-
MajorGridFrequency?: number | undefined;
|
|
1394
1400
|
};
|
|
1401
|
+
highlightSearchResult: boolean;
|
|
1395
1402
|
dynamicStyle: {
|
|
1396
1403
|
[x: string]: string;
|
|
1397
1404
|
};
|
|
@@ -1516,8 +1523,9 @@ export declare const actionLoadScene: {
|
|
|
1516
1523
|
} | null;
|
|
1517
1524
|
zenModeEnabled: boolean;
|
|
1518
1525
|
theme: Theme;
|
|
1519
|
-
gridSize: number
|
|
1520
|
-
|
|
1526
|
+
gridSize: number;
|
|
1527
|
+
gridStep: number;
|
|
1528
|
+
gridModeEnabled: boolean;
|
|
1521
1529
|
viewModeEnabled: boolean;
|
|
1522
1530
|
selectedGroupIds: {
|
|
1523
1531
|
[groupId: string]: boolean;
|
|
@@ -1583,8 +1591,8 @@ export declare const actionLoadScene: {
|
|
|
1583
1591
|
gridColor: {
|
|
1584
1592
|
Bold: string;
|
|
1585
1593
|
Regular: string;
|
|
1586
|
-
MajorGridFrequency?: number | undefined;
|
|
1587
1594
|
};
|
|
1595
|
+
highlightSearchResult: boolean;
|
|
1588
1596
|
dynamicStyle: {
|
|
1589
1597
|
[x: string]: string;
|
|
1590
1598
|
};
|
|
@@ -1721,8 +1729,9 @@ export declare const actionExportWithDarkMode: {
|
|
|
1721
1729
|
} | null;
|
|
1722
1730
|
zenModeEnabled: boolean;
|
|
1723
1731
|
theme: Theme;
|
|
1724
|
-
gridSize: number
|
|
1725
|
-
|
|
1732
|
+
gridSize: number;
|
|
1733
|
+
gridStep: number;
|
|
1734
|
+
gridModeEnabled: boolean;
|
|
1726
1735
|
viewModeEnabled: boolean;
|
|
1727
1736
|
selectedGroupIds: {
|
|
1728
1737
|
[groupId: string]: boolean;
|
|
@@ -1788,8 +1797,8 @@ export declare const actionExportWithDarkMode: {
|
|
|
1788
1797
|
gridColor: {
|
|
1789
1798
|
Bold: string;
|
|
1790
1799
|
Regular: string;
|
|
1791
|
-
MajorGridFrequency?: number | undefined;
|
|
1792
1800
|
};
|
|
1801
|
+
highlightSearchResult: boolean;
|
|
1793
1802
|
dynamicStyle: {
|
|
1794
1803
|
[x: string]: string;
|
|
1795
1804
|
};
|
|
@@ -109,8 +109,9 @@ export declare const actionFinalize: {
|
|
|
109
109
|
} | null;
|
|
110
110
|
zenModeEnabled: boolean;
|
|
111
111
|
theme: import("../element/types").Theme;
|
|
112
|
-
gridSize: number
|
|
113
|
-
|
|
112
|
+
gridSize: number;
|
|
113
|
+
gridStep: number;
|
|
114
|
+
gridModeEnabled: boolean;
|
|
114
115
|
viewModeEnabled: boolean;
|
|
115
116
|
selectedGroupIds: {
|
|
116
117
|
[groupId: string]: boolean;
|
|
@@ -176,8 +177,8 @@ export declare const actionFinalize: {
|
|
|
176
177
|
gridColor: {
|
|
177
178
|
Bold: string;
|
|
178
179
|
Regular: string;
|
|
179
|
-
MajorGridFrequency?: number | undefined;
|
|
180
180
|
};
|
|
181
|
+
highlightSearchResult: boolean;
|
|
181
182
|
dynamicStyle: {
|
|
182
183
|
[x: string]: string;
|
|
183
184
|
};
|
|
@@ -300,8 +301,9 @@ export declare const actionFinalize: {
|
|
|
300
301
|
} | null;
|
|
301
302
|
zenModeEnabled: boolean;
|
|
302
303
|
theme: import("../element/types").Theme;
|
|
303
|
-
gridSize: number
|
|
304
|
-
|
|
304
|
+
gridSize: number;
|
|
305
|
+
gridStep: number;
|
|
306
|
+
gridModeEnabled: boolean;
|
|
305
307
|
viewModeEnabled: boolean;
|
|
306
308
|
selectedGroupIds: {
|
|
307
309
|
[groupId: string]: boolean;
|
|
@@ -366,8 +368,8 @@ export declare const actionFinalize: {
|
|
|
366
368
|
gridColor: {
|
|
367
369
|
Bold: string;
|
|
368
370
|
Regular: string;
|
|
369
|
-
MajorGridFrequency?: number | undefined;
|
|
370
371
|
};
|
|
372
|
+
highlightSearchResult: boolean;
|
|
371
373
|
dynamicStyle: {
|
|
372
374
|
[x: string]: string;
|
|
373
375
|
};
|
|
@@ -108,8 +108,9 @@ export declare const actionSelectAllElementsInFrame: {
|
|
|
108
108
|
} | null;
|
|
109
109
|
zenModeEnabled: boolean;
|
|
110
110
|
theme: import("../element/types").Theme;
|
|
111
|
-
gridSize: number
|
|
112
|
-
|
|
111
|
+
gridSize: number;
|
|
112
|
+
gridStep: number;
|
|
113
|
+
gridModeEnabled: boolean;
|
|
113
114
|
viewModeEnabled: boolean;
|
|
114
115
|
selectedGroupIds: {
|
|
115
116
|
[groupId: string]: boolean;
|
|
@@ -175,8 +176,8 @@ export declare const actionSelectAllElementsInFrame: {
|
|
|
175
176
|
gridColor: {
|
|
176
177
|
Bold: string;
|
|
177
178
|
Regular: string;
|
|
178
|
-
MajorGridFrequency?: number | undefined;
|
|
179
179
|
};
|
|
180
|
+
highlightSearchResult: boolean;
|
|
180
181
|
dynamicStyle: {
|
|
181
182
|
[x: string]: string;
|
|
182
183
|
};
|
|
@@ -316,8 +317,9 @@ export declare const actionRemoveAllElementsFromFrame: {
|
|
|
316
317
|
} | null;
|
|
317
318
|
zenModeEnabled: boolean;
|
|
318
319
|
theme: import("../element/types").Theme;
|
|
319
|
-
gridSize: number
|
|
320
|
-
|
|
320
|
+
gridSize: number;
|
|
321
|
+
gridStep: number;
|
|
322
|
+
gridModeEnabled: boolean;
|
|
321
323
|
viewModeEnabled: boolean;
|
|
322
324
|
selectedGroupIds: {
|
|
323
325
|
[groupId: string]: boolean;
|
|
@@ -383,8 +385,8 @@ export declare const actionRemoveAllElementsFromFrame: {
|
|
|
383
385
|
gridColor: {
|
|
384
386
|
Bold: string;
|
|
385
387
|
Regular: string;
|
|
386
|
-
MajorGridFrequency?: number | undefined;
|
|
387
388
|
};
|
|
389
|
+
highlightSearchResult: boolean;
|
|
388
390
|
dynamicStyle: {
|
|
389
391
|
[x: string]: string;
|
|
390
392
|
};
|
|
@@ -525,8 +527,9 @@ export declare const actionupdateFrameRendering: {
|
|
|
525
527
|
} | null;
|
|
526
528
|
zenModeEnabled: boolean;
|
|
527
529
|
theme: import("../element/types").Theme;
|
|
528
|
-
gridSize: number
|
|
529
|
-
|
|
530
|
+
gridSize: number;
|
|
531
|
+
gridStep: number;
|
|
532
|
+
gridModeEnabled: boolean;
|
|
530
533
|
viewModeEnabled: boolean;
|
|
531
534
|
selectedGroupIds: {
|
|
532
535
|
[groupId: string]: boolean;
|
|
@@ -592,8 +595,8 @@ export declare const actionupdateFrameRendering: {
|
|
|
592
595
|
gridColor: {
|
|
593
596
|
Bold: string;
|
|
594
597
|
Regular: string;
|
|
595
|
-
MajorGridFrequency?: number | undefined;
|
|
596
598
|
};
|
|
599
|
+
highlightSearchResult: boolean;
|
|
597
600
|
dynamicStyle: {
|
|
598
601
|
[x: string]: string;
|
|
599
602
|
};
|
|
@@ -731,8 +734,9 @@ export declare const actionSetFrameAsActiveTool: {
|
|
|
731
734
|
} | null;
|
|
732
735
|
zenModeEnabled: boolean;
|
|
733
736
|
theme: import("../element/types").Theme;
|
|
734
|
-
gridSize: number
|
|
735
|
-
|
|
737
|
+
gridSize: number;
|
|
738
|
+
gridStep: number;
|
|
739
|
+
gridModeEnabled: boolean;
|
|
736
740
|
viewModeEnabled: boolean;
|
|
737
741
|
selectedGroupIds: {
|
|
738
742
|
[groupId: string]: boolean;
|
|
@@ -798,8 +802,8 @@ export declare const actionSetFrameAsActiveTool: {
|
|
|
798
802
|
gridColor: {
|
|
799
803
|
Bold: string;
|
|
800
804
|
Regular: string;
|
|
801
|
-
MajorGridFrequency?: number | undefined;
|
|
802
805
|
};
|
|
806
|
+
highlightSearchResult: boolean;
|
|
803
807
|
dynamicStyle: {
|
|
804
808
|
[x: string]: string;
|
|
805
809
|
};
|
|
@@ -118,8 +118,9 @@ export declare const actionGroup: {
|
|
|
118
118
|
} | null;
|
|
119
119
|
zenModeEnabled: boolean;
|
|
120
120
|
theme: import("../element/types").Theme;
|
|
121
|
-
gridSize: number
|
|
122
|
-
|
|
121
|
+
gridSize: number;
|
|
122
|
+
gridStep: number;
|
|
123
|
+
gridModeEnabled: boolean;
|
|
123
124
|
viewModeEnabled: boolean;
|
|
124
125
|
width: number;
|
|
125
126
|
height: number;
|
|
@@ -181,8 +182,8 @@ export declare const actionGroup: {
|
|
|
181
182
|
gridColor: {
|
|
182
183
|
Bold: string;
|
|
183
184
|
Regular: string;
|
|
184
|
-
MajorGridFrequency?: number | undefined;
|
|
185
185
|
};
|
|
186
|
+
highlightSearchResult: boolean;
|
|
186
187
|
dynamicStyle: {
|
|
187
188
|
[x: string]: string;
|
|
188
189
|
};
|
|
@@ -329,8 +330,9 @@ export declare const actionUngroup: {
|
|
|
329
330
|
} | null;
|
|
330
331
|
zenModeEnabled: boolean;
|
|
331
332
|
theme: import("../element/types").Theme;
|
|
332
|
-
gridSize: number
|
|
333
|
-
|
|
333
|
+
gridSize: number;
|
|
334
|
+
gridStep: number;
|
|
335
|
+
gridModeEnabled: boolean;
|
|
334
336
|
viewModeEnabled: boolean;
|
|
335
337
|
width: number;
|
|
336
338
|
height: number;
|
|
@@ -392,8 +394,8 @@ export declare const actionUngroup: {
|
|
|
392
394
|
gridColor: {
|
|
393
395
|
Bold: string;
|
|
394
396
|
Regular: string;
|
|
395
|
-
MajorGridFrequency?: number | undefined;
|
|
396
397
|
};
|
|
398
|
+
highlightSearchResult: boolean;
|
|
397
399
|
dynamicStyle: {
|
|
398
400
|
[x: string]: string;
|
|
399
401
|
};
|
|
@@ -112,8 +112,9 @@ export declare const actionToggleLinearEditor: {
|
|
|
112
112
|
} | null;
|
|
113
113
|
zenModeEnabled: boolean;
|
|
114
114
|
theme: import("../element/types").Theme;
|
|
115
|
-
gridSize: number
|
|
116
|
-
|
|
115
|
+
gridSize: number;
|
|
116
|
+
gridStep: number;
|
|
117
|
+
gridModeEnabled: boolean;
|
|
117
118
|
viewModeEnabled: boolean;
|
|
118
119
|
selectedGroupIds: {
|
|
119
120
|
[groupId: string]: boolean;
|
|
@@ -179,8 +180,8 @@ export declare const actionToggleLinearEditor: {
|
|
|
179
180
|
gridColor: {
|
|
180
181
|
Bold: string;
|
|
181
182
|
Regular: string;
|
|
182
|
-
MajorGridFrequency?: number | undefined;
|
|
183
183
|
};
|
|
184
|
+
highlightSearchResult: boolean;
|
|
184
185
|
dynamicStyle: {
|
|
185
186
|
[x: string]: string;
|
|
186
187
|
};
|
|
@@ -107,8 +107,9 @@ export declare const actionLink: {
|
|
|
107
107
|
} | null;
|
|
108
108
|
zenModeEnabled: boolean;
|
|
109
109
|
theme: import("../element/types").Theme;
|
|
110
|
-
gridSize: number
|
|
111
|
-
|
|
110
|
+
gridSize: number;
|
|
111
|
+
gridStep: number;
|
|
112
|
+
gridModeEnabled: boolean;
|
|
112
113
|
viewModeEnabled: boolean;
|
|
113
114
|
selectedGroupIds: {
|
|
114
115
|
[groupId: string]: boolean;
|
|
@@ -173,8 +174,8 @@ export declare const actionLink: {
|
|
|
173
174
|
gridColor: {
|
|
174
175
|
Bold: string;
|
|
175
176
|
Regular: string;
|
|
176
|
-
MajorGridFrequency?: number | undefined;
|
|
177
177
|
};
|
|
178
|
+
highlightSearchResult: boolean;
|
|
178
179
|
dynamicStyle: {
|
|
179
180
|
[x: string]: string;
|
|
180
181
|
};
|
|
@@ -107,8 +107,9 @@ export declare const actionToggleCanvasMenu: {
|
|
|
107
107
|
} | null;
|
|
108
108
|
zenModeEnabled: boolean;
|
|
109
109
|
theme: import("../element/types").Theme;
|
|
110
|
-
gridSize: number
|
|
111
|
-
|
|
110
|
+
gridSize: number;
|
|
111
|
+
gridStep: number;
|
|
112
|
+
gridModeEnabled: boolean;
|
|
112
113
|
viewModeEnabled: boolean;
|
|
113
114
|
selectedGroupIds: {
|
|
114
115
|
[groupId: string]: boolean;
|
|
@@ -174,8 +175,8 @@ export declare const actionToggleCanvasMenu: {
|
|
|
174
175
|
gridColor: {
|
|
175
176
|
Bold: string;
|
|
176
177
|
Regular: string;
|
|
177
|
-
MajorGridFrequency?: number | undefined;
|
|
178
178
|
};
|
|
179
|
+
highlightSearchResult: boolean;
|
|
179
180
|
dynamicStyle: {
|
|
180
181
|
[x: string]: string;
|
|
181
182
|
};
|
|
@@ -310,8 +311,9 @@ export declare const actionToggleEditMenu: {
|
|
|
310
311
|
} | null;
|
|
311
312
|
zenModeEnabled: boolean;
|
|
312
313
|
theme: import("../element/types").Theme;
|
|
313
|
-
gridSize: number
|
|
314
|
-
|
|
314
|
+
gridSize: number;
|
|
315
|
+
gridStep: number;
|
|
316
|
+
gridModeEnabled: boolean;
|
|
315
317
|
viewModeEnabled: boolean;
|
|
316
318
|
selectedGroupIds: {
|
|
317
319
|
[groupId: string]: boolean;
|
|
@@ -377,8 +379,8 @@ export declare const actionToggleEditMenu: {
|
|
|
377
379
|
gridColor: {
|
|
378
380
|
Bold: string;
|
|
379
381
|
Regular: string;
|
|
380
|
-
MajorGridFrequency?: number | undefined;
|
|
381
382
|
};
|
|
383
|
+
highlightSearchResult: boolean;
|
|
382
384
|
dynamicStyle: {
|
|
383
385
|
[x: string]: string;
|
|
384
386
|
};
|
|
@@ -507,8 +509,9 @@ export declare const actionShortcuts: {
|
|
|
507
509
|
} | null;
|
|
508
510
|
zenModeEnabled: boolean;
|
|
509
511
|
theme: import("../element/types").Theme;
|
|
510
|
-
gridSize: number
|
|
511
|
-
|
|
512
|
+
gridSize: number;
|
|
513
|
+
gridStep: number;
|
|
514
|
+
gridModeEnabled: boolean;
|
|
512
515
|
viewModeEnabled: boolean;
|
|
513
516
|
selectedGroupIds: {
|
|
514
517
|
[groupId: string]: boolean;
|
|
@@ -574,8 +577,8 @@ export declare const actionShortcuts: {
|
|
|
574
577
|
gridColor: {
|
|
575
578
|
Bold: string;
|
|
576
579
|
Regular: string;
|
|
577
|
-
MajorGridFrequency?: number | undefined;
|
|
578
580
|
};
|
|
581
|
+
highlightSearchResult: boolean;
|
|
579
582
|
dynamicStyle: {
|
|
580
583
|
[x: string]: string;
|
|
581
584
|
};
|
|
@@ -110,8 +110,9 @@ export declare const actionGoToCollaborator: {
|
|
|
110
110
|
} | null;
|
|
111
111
|
zenModeEnabled: boolean;
|
|
112
112
|
theme: import("../element/types").Theme;
|
|
113
|
-
gridSize: number
|
|
114
|
-
|
|
113
|
+
gridSize: number;
|
|
114
|
+
gridStep: number;
|
|
115
|
+
gridModeEnabled: boolean;
|
|
115
116
|
viewModeEnabled: boolean;
|
|
116
117
|
selectedGroupIds: {
|
|
117
118
|
[groupId: string]: boolean;
|
|
@@ -177,8 +178,8 @@ export declare const actionGoToCollaborator: {
|
|
|
177
178
|
gridColor: {
|
|
178
179
|
Bold: string;
|
|
179
180
|
Regular: string;
|
|
180
|
-
MajorGridFrequency?: number | undefined;
|
|
181
181
|
};
|
|
182
|
+
highlightSearchResult: boolean;
|
|
182
183
|
dynamicStyle: {
|
|
183
184
|
[x: string]: string;
|
|
184
185
|
};
|
|
@@ -305,8 +306,9 @@ export declare const actionGoToCollaborator: {
|
|
|
305
306
|
} | null;
|
|
306
307
|
zenModeEnabled: boolean;
|
|
307
308
|
theme: import("../element/types").Theme;
|
|
308
|
-
gridSize: number
|
|
309
|
-
|
|
309
|
+
gridSize: number;
|
|
310
|
+
gridStep: number;
|
|
311
|
+
gridModeEnabled: boolean;
|
|
310
312
|
viewModeEnabled: boolean;
|
|
311
313
|
selectedGroupIds: {
|
|
312
314
|
[groupId: string]: boolean;
|
|
@@ -372,8 +374,8 @@ export declare const actionGoToCollaborator: {
|
|
|
372
374
|
gridColor: {
|
|
373
375
|
Bold: string;
|
|
374
376
|
Regular: string;
|
|
375
|
-
MajorGridFrequency?: number | undefined;
|
|
376
377
|
};
|
|
378
|
+
highlightSearchResult: boolean;
|
|
377
379
|
dynamicStyle: {
|
|
378
380
|
[x: string]: string;
|
|
379
381
|
};
|