@excalidraw/math 0.18.0-abeeaeb → 0.18.0-afa3a65

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 (79) hide show
  1. package/dist/dev/index.js +36 -42
  2. package/dist/dev/index.js.map +2 -2
  3. package/dist/prod/index.js +1 -1
  4. package/dist/types/common/src/colors.d.ts +8 -0
  5. package/dist/types/common/src/constants.d.ts +44 -0
  6. package/dist/types/common/src/keys.d.ts +2 -0
  7. package/dist/types/common/src/random.d.ts +7 -0
  8. package/dist/types/element/src/Scene.d.ts +1 -1
  9. package/dist/types/element/src/comparisons.d.ts +5 -3
  10. package/dist/types/element/src/delta.d.ts +23 -1
  11. package/dist/types/element/src/flowchart.d.ts +5 -1
  12. package/dist/types/element/src/frame.d.ts +2 -2
  13. package/dist/types/element/src/index.d.ts +1 -0
  14. package/dist/types/element/src/linearElementEditor.d.ts +10 -0
  15. package/dist/types/element/src/mutateElement.d.ts +1 -1
  16. package/dist/types/element/src/newElement.d.ts +24 -2
  17. package/dist/types/element/src/sizeHelpers.d.ts +6 -0
  18. package/dist/types/element/src/stickyNote.d.ts +183 -0
  19. package/dist/types/element/src/textElement.d.ts +2 -1
  20. package/dist/types/element/src/transform.d.ts +25 -6
  21. package/dist/types/element/src/typeChecks.d.ts +3 -2
  22. package/dist/types/element/src/types.d.ts +35 -6
  23. package/dist/types/element/src/utils.d.ts +7 -3
  24. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +12 -0
  25. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -6
  26. package/dist/types/excalidraw/actions/actionBoundText.d.ts +8 -0
  27. package/dist/types/excalidraw/actions/actionCanvas.d.ts +28 -0
  28. package/dist/types/excalidraw/actions/actionClipboard.d.ts +8 -0
  29. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +4 -0
  30. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +13 -1
  31. package/dist/types/excalidraw/actions/actionDeselect.d.ts +4 -0
  32. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -2
  33. package/dist/types/excalidraw/actions/actionElementLink.d.ts +4 -0
  34. package/dist/types/excalidraw/actions/actionElementLock.d.ts +8 -0
  35. package/dist/types/excalidraw/actions/actionExport.d.ts +8 -0
  36. package/dist/types/excalidraw/actions/actionFinalize.d.ts +1 -0
  37. package/dist/types/excalidraw/actions/actionFrame.d.ts +63 -1
  38. package/dist/types/excalidraw/actions/actionGroup.d.ts +8 -0
  39. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +55 -1
  40. package/dist/types/excalidraw/actions/actionLink.d.ts +4 -0
  41. package/dist/types/excalidraw/actions/actionMenu.d.ts +4 -0
  42. package/dist/types/excalidraw/actions/actionProperties.d.ts +18 -6
  43. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +4 -0
  44. package/dist/types/excalidraw/actions/actionStyles.d.ts +5 -1
  45. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +4 -0
  46. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +4 -0
  47. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +4 -0
  48. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +4 -0
  49. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +4 -0
  50. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +4 -0
  51. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +4 -0
  52. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +4 -0
  53. package/dist/types/excalidraw/actions/colorTargets.d.ts +39 -0
  54. package/dist/types/excalidraw/appState.d.ts +4 -0
  55. package/dist/types/excalidraw/components/App.arrowText.d.ts +40 -8
  56. package/dist/types/excalidraw/components/App.cursor.d.ts +8 -0
  57. package/dist/types/excalidraw/components/App.d.ts +92 -6
  58. package/dist/types/excalidraw/components/App.toolDrag.d.ts +63 -0
  59. package/dist/types/excalidraw/components/IconButton.d.ts +2 -0
  60. package/dist/types/excalidraw/components/Tools.d.ts +7 -2
  61. package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +2 -0
  62. package/dist/types/excalidraw/components/icons.d.ts +1 -0
  63. package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +2 -2
  64. package/dist/types/excalidraw/data/blob.d.ts +8 -0
  65. package/dist/types/excalidraw/data/json.d.ts +4 -0
  66. package/dist/types/excalidraw/fonts/Fonts.d.ts +3 -2
  67. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +5 -5
  68. package/dist/types/excalidraw/renderer/helpers.d.ts +25 -0
  69. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +1 -1
  70. package/dist/types/excalidraw/scene/Renderer.d.ts +50 -1
  71. package/dist/types/excalidraw/scene/index.d.ts +1 -1
  72. package/dist/types/excalidraw/scene/types.d.ts +1 -0
  73. package/dist/types/excalidraw/types.d.ts +30 -2
  74. package/dist/types/excalidraw/viewport.d.ts +4 -0
  75. package/dist/types/math/src/curve.d.ts +19 -12
  76. package/dist/types/math/src/segment.d.ts +6 -0
  77. package/dist/types/utils/src/export.d.ts +1 -0
  78. package/dist/types/utils/src/shape.d.ts +2 -2
  79. package/package.json +2 -2
@@ -55,6 +55,8 @@ export declare const actionDeselect: {
55
55
  exportWithDarkMode: boolean;
56
56
  exportScale: number;
57
57
  currentItemStrokeColor: string;
58
+ currentItemStickynoteStrokeColor: string;
59
+ currentItemStickynoteBackgroundColor: string;
58
60
  currentItemBackgroundColor: string;
59
61
  currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
60
62
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -155,6 +157,8 @@ export declare const actionDeselect: {
155
157
  elementStroke: readonly string[] | null;
156
158
  elementBackground: readonly string[] | null;
157
159
  bucketFill: readonly string[] | null;
160
+ stickyNoteStroke: readonly string[] | null;
161
+ stickyNoteBackground: readonly string[] | null;
158
162
  };
159
163
  };
160
164
  captureUpdate: "IMMEDIATELY";
@@ -7,7 +7,7 @@ export declare const distributeHorizontally: {
7
7
  };
8
8
  perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
9
9
  appState: Readonly<AppState>;
10
- elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
10
+ elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawStickyNoteElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
11
11
  captureUpdate: "IMMEDIATELY";
12
12
  };
13
13
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
@@ -23,7 +23,7 @@ export declare const distributeVertically: {
23
23
  };
24
24
  perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
25
25
  appState: Readonly<AppState>;
26
- elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
26
+ elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawStickyNoteElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
27
27
  captureUpdate: "IMMEDIATELY";
28
28
  };
29
29
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
@@ -94,6 +94,8 @@ export declare const actionLinkToElement: {
94
94
  exportWithDarkMode: boolean;
95
95
  exportScale: number;
96
96
  currentItemStrokeColor: string;
97
+ currentItemStickynoteStrokeColor: string;
98
+ currentItemStickynoteBackgroundColor: string;
97
99
  currentItemBackgroundColor: string;
98
100
  currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
99
101
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -186,6 +188,8 @@ export declare const actionLinkToElement: {
186
188
  elementStroke: readonly string[] | null;
187
189
  elementBackground: readonly string[] | null;
188
190
  bucketFill: readonly string[] | null;
191
+ stickyNoteStroke: readonly string[] | null;
192
+ stickyNoteBackground: readonly string[] | null;
189
193
  };
190
194
  };
191
195
  captureUpdate: "IMMEDIATELY";
@@ -76,6 +76,8 @@ export declare const actionToggleElementLock: {
76
76
  exportWithDarkMode: boolean;
77
77
  exportScale: number;
78
78
  currentItemStrokeColor: string;
79
+ currentItemStickynoteStrokeColor: string;
80
+ currentItemStickynoteBackgroundColor: string;
79
81
  currentItemBackgroundColor: string;
80
82
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
81
83
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -174,6 +176,8 @@ export declare const actionToggleElementLock: {
174
176
  elementStroke: readonly string[] | null;
175
177
  elementBackground: readonly string[] | null;
176
178
  bucketFill: readonly string[] | null;
179
+ stickyNoteStroke: readonly string[] | null;
180
+ stickyNoteBackground: readonly string[] | null;
177
181
  };
178
182
  };
179
183
  captureUpdate: "IMMEDIATELY";
@@ -255,6 +259,8 @@ export declare const actionUnlockAllElements: {
255
259
  exportWithDarkMode: boolean;
256
260
  exportScale: number;
257
261
  currentItemStrokeColor: string;
262
+ currentItemStickynoteStrokeColor: string;
263
+ currentItemStickynoteBackgroundColor: string;
258
264
  currentItemBackgroundColor: string;
259
265
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
260
266
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -354,6 +360,8 @@ export declare const actionUnlockAllElements: {
354
360
  elementStroke: readonly string[] | null;
355
361
  elementBackground: readonly string[] | null;
356
362
  bucketFill: readonly string[] | null;
363
+ stickyNoteStroke: readonly string[] | null;
364
+ stickyNoteBackground: readonly string[] | null;
357
365
  };
358
366
  };
359
367
  captureUpdate: "IMMEDIATELY";
@@ -187,6 +187,8 @@ export declare const actionLoadScene: {
187
187
  exportEmbedScene: boolean;
188
188
  exportWithDarkMode: boolean;
189
189
  currentItemStrokeColor: string;
190
+ currentItemStickynoteStrokeColor: string;
191
+ currentItemStickynoteBackgroundColor: string;
190
192
  currentItemBackgroundColor: string;
191
193
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
192
194
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -241,6 +243,8 @@ export declare const actionLoadScene: {
241
243
  elementStroke: readonly string[] | null;
242
244
  elementBackground: readonly string[] | null;
243
245
  bucketFill: readonly string[] | null;
246
+ stickyNoteStroke: readonly string[] | null;
247
+ stickyNoteBackground: readonly string[] | null;
244
248
  };
245
249
  };
246
250
  files: BinaryFiles;
@@ -302,6 +306,8 @@ export declare const actionLoadScene: {
302
306
  exportWithDarkMode: boolean;
303
307
  exportScale: number;
304
308
  currentItemStrokeColor: string;
309
+ currentItemStickynoteStrokeColor: string;
310
+ currentItemStickynoteBackgroundColor: string;
305
311
  currentItemBackgroundColor: string;
306
312
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
307
313
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -411,6 +417,8 @@ export declare const actionLoadScene: {
411
417
  elementStroke: readonly string[] | null;
412
418
  elementBackground: readonly string[] | null;
413
419
  bucketFill: readonly string[] | null;
420
+ stickyNoteStroke: readonly string[] | null;
421
+ stickyNoteBackground: readonly string[] | null;
414
422
  };
415
423
  };
416
424
  files: BinaryFiles;
@@ -6,6 +6,7 @@ type FormData = {
6
6
  x: number;
7
7
  y: number;
8
8
  };
9
+ hitBoundText?: boolean;
9
10
  };
10
11
  export declare const actionFinalize: import("./types").Action<FormData> & {
11
12
  keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
@@ -64,6 +64,8 @@ export declare const actionSelectAllElementsInFrame: {
64
64
  exportWithDarkMode: boolean;
65
65
  exportScale: number;
66
66
  currentItemStrokeColor: string;
67
+ currentItemStickynoteStrokeColor: string;
68
+ currentItemStickynoteBackgroundColor: string;
67
69
  currentItemBackgroundColor: string;
68
70
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
69
71
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -170,6 +172,8 @@ export declare const actionSelectAllElementsInFrame: {
170
172
  elementStroke: readonly string[] | null;
171
173
  elementBackground: readonly string[] | null;
172
174
  bucketFill: readonly string[] | null;
175
+ stickyNoteStroke: readonly string[] | null;
176
+ stickyNoteBackground: readonly string[] | null;
173
177
  };
174
178
  };
175
179
  captureUpdate: "IMMEDIATELY";
@@ -248,6 +252,8 @@ export declare const actionRemoveAllElementsFromFrame: {
248
252
  exportWithDarkMode: boolean;
249
253
  exportScale: number;
250
254
  currentItemStrokeColor: string;
255
+ currentItemStickynoteStrokeColor: string;
256
+ currentItemStickynoteBackgroundColor: string;
251
257
  currentItemBackgroundColor: string;
252
258
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
253
259
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -354,6 +360,8 @@ export declare const actionRemoveAllElementsFromFrame: {
354
360
  elementStroke: readonly string[] | null;
355
361
  elementBackground: readonly string[] | null;
356
362
  bucketFill: readonly string[] | null;
363
+ stickyNoteStroke: readonly string[] | null;
364
+ stickyNoteBackground: readonly string[] | null;
357
365
  };
358
366
  };
359
367
  captureUpdate: "IMMEDIATELY";
@@ -430,6 +438,8 @@ export declare const actionupdateFrameRendering: {
430
438
  exportWithDarkMode: boolean;
431
439
  exportScale: number;
432
440
  currentItemStrokeColor: string;
441
+ currentItemStickynoteStrokeColor: string;
442
+ currentItemStickynoteBackgroundColor: string;
433
443
  currentItemBackgroundColor: string;
434
444
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
435
445
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -539,6 +549,8 @@ export declare const actionupdateFrameRendering: {
539
549
  elementStroke: readonly string[] | null;
540
550
  elementBackground: readonly string[] | null;
541
551
  bucketFill: readonly string[] | null;
552
+ stickyNoteStroke: readonly string[] | null;
553
+ stickyNoteBackground: readonly string[] | null;
542
554
  };
543
555
  };
544
556
  captureUpdate: "EVENTUALLY";
@@ -582,6 +594,7 @@ export declare const actionWrapSelectionInFrame: {
582
594
  frameId: string | null;
583
595
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
584
596
  updated: number;
597
+ created: number | null;
585
598
  link: string | null;
586
599
  locked: boolean;
587
600
  customData?: Record<string, any>;
@@ -621,6 +634,7 @@ export declare const actionWrapSelectionInFrame: {
621
634
  frameId: string | null;
622
635
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
623
636
  updated: number;
637
+ created: number | null;
624
638
  link: string | null;
625
639
  locked: boolean;
626
640
  customData?: Record<string, any>;
@@ -655,6 +669,7 @@ export declare const actionWrapSelectionInFrame: {
655
669
  frameId: string | null;
656
670
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
657
671
  updated: number;
672
+ created: number | null;
658
673
  link: string | null;
659
674
  locked: boolean;
660
675
  customData?: Record<string, any>;
@@ -689,6 +704,43 @@ export declare const actionWrapSelectionInFrame: {
689
704
  frameId: string | null;
690
705
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
691
706
  updated: number;
707
+ created: number | null;
708
+ link: string | null;
709
+ locked: boolean;
710
+ customData?: Record<string, any>;
711
+ }> & Readonly<{
712
+ type: "stickynote";
713
+ baseHeight: number;
714
+ }> & {
715
+ index: import("@excalidraw/element/types").FractionalIndex;
716
+ }) | (Readonly<{
717
+ id: string;
718
+ x: number;
719
+ y: number;
720
+ strokeColor: string;
721
+ backgroundColor: string;
722
+ fillStyle: import("@excalidraw/element/types").FillStyle;
723
+ strokeWidth: number;
724
+ strokeStyle: import("@excalidraw/element/types").StrokeStyle;
725
+ roundness: null | {
726
+ type: import("@excalidraw/element/types").RoundnessType;
727
+ value?: number;
728
+ };
729
+ roughness: number;
730
+ opacity: number;
731
+ width: number;
732
+ height: number;
733
+ angle: import("@excalidraw/math").Radians;
734
+ seed: number;
735
+ version: number;
736
+ versionNonce: number;
737
+ index: import("@excalidraw/element/types").FractionalIndex | null;
738
+ isDeleted: boolean;
739
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
740
+ frameId: string | null;
741
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
742
+ updated: number;
743
+ created: number | null;
692
744
  link: string | null;
693
745
  locked: boolean;
694
746
  customData?: Record<string, any>;
@@ -723,6 +775,7 @@ export declare const actionWrapSelectionInFrame: {
723
775
  frameId: string | null;
724
776
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
725
777
  updated: number;
778
+ created: number | null;
726
779
  link: string | null;
727
780
  locked: boolean;
728
781
  customData?: Record<string, any>;
@@ -757,6 +810,7 @@ export declare const actionWrapSelectionInFrame: {
757
810
  frameId: string | null;
758
811
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
759
812
  updated: number;
813
+ created: number | null;
760
814
  link: string | null;
761
815
  locked: boolean;
762
816
  customData?: Record<string, any>;
@@ -791,6 +845,7 @@ export declare const actionWrapSelectionInFrame: {
791
845
  frameId: string | null;
792
846
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
793
847
  updated: number;
848
+ created: number | null;
794
849
  link: string | null;
795
850
  locked: boolean;
796
851
  customData?: Record<string, any>;
@@ -828,6 +883,7 @@ export declare const actionWrapSelectionInFrame: {
828
883
  frameId: string | null;
829
884
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
830
885
  updated: number;
886
+ created: number | null;
831
887
  link: string | null;
832
888
  locked: boolean;
833
889
  customData?: Record<string, any>;
@@ -866,6 +922,7 @@ export declare const actionWrapSelectionInFrame: {
866
922
  frameId: string | null;
867
923
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
868
924
  updated: number;
925
+ created: number | null;
869
926
  link: string | null;
870
927
  locked: boolean;
871
928
  customData?: Record<string, any>;
@@ -901,6 +958,7 @@ export declare const actionWrapSelectionInFrame: {
901
958
  frameId: string | null;
902
959
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
903
960
  updated: number;
961
+ created: number | null;
904
962
  link: string | null;
905
963
  locked: boolean;
906
964
  customData?: Record<string, any>;
@@ -936,6 +994,7 @@ export declare const actionWrapSelectionInFrame: {
936
994
  frameId: string | null;
937
995
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
938
996
  updated: number;
997
+ created: number | null;
939
998
  link: string | null;
940
999
  locked: boolean;
941
1000
  customData?: Record<string, any>;
@@ -943,15 +1002,17 @@ export declare const actionWrapSelectionInFrame: {
943
1002
  type: "text";
944
1003
  fontSize: number;
945
1004
  fontFamily: import("@excalidraw/element/types").FontFamilyValues;
1005
+ baseFontSize: number | null;
946
1006
  text: string;
947
1007
  textAlign: import("@excalidraw/element/types").TextAlign;
948
1008
  verticalAlign: import("@excalidraw/element/types").VerticalAlign;
949
- containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
1009
+ containerId: import("@excalidraw/element/types").ExcalidrawTextContainer["id"] | null;
950
1010
  originalText: string;
951
1011
  autoResize: boolean;
952
1012
  lineHeight: number & {
953
1013
  _brand: "unitlessLineHeight";
954
1014
  };
1015
+ labelPosition?: number | null;
955
1016
  }> & {
956
1017
  index: import("@excalidraw/element/types").FractionalIndex;
957
1018
  }) | (Readonly<{
@@ -981,6 +1042,7 @@ export declare const actionWrapSelectionInFrame: {
981
1042
  frameId: string | null;
982
1043
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
983
1044
  updated: number;
1045
+ created: number | null;
984
1046
  link: string | null;
985
1047
  locked: boolean;
986
1048
  customData?: Record<string, any>;
@@ -70,6 +70,8 @@ export declare const actionGroup: {
70
70
  exportWithDarkMode: boolean;
71
71
  exportScale: number;
72
72
  currentItemStrokeColor: string;
73
+ currentItemStickynoteStrokeColor: string;
74
+ currentItemStickynoteBackgroundColor: string;
73
75
  currentItemBackgroundColor: string;
74
76
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
75
77
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -172,6 +174,8 @@ export declare const actionGroup: {
172
174
  elementStroke: readonly string[] | null;
173
175
  elementBackground: readonly string[] | null;
174
176
  bucketFill: readonly string[] | null;
177
+ stickyNoteStroke: readonly string[] | null;
178
+ stickyNoteBackground: readonly string[] | null;
175
179
  };
176
180
  };
177
181
  elements: OrderedExcalidrawElement[];
@@ -253,6 +257,8 @@ export declare const actionUngroup: {
253
257
  exportWithDarkMode: boolean;
254
258
  exportScale: number;
255
259
  currentItemStrokeColor: string;
260
+ currentItemStickynoteStrokeColor: string;
261
+ currentItemStickynoteBackgroundColor: string;
256
262
  currentItemBackgroundColor: string;
257
263
  currentItemFillStyle: ExcalidrawElement["fillStyle"];
258
264
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -355,6 +361,8 @@ export declare const actionUngroup: {
355
361
  elementStroke: readonly string[] | null;
356
362
  elementBackground: readonly string[] | null;
357
363
  bucketFill: readonly string[] | null;
364
+ stickyNoteStroke: readonly string[] | null;
365
+ stickyNoteBackground: readonly string[] | null;
358
366
  };
359
367
  };
360
368
  elements: OrderedExcalidrawElement[];
@@ -98,6 +98,8 @@ export declare const actionToggleLinearEditor: {
98
98
  exportWithDarkMode: boolean;
99
99
  exportScale: number;
100
100
  currentItemStrokeColor: string;
101
+ currentItemStickynoteStrokeColor: string;
102
+ currentItemStickynoteBackgroundColor: string;
101
103
  currentItemBackgroundColor: string;
102
104
  currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
103
105
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -206,6 +208,8 @@ export declare const actionToggleLinearEditor: {
206
208
  elementStroke: readonly string[] | null;
207
209
  elementBackground: readonly string[] | null;
208
210
  bucketFill: readonly string[] | null;
211
+ stickyNoteStroke: readonly string[] | null;
212
+ stickyNoteBackground: readonly string[] | null;
209
213
  };
210
214
  };
211
215
  captureUpdate: "IMMEDIATELY";
@@ -252,6 +256,7 @@ export declare const actionTogglePolygon: {
252
256
  frameId: string | null;
253
257
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
254
258
  updated: number;
259
+ created: number | null;
255
260
  link: string | null;
256
261
  locked: boolean;
257
262
  customData?: Record<string, any>;
@@ -291,6 +296,7 @@ export declare const actionTogglePolygon: {
291
296
  frameId: string | null;
292
297
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
293
298
  updated: number;
299
+ created: number | null;
294
300
  link: string | null;
295
301
  locked: boolean;
296
302
  customData?: Record<string, any>;
@@ -325,6 +331,7 @@ export declare const actionTogglePolygon: {
325
331
  frameId: string | null;
326
332
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
327
333
  updated: number;
334
+ created: number | null;
328
335
  link: string | null;
329
336
  locked: boolean;
330
337
  customData?: Record<string, any>;
@@ -359,6 +366,43 @@ export declare const actionTogglePolygon: {
359
366
  frameId: string | null;
360
367
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
361
368
  updated: number;
369
+ created: number | null;
370
+ link: string | null;
371
+ locked: boolean;
372
+ customData?: Record<string, any>;
373
+ }> & Readonly<{
374
+ type: "stickynote";
375
+ baseHeight: number;
376
+ }> & {
377
+ index: import("@excalidraw/element/types").FractionalIndex;
378
+ }) | (Readonly<{
379
+ id: string;
380
+ x: number;
381
+ y: number;
382
+ strokeColor: string;
383
+ backgroundColor: string;
384
+ fillStyle: import("@excalidraw/element/types").FillStyle;
385
+ strokeWidth: number;
386
+ strokeStyle: import("@excalidraw/element/types").StrokeStyle;
387
+ roundness: null | {
388
+ type: import("@excalidraw/element/types").RoundnessType;
389
+ value?: number;
390
+ };
391
+ roughness: number;
392
+ opacity: number;
393
+ width: number;
394
+ height: number;
395
+ angle: import("@excalidraw/math").Radians;
396
+ seed: number;
397
+ version: number;
398
+ versionNonce: number;
399
+ index: import("@excalidraw/element/types").FractionalIndex | null;
400
+ isDeleted: boolean;
401
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
402
+ frameId: string | null;
403
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
404
+ updated: number;
405
+ created: number | null;
362
406
  link: string | null;
363
407
  locked: boolean;
364
408
  customData?: Record<string, any>;
@@ -393,6 +437,7 @@ export declare const actionTogglePolygon: {
393
437
  frameId: string | null;
394
438
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
395
439
  updated: number;
440
+ created: number | null;
396
441
  link: string | null;
397
442
  locked: boolean;
398
443
  customData?: Record<string, any>;
@@ -427,6 +472,7 @@ export declare const actionTogglePolygon: {
427
472
  frameId: string | null;
428
473
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
429
474
  updated: number;
475
+ created: number | null;
430
476
  link: string | null;
431
477
  locked: boolean;
432
478
  customData?: Record<string, any>;
@@ -461,6 +507,7 @@ export declare const actionTogglePolygon: {
461
507
  frameId: string | null;
462
508
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
463
509
  updated: number;
510
+ created: number | null;
464
511
  link: string | null;
465
512
  locked: boolean;
466
513
  customData?: Record<string, any>;
@@ -498,6 +545,7 @@ export declare const actionTogglePolygon: {
498
545
  frameId: string | null;
499
546
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
500
547
  updated: number;
548
+ created: number | null;
501
549
  link: string | null;
502
550
  locked: boolean;
503
551
  customData?: Record<string, any>;
@@ -536,6 +584,7 @@ export declare const actionTogglePolygon: {
536
584
  frameId: string | null;
537
585
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
538
586
  updated: number;
587
+ created: number | null;
539
588
  link: string | null;
540
589
  locked: boolean;
541
590
  customData?: Record<string, any>;
@@ -571,6 +620,7 @@ export declare const actionTogglePolygon: {
571
620
  frameId: string | null;
572
621
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
573
622
  updated: number;
623
+ created: number | null;
574
624
  link: string | null;
575
625
  locked: boolean;
576
626
  customData?: Record<string, any>;
@@ -606,6 +656,7 @@ export declare const actionTogglePolygon: {
606
656
  frameId: string | null;
607
657
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
608
658
  updated: number;
659
+ created: number | null;
609
660
  link: string | null;
610
661
  locked: boolean;
611
662
  customData?: Record<string, any>;
@@ -613,15 +664,17 @@ export declare const actionTogglePolygon: {
613
664
  type: "text";
614
665
  fontSize: number;
615
666
  fontFamily: import("@excalidraw/element/types").FontFamilyValues;
667
+ baseFontSize: number | null;
616
668
  text: string;
617
669
  textAlign: import("@excalidraw/element/types").TextAlign;
618
670
  verticalAlign: import("@excalidraw/element/types").VerticalAlign;
619
- containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
671
+ containerId: import("@excalidraw/element/types").ExcalidrawTextContainer["id"] | null;
620
672
  originalText: string;
621
673
  autoResize: boolean;
622
674
  lineHeight: number & {
623
675
  _brand: "unitlessLineHeight";
624
676
  };
677
+ labelPosition?: number | null;
625
678
  }> & {
626
679
  index: import("@excalidraw/element/types").FractionalIndex;
627
680
  }) | (Readonly<{
@@ -651,6 +704,7 @@ export declare const actionTogglePolygon: {
651
704
  frameId: string | null;
652
705
  boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
653
706
  updated: number;
707
+ created: number | null;
654
708
  link: string | null;
655
709
  locked: boolean;
656
710
  customData?: Record<string, any>;
@@ -61,6 +61,8 @@ export declare const actionLink: {
61
61
  exportWithDarkMode: boolean;
62
62
  exportScale: number;
63
63
  currentItemStrokeColor: string;
64
+ currentItemStickynoteStrokeColor: string;
65
+ currentItemStickynoteBackgroundColor: string;
64
66
  currentItemBackgroundColor: string;
65
67
  currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
66
68
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -168,6 +170,8 @@ export declare const actionLink: {
168
170
  elementStroke: readonly string[] | null;
169
171
  elementBackground: readonly string[] | null;
170
172
  bucketFill: readonly string[] | null;
173
+ stickyNoteStroke: readonly string[] | null;
174
+ stickyNoteBackground: readonly string[] | null;
171
175
  };
172
176
  };
173
177
  captureUpdate: "IMMEDIATELY";
@@ -68,6 +68,8 @@ export declare const actionShortcuts: {
68
68
  exportWithDarkMode: boolean;
69
69
  exportScale: number;
70
70
  currentItemStrokeColor: string;
71
+ currentItemStickynoteStrokeColor: string;
72
+ currentItemStickynoteBackgroundColor: string;
71
73
  currentItemBackgroundColor: string;
72
74
  currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
73
75
  currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
@@ -158,6 +160,8 @@ export declare const actionShortcuts: {
158
160
  elementStroke: readonly string[] | null;
159
161
  elementBackground: readonly string[] | null;
160
162
  bucketFill: readonly string[] | null;
163
+ stickyNoteStroke: readonly string[] | null;
164
+ stickyNoteBackground: readonly string[] | null;
161
165
  };
162
166
  };
163
167
  captureUpdate: "EVENTUALLY";