@zsviczian/excalidraw 0.18.0-30-printFrame-test-1 → 0.18.0-31

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.
Files changed (37) hide show
  1. package/dist/excalidraw.development.js +20 -20
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/package.json +1 -1
  4. package/types/element/src/newElement.d.ts +1 -0
  5. package/types/element/src/types.d.ts +8 -1
  6. package/types/excalidraw/actions/actionAddToLibrary.d.ts +9 -0
  7. package/types/excalidraw/actions/actionBoundText.d.ts +6 -0
  8. package/types/excalidraw/actions/actionCanvas.d.ts +60 -15
  9. package/types/excalidraw/actions/actionClipboard.d.ts +18 -0
  10. package/types/excalidraw/actions/actionCropEditor.d.ts +3 -0
  11. package/types/excalidraw/actions/actionDeleteSelected.d.ts +9 -0
  12. package/types/excalidraw/actions/actionElementLink.d.ts +3 -0
  13. package/types/excalidraw/actions/actionElementLock.d.ts +6 -0
  14. package/types/excalidraw/actions/actionEmbeddable.d.ts +3 -0
  15. package/types/excalidraw/actions/actionExport.d.ts +27 -0
  16. package/types/excalidraw/actions/actionFinalize.d.ts +9 -0
  17. package/types/excalidraw/actions/actionFrame.d.ts +19 -1
  18. package/types/excalidraw/actions/actionGroup.d.ts +6 -0
  19. package/types/excalidraw/actions/actionLinearEditor.d.ts +10 -1
  20. package/types/excalidraw/actions/actionLink.d.ts +3 -0
  21. package/types/excalidraw/actions/actionMenu.d.ts +9 -0
  22. package/types/excalidraw/actions/actionNavigate.d.ts +6 -0
  23. package/types/excalidraw/actions/actionProperties.d.ts +275 -0
  24. package/types/excalidraw/actions/actionSelectAll.d.ts +3 -0
  25. package/types/excalidraw/actions/actionStyles.d.ts +3 -0
  26. package/types/excalidraw/actions/actionToggleGridMode.d.ts +3 -0
  27. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +3 -0
  28. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +3 -0
  29. package/types/excalidraw/actions/actionToggleStats.d.ts +3 -0
  30. package/types/excalidraw/actions/actionToggleViewMode.d.ts +3 -0
  31. package/types/excalidraw/actions/actionToggleZenMode.d.ts +3 -0
  32. package/types/excalidraw/actions/index.d.ts +1 -0
  33. package/types/excalidraw/actions/types.d.ts +1 -1
  34. package/types/excalidraw/appState.d.ts +1 -0
  35. package/types/excalidraw/components/App.d.ts +2 -0
  36. package/types/excalidraw/components/icons.d.ts +1 -0
  37. package/types/excalidraw/types.d.ts +3 -0
@@ -37,6 +37,8 @@ export declare const actionDeleteSelected: {
37
37
  name: boolean;
38
38
  outline: boolean;
39
39
  clip: boolean;
40
+ markerName: boolean;
41
+ markerEnabled: boolean;
40
42
  };
41
43
  editingFrame: string | null;
42
44
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -67,6 +69,7 @@ export declare const actionDeleteSelected: {
67
69
  currentHoveredFontFamily: number | null;
68
70
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
69
71
  currentItemArrowType: "round" | "sharp" | "elbow";
72
+ currentItemFrameRole: ("marker" | null) | undefined;
70
73
  viewBackgroundColor: string;
71
74
  scrollX: number;
72
75
  scrollY: number;
@@ -278,6 +281,8 @@ export declare const actionDeleteSelected: {
278
281
  name: boolean;
279
282
  outline: boolean;
280
283
  clip: boolean;
284
+ markerName: boolean;
285
+ markerEnabled: boolean;
281
286
  };
282
287
  editingFrame: string | null;
283
288
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -308,6 +313,7 @@ export declare const actionDeleteSelected: {
308
313
  currentHoveredFontFamily: number | null;
309
314
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
310
315
  currentItemArrowType: "round" | "sharp" | "elbow";
316
+ currentItemFrameRole: ("marker" | null) | undefined;
311
317
  viewBackgroundColor: string;
312
318
  scrollX: number;
313
319
  scrollY: number;
@@ -496,6 +502,8 @@ export declare const actionDeleteSelected: {
496
502
  name: boolean;
497
503
  outline: boolean;
498
504
  clip: boolean;
505
+ markerName: boolean;
506
+ markerEnabled: boolean;
499
507
  };
500
508
  editingFrame: string | null;
501
509
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -521,6 +529,7 @@ export declare const actionDeleteSelected: {
521
529
  currentHoveredFontFamily: number | null;
522
530
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
523
531
  currentItemArrowType: "round" | "sharp" | "elbow";
532
+ currentItemFrameRole: ("marker" | null) | undefined;
524
533
  viewBackgroundColor: string;
525
534
  scrollX: number;
526
535
  scrollY: number;
@@ -65,6 +65,8 @@ export declare const actionLinkToElement: {
65
65
  name: boolean;
66
66
  outline: boolean;
67
67
  clip: boolean;
68
+ markerName: boolean;
69
+ markerEnabled: boolean;
68
70
  };
69
71
  editingFrame: string | null;
70
72
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -95,6 +97,7 @@ export declare const actionLinkToElement: {
95
97
  currentHoveredFontFamily: number | null;
96
98
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
97
99
  currentItemArrowType: "round" | "sharp" | "elbow";
100
+ currentItemFrameRole: ("marker" | null) | undefined;
98
101
  viewBackgroundColor: string;
99
102
  scrollX: number;
100
103
  scrollY: number;
@@ -47,6 +47,8 @@ export declare const actionToggleElementLock: {
47
47
  name: boolean;
48
48
  outline: boolean;
49
49
  clip: boolean;
50
+ markerName: boolean;
51
+ markerEnabled: boolean;
50
52
  };
51
53
  editingFrame: string | null;
52
54
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -77,6 +79,7 @@ export declare const actionToggleElementLock: {
77
79
  currentHoveredFontFamily: number | null;
78
80
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
79
81
  currentItemArrowType: "round" | "sharp" | "elbow";
82
+ currentItemFrameRole: ("marker" | null) | undefined;
80
83
  viewBackgroundColor: string;
81
84
  scrollX: number;
82
85
  scrollY: number;
@@ -266,6 +269,8 @@ export declare const actionUnlockAllElements: {
266
269
  name: boolean;
267
270
  outline: boolean;
268
271
  clip: boolean;
272
+ markerName: boolean;
273
+ markerEnabled: boolean;
269
274
  };
270
275
  editingFrame: string | null;
271
276
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -296,6 +301,7 @@ export declare const actionUnlockAllElements: {
296
301
  currentHoveredFontFamily: number | null;
297
302
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
298
303
  currentItemArrowType: "round" | "sharp" | "elbow";
304
+ currentItemFrameRole: ("marker" | null) | undefined;
299
305
  viewBackgroundColor: string;
300
306
  scrollX: number;
301
307
  scrollY: number;
@@ -38,6 +38,8 @@ export declare const actionSetEmbeddableAsActiveTool: {
38
38
  name: boolean;
39
39
  outline: boolean;
40
40
  clip: boolean;
41
+ markerName: boolean;
42
+ markerEnabled: boolean;
41
43
  };
42
44
  editingFrame: string | null;
43
45
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -63,6 +65,7 @@ export declare const actionSetEmbeddableAsActiveTool: {
63
65
  currentHoveredFontFamily: number | null;
64
66
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
65
67
  currentItemArrowType: "round" | "sharp" | "elbow";
68
+ currentItemFrameRole: ("marker" | null) | undefined;
66
69
  viewBackgroundColor: string;
67
70
  scrollX: number;
68
71
  scrollY: number;
@@ -32,6 +32,8 @@ export declare const actionChangeProjectName: {
32
32
  name: boolean;
33
33
  outline: boolean;
34
34
  clip: boolean;
35
+ markerName: boolean;
36
+ markerEnabled: boolean;
35
37
  };
36
38
  editingFrame: string | null;
37
39
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -62,6 +64,7 @@ export declare const actionChangeProjectName: {
62
64
  currentHoveredFontFamily: number | null;
63
65
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
64
66
  currentItemArrowType: "round" | "sharp" | "elbow";
67
+ currentItemFrameRole: ("marker" | null) | undefined;
65
68
  viewBackgroundColor: string;
66
69
  scrollX: number;
67
70
  scrollY: number;
@@ -252,6 +255,8 @@ export declare const actionChangeExportScale: {
252
255
  name: boolean;
253
256
  outline: boolean;
254
257
  clip: boolean;
258
+ markerName: boolean;
259
+ markerEnabled: boolean;
255
260
  };
256
261
  editingFrame: string | null;
257
262
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -281,6 +286,7 @@ export declare const actionChangeExportScale: {
281
286
  currentHoveredFontFamily: number | null;
282
287
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
283
288
  currentItemArrowType: "round" | "sharp" | "elbow";
289
+ currentItemFrameRole: ("marker" | null) | undefined;
284
290
  viewBackgroundColor: string;
285
291
  scrollX: number;
286
292
  scrollY: number;
@@ -472,6 +478,8 @@ export declare const actionChangeExportBackground: {
472
478
  name: boolean;
473
479
  outline: boolean;
474
480
  clip: boolean;
481
+ markerName: boolean;
482
+ markerEnabled: boolean;
475
483
  };
476
484
  editingFrame: string | null;
477
485
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -501,6 +509,7 @@ export declare const actionChangeExportBackground: {
501
509
  currentHoveredFontFamily: number | null;
502
510
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
503
511
  currentItemArrowType: "round" | "sharp" | "elbow";
512
+ currentItemFrameRole: ("marker" | null) | undefined;
504
513
  viewBackgroundColor: string;
505
514
  scrollX: number;
506
515
  scrollY: number;
@@ -692,6 +701,8 @@ export declare const actionChangeExportEmbedScene: {
692
701
  name: boolean;
693
702
  outline: boolean;
694
703
  clip: boolean;
704
+ markerName: boolean;
705
+ markerEnabled: boolean;
695
706
  };
696
707
  editingFrame: string | null;
697
708
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -721,6 +732,7 @@ export declare const actionChangeExportEmbedScene: {
721
732
  currentHoveredFontFamily: number | null;
722
733
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
723
734
  currentItemArrowType: "round" | "sharp" | "elbow";
735
+ currentItemFrameRole: ("marker" | null) | undefined;
724
736
  viewBackgroundColor: string;
725
737
  scrollX: number;
726
738
  scrollY: number;
@@ -917,6 +929,8 @@ export declare const actionSaveToActiveFile: {
917
929
  name: boolean;
918
930
  outline: boolean;
919
931
  clip: boolean;
932
+ markerName: boolean;
933
+ markerEnabled: boolean;
920
934
  };
921
935
  editingFrame: string | null;
922
936
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -947,6 +961,7 @@ export declare const actionSaveToActiveFile: {
947
961
  currentHoveredFontFamily: number | null;
948
962
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
949
963
  currentItemArrowType: "round" | "sharp" | "elbow";
964
+ currentItemFrameRole: ("marker" | null) | undefined;
950
965
  viewBackgroundColor: string;
951
966
  scrollX: number;
952
967
  scrollY: number;
@@ -1140,6 +1155,8 @@ export declare const actionSaveFileToDisk: {
1140
1155
  name: boolean;
1141
1156
  outline: boolean;
1142
1157
  clip: boolean;
1158
+ markerName: boolean;
1159
+ markerEnabled: boolean;
1143
1160
  };
1144
1161
  editingFrame: string | null;
1145
1162
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -1170,6 +1187,7 @@ export declare const actionSaveFileToDisk: {
1170
1187
  currentHoveredFontFamily: number | null;
1171
1188
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1172
1189
  currentItemArrowType: "round" | "sharp" | "elbow";
1190
+ currentItemFrameRole: ("marker" | null) | undefined;
1173
1191
  viewBackgroundColor: string;
1174
1192
  scrollX: number;
1175
1193
  scrollY: number;
@@ -1328,6 +1346,8 @@ export declare const actionLoadScene: {
1328
1346
  name: boolean;
1329
1347
  outline: boolean;
1330
1348
  clip: boolean;
1349
+ markerName: boolean;
1350
+ markerEnabled: boolean;
1331
1351
  };
1332
1352
  frameColor: {
1333
1353
  stroke: string;
@@ -1449,6 +1469,7 @@ export declare const actionLoadScene: {
1449
1469
  currentHoveredFontFamily: number | null;
1450
1470
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1451
1471
  currentItemArrowType: "round" | "sharp" | "elbow";
1472
+ currentItemFrameRole: ("marker" | null) | undefined;
1452
1473
  cursorButton: "up" | "down";
1453
1474
  scrolledOutside: boolean;
1454
1475
  isResizing: boolean;
@@ -1553,6 +1574,8 @@ export declare const actionLoadScene: {
1553
1574
  name: boolean;
1554
1575
  outline: boolean;
1555
1576
  clip: boolean;
1577
+ markerName: boolean;
1578
+ markerEnabled: boolean;
1556
1579
  };
1557
1580
  editingFrame: string | null;
1558
1581
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -1583,6 +1606,7 @@ export declare const actionLoadScene: {
1583
1606
  currentHoveredFontFamily: number | null;
1584
1607
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1585
1608
  currentItemArrowType: "round" | "sharp" | "elbow";
1609
+ currentItemFrameRole: ("marker" | null) | undefined;
1586
1610
  viewBackgroundColor: string;
1587
1611
  scrollX: number;
1588
1612
  scrollY: number;
@@ -1775,6 +1799,8 @@ export declare const actionExportWithDarkMode: {
1775
1799
  name: boolean;
1776
1800
  outline: boolean;
1777
1801
  clip: boolean;
1802
+ markerName: boolean;
1803
+ markerEnabled: boolean;
1778
1804
  };
1779
1805
  editingFrame: string | null;
1780
1806
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -1804,6 +1830,7 @@ export declare const actionExportWithDarkMode: {
1804
1830
  currentHoveredFontFamily: number | null;
1805
1831
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1806
1832
  currentItemArrowType: "round" | "sharp" | "elbow";
1833
+ currentItemFrameRole: ("marker" | null) | undefined;
1807
1834
  viewBackgroundColor: string;
1808
1835
  scrollX: number;
1809
1836
  scrollY: number;
@@ -67,6 +67,8 @@ export declare const actionFinalize: {
67
67
  name: boolean;
68
68
  outline: boolean;
69
69
  clip: boolean;
70
+ markerName: boolean;
71
+ markerEnabled: boolean;
70
72
  };
71
73
  editingFrame: string | null;
72
74
  elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
@@ -97,6 +99,7 @@ export declare const actionFinalize: {
97
99
  currentHoveredFontFamily: number | null;
98
100
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
99
101
  currentItemArrowType: "round" | "sharp" | "elbow";
102
+ currentItemFrameRole: ("marker" | null) | undefined;
100
103
  viewBackgroundColor: string;
101
104
  scrollX: number;
102
105
  scrollY: number;
@@ -277,6 +280,8 @@ export declare const actionFinalize: {
277
280
  name: boolean;
278
281
  outline: boolean;
279
282
  clip: boolean;
283
+ markerName: boolean;
284
+ markerEnabled: boolean;
280
285
  };
281
286
  editingFrame: string | null;
282
287
  elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
@@ -307,6 +312,7 @@ export declare const actionFinalize: {
307
312
  currentHoveredFontFamily: number | null;
308
313
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
309
314
  currentItemArrowType: "round" | "sharp" | "elbow";
315
+ currentItemFrameRole: ("marker" | null) | undefined;
310
316
  viewBackgroundColor: string;
311
317
  scrollX: number;
312
318
  scrollY: number;
@@ -492,6 +498,8 @@ export declare const actionFinalize: {
492
498
  name: boolean;
493
499
  outline: boolean;
494
500
  clip: boolean;
501
+ markerName: boolean;
502
+ markerEnabled: boolean;
495
503
  };
496
504
  editingFrame: string | null;
497
505
  elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
@@ -516,6 +524,7 @@ export declare const actionFinalize: {
516
524
  currentHoveredFontFamily: number | null;
517
525
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
518
526
  currentItemArrowType: "round" | "sharp" | "elbow";
527
+ currentItemFrameRole: ("marker" | null) | undefined;
519
528
  viewBackgroundColor: string;
520
529
  scrollX: number;
521
530
  scrollY: number;
@@ -35,6 +35,8 @@ export declare const actionSelectAllElementsInFrame: {
35
35
  name: boolean;
36
36
  outline: boolean;
37
37
  clip: boolean;
38
+ markerName: boolean;
39
+ markerEnabled: boolean;
38
40
  };
39
41
  editingFrame: string | null;
40
42
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -65,6 +67,7 @@ export declare const actionSelectAllElementsInFrame: {
65
67
  currentHoveredFontFamily: number | null;
66
68
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
67
69
  currentItemArrowType: "round" | "sharp" | "elbow";
70
+ currentItemFrameRole: ("marker" | null) | undefined;
68
71
  viewBackgroundColor: string;
69
72
  scrollX: number;
70
73
  scrollY: number;
@@ -259,6 +262,8 @@ export declare const actionRemoveAllElementsFromFrame: {
259
262
  name: boolean;
260
263
  outline: boolean;
261
264
  clip: boolean;
265
+ markerName: boolean;
266
+ markerEnabled: boolean;
262
267
  };
263
268
  editingFrame: string | null;
264
269
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -289,6 +294,7 @@ export declare const actionRemoveAllElementsFromFrame: {
289
294
  currentHoveredFontFamily: number | null;
290
295
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
291
296
  currentItemArrowType: "round" | "sharp" | "elbow";
297
+ currentItemFrameRole: ("marker" | null) | undefined;
292
298
  viewBackgroundColor: string;
293
299
  scrollX: number;
294
300
  scrollY: number;
@@ -461,6 +467,8 @@ export declare const actionupdateFrameRendering: {
461
467
  name: boolean;
462
468
  outline: boolean;
463
469
  clip: boolean;
470
+ markerName: boolean;
471
+ markerEnabled: boolean;
464
472
  };
465
473
  contextMenu: {
466
474
  items: import("../components/ContextMenu").ContextMenuItems;
@@ -511,6 +519,7 @@ export declare const actionupdateFrameRendering: {
511
519
  currentHoveredFontFamily: number | null;
512
520
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
513
521
  currentItemArrowType: "round" | "sharp" | "elbow";
522
+ currentItemFrameRole: ("marker" | null) | undefined;
514
523
  viewBackgroundColor: string;
515
524
  scrollX: number;
516
525
  scrollY: number;
@@ -708,6 +717,8 @@ export declare const actionSetFrameAsActiveTool: {
708
717
  name: boolean;
709
718
  outline: boolean;
710
719
  clip: boolean;
720
+ markerName: boolean;
721
+ markerEnabled: boolean;
711
722
  };
712
723
  editingFrame: string | null;
713
724
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -733,6 +744,7 @@ export declare const actionSetFrameAsActiveTool: {
733
744
  currentHoveredFontFamily: number | null;
734
745
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
735
746
  currentItemArrowType: "round" | "sharp" | "elbow";
747
+ currentItemFrameRole: ("marker" | null) | undefined;
736
748
  viewBackgroundColor: string;
737
749
  scrollX: number;
738
750
  scrollY: number;
@@ -1244,8 +1256,13 @@ export declare const actionWrapSelectionInFrame: {
1244
1256
  }> & {
1245
1257
  type: "frame";
1246
1258
  name: string | null;
1259
+ frameRole?: ("marker" | null) | undefined;
1247
1260
  customData?: {
1248
- printFrame?: boolean | undefined;
1261
+ frameColor?: {
1262
+ fill: string;
1263
+ stroke: string;
1264
+ nameColor: string;
1265
+ } | undefined;
1249
1266
  } | undefined;
1250
1267
  } & {
1251
1268
  index: import("@excalidraw/element/types").FractionalIndex;
@@ -1285,6 +1302,7 @@ export declare const actionWrapSelectionInFrame: {
1285
1302
  }> & {
1286
1303
  type: "magicframe";
1287
1304
  name: string | null;
1305
+ frameRole?: ("marker" | null) | undefined;
1288
1306
  } & {
1289
1307
  index: import("@excalidraw/element/types").FractionalIndex;
1290
1308
  }) | (Readonly<{
@@ -45,6 +45,8 @@ export declare const actionGroup: {
45
45
  name: boolean;
46
46
  outline: boolean;
47
47
  clip: boolean;
48
+ markerName: boolean;
49
+ markerEnabled: boolean;
48
50
  };
49
51
  editingFrame: string | null;
50
52
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -75,6 +77,7 @@ export declare const actionGroup: {
75
77
  currentHoveredFontFamily: number | null;
76
78
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
77
79
  currentItemArrowType: "round" | "sharp" | "elbow";
80
+ currentItemFrameRole: ("marker" | null) | undefined;
78
81
  viewBackgroundColor: string;
79
82
  scrollX: number;
80
83
  scrollY: number;
@@ -272,6 +275,8 @@ export declare const actionUngroup: {
272
275
  name: boolean;
273
276
  outline: boolean;
274
277
  clip: boolean;
278
+ markerName: boolean;
279
+ markerEnabled: boolean;
275
280
  };
276
281
  editingFrame: string | null;
277
282
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -302,6 +307,7 @@ export declare const actionUngroup: {
302
307
  currentHoveredFontFamily: number | null;
303
308
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
304
309
  currentItemArrowType: "round" | "sharp" | "elbow";
310
+ currentItemFrameRole: ("marker" | null) | undefined;
305
311
  viewBackgroundColor: string;
306
312
  scrollX: number;
307
313
  scrollY: number;
@@ -68,6 +68,8 @@ export declare const actionToggleLinearEditor: {
68
68
  name: boolean;
69
69
  outline: boolean;
70
70
  clip: boolean;
71
+ markerName: boolean;
72
+ markerEnabled: boolean;
71
73
  };
72
74
  editingFrame: string | null;
73
75
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -98,6 +100,7 @@ export declare const actionToggleLinearEditor: {
98
100
  currentHoveredFontFamily: number | null;
99
101
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
100
102
  currentItemArrowType: "round" | "sharp" | "elbow";
103
+ currentItemFrameRole: ("marker" | null) | undefined;
101
104
  viewBackgroundColor: string;
102
105
  scrollX: number;
103
106
  scrollY: number;
@@ -611,8 +614,13 @@ export declare const actionTogglePolygon: {
611
614
  }> & {
612
615
  type: "frame";
613
616
  name: string | null;
617
+ frameRole?: ("marker" | null) | undefined;
614
618
  customData?: {
615
- printFrame?: boolean | undefined;
619
+ frameColor?: {
620
+ fill: string;
621
+ stroke: string;
622
+ nameColor: string;
623
+ } | undefined;
616
624
  } | undefined;
617
625
  } & {
618
626
  index: import("@excalidraw/element/types").FractionalIndex;
@@ -652,6 +660,7 @@ export declare const actionTogglePolygon: {
652
660
  }> & {
653
661
  type: "magicframe";
654
662
  name: string | null;
663
+ frameRole?: ("marker" | null) | undefined;
655
664
  } & {
656
665
  index: import("@excalidraw/element/types").FractionalIndex;
657
666
  }) | (Readonly<{
@@ -32,6 +32,8 @@ export declare const actionLink: {
32
32
  name: boolean;
33
33
  outline: boolean;
34
34
  clip: boolean;
35
+ markerName: boolean;
36
+ markerEnabled: boolean;
35
37
  };
36
38
  editingFrame: string | null;
37
39
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -62,6 +64,7 @@ export declare const actionLink: {
62
64
  currentHoveredFontFamily: number | null;
63
65
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
64
66
  currentItemArrowType: "round" | "sharp" | "elbow";
67
+ currentItemFrameRole: ("marker" | null) | undefined;
65
68
  viewBackgroundColor: string;
66
69
  scrollX: number;
67
70
  scrollY: number;
@@ -32,6 +32,8 @@ export declare const actionToggleCanvasMenu: {
32
32
  name: boolean;
33
33
  outline: boolean;
34
34
  clip: boolean;
35
+ markerName: boolean;
36
+ markerEnabled: boolean;
35
37
  };
36
38
  editingFrame: string | null;
37
39
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -62,6 +64,7 @@ export declare const actionToggleCanvasMenu: {
62
64
  currentHoveredFontFamily: number | null;
63
65
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
64
66
  currentItemArrowType: "round" | "sharp" | "elbow";
67
+ currentItemFrameRole: ("marker" | null) | undefined;
65
68
  viewBackgroundColor: string;
66
69
  scrollX: number;
67
70
  scrollY: number;
@@ -251,6 +254,8 @@ export declare const actionToggleEditMenu: {
251
254
  name: boolean;
252
255
  outline: boolean;
253
256
  clip: boolean;
257
+ markerName: boolean;
258
+ markerEnabled: boolean;
254
259
  };
255
260
  editingFrame: string | null;
256
261
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -281,6 +286,7 @@ export declare const actionToggleEditMenu: {
281
286
  currentHoveredFontFamily: number | null;
282
287
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
283
288
  currentItemArrowType: "round" | "sharp" | "elbow";
289
+ currentItemFrameRole: ("marker" | null) | undefined;
284
290
  viewBackgroundColor: string;
285
291
  scrollX: number;
286
292
  scrollY: number;
@@ -475,6 +481,8 @@ export declare const actionShortcuts: {
475
481
  name: boolean;
476
482
  outline: boolean;
477
483
  clip: boolean;
484
+ markerName: boolean;
485
+ markerEnabled: boolean;
478
486
  };
479
487
  editingFrame: string | null;
480
488
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -505,6 +513,7 @@ export declare const actionShortcuts: {
505
513
  currentHoveredFontFamily: number | null;
506
514
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
507
515
  currentItemArrowType: "round" | "sharp" | "elbow";
516
+ currentItemFrameRole: ("marker" | null) | undefined;
508
517
  viewBackgroundColor: string;
509
518
  scrollX: number;
510
519
  scrollY: number;
@@ -34,6 +34,8 @@ export declare const actionGoToCollaborator: {
34
34
  name: boolean;
35
35
  outline: boolean;
36
36
  clip: boolean;
37
+ markerName: boolean;
38
+ markerEnabled: boolean;
37
39
  };
38
40
  editingFrame: string | null;
39
41
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -64,6 +66,7 @@ export declare const actionGoToCollaborator: {
64
66
  currentHoveredFontFamily: number | null;
65
67
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
66
68
  currentItemArrowType: "round" | "sharp" | "elbow";
69
+ currentItemFrameRole: ("marker" | null) | undefined;
67
70
  viewBackgroundColor: string;
68
71
  scrollX: number;
69
72
  scrollY: number;
@@ -246,6 +249,8 @@ export declare const actionGoToCollaborator: {
246
249
  name: boolean;
247
250
  outline: boolean;
248
251
  clip: boolean;
252
+ markerName: boolean;
253
+ markerEnabled: boolean;
249
254
  };
250
255
  editingFrame: string | null;
251
256
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -276,6 +281,7 @@ export declare const actionGoToCollaborator: {
276
281
  currentHoveredFontFamily: number | null;
277
282
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
278
283
  currentItemArrowType: "round" | "sharp" | "elbow";
284
+ currentItemFrameRole: ("marker" | null) | undefined;
279
285
  viewBackgroundColor: string;
280
286
  scrollX: number;
281
287
  scrollY: number;