@excalidraw/common 0.18.0-063e025 → 0.18.0-1acf66e

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 (94) hide show
  1. package/dist/dev/index.js +9 -5
  2. package/dist/dev/index.js.map +2 -2
  3. package/dist/prod/index.js +3 -3
  4. package/dist/types/common/src/constants.d.ts +2 -0
  5. package/dist/types/common/src/points.d.ts +1 -1
  6. package/dist/types/common/src/utils.d.ts +1 -1
  7. package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
  8. package/dist/types/element/src/arrows/focus.d.ts +5 -2
  9. package/dist/types/element/src/binding.d.ts +12 -3
  10. package/dist/types/element/src/comparisons.d.ts +4 -4
  11. package/dist/types/element/src/convertToShape.d.ts +23 -0
  12. package/dist/types/element/src/dragElements.d.ts +27 -0
  13. package/dist/types/element/src/flowchart.d.ts +6 -6
  14. package/dist/types/element/src/groups.d.ts +1 -1
  15. package/dist/types/element/src/index.d.ts +2 -0
  16. package/dist/types/element/src/linearElementEditor.d.ts +7 -0
  17. package/dist/types/element/src/newElement.d.ts +13 -0
  18. package/dist/types/element/src/selection.d.ts +1 -1
  19. package/dist/types/element/src/textElement.d.ts +6 -3
  20. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +15 -3
  21. package/dist/types/excalidraw/actions/actionBoundText.d.ts +10 -2
  22. package/dist/types/excalidraw/actions/actionCanvas.d.ts +99 -565
  23. package/dist/types/excalidraw/actions/actionClipboard.d.ts +10 -2
  24. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +5 -1
  25. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +16 -3
  26. package/dist/types/excalidraw/actions/actionDeselect.d.ts +2 -1
  27. package/dist/types/excalidraw/actions/actionElementLink.d.ts +5 -1
  28. package/dist/types/excalidraw/actions/actionElementLock.d.ts +10 -2
  29. package/dist/types/excalidraw/actions/actionExport.d.ts +15 -7
  30. package/dist/types/excalidraw/actions/actionFrame.d.ts +15 -178
  31. package/dist/types/excalidraw/actions/actionGroup.d.ts +10 -2
  32. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +6 -1
  33. package/dist/types/excalidraw/actions/actionLink.d.ts +5 -1
  34. package/dist/types/excalidraw/actions/actionMenu.d.ts +5 -1
  35. package/dist/types/excalidraw/actions/actionProperties.d.ts +10 -2
  36. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +5 -1
  37. package/dist/types/excalidraw/actions/actionStyles.d.ts +5 -1
  38. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
  39. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +5 -1
  40. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +5 -1
  41. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +5 -1
  42. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +5 -1
  43. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +5 -1
  44. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +5 -1
  45. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +6 -2
  46. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +5 -1
  47. package/dist/types/excalidraw/actions/index.d.ts +0 -1
  48. package/dist/types/excalidraw/actions/manager.d.ts +1 -0
  49. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  50. package/dist/types/excalidraw/actions/types.d.ts +5 -1
  51. package/dist/types/excalidraw/appState.d.ts +5 -5
  52. package/dist/types/excalidraw/components/Actions.d.ts +16 -10
  53. package/dist/types/excalidraw/components/App.arrowText.d.ts +72 -0
  54. package/dist/types/excalidraw/components/App.cursor.d.ts +31 -0
  55. package/dist/types/excalidraw/components/App.d.ts +322 -76
  56. package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
  57. package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
  58. package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
  59. package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
  60. package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
  61. package/dist/types/excalidraw/components/LayerUI.d.ts +4 -2
  62. package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
  63. package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
  64. package/dist/types/excalidraw/components/MobileMenu.d.ts +4 -4
  65. package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
  66. package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
  67. package/dist/types/excalidraw/components/Popover.d.ts +1 -3
  68. package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
  69. package/dist/types/excalidraw/components/ToolPopover.d.ts +3 -6
  70. package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
  71. package/dist/types/excalidraw/components/Tools.d.ts +145 -0
  72. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +2 -0
  73. package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
  74. package/dist/types/excalidraw/components/icons.d.ts +1 -1
  75. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +1 -1
  76. package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
  77. package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
  78. package/dist/types/excalidraw/data/blob.d.ts +20 -12
  79. package/dist/types/excalidraw/data/json.d.ts +10 -6
  80. package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
  81. package/dist/types/excalidraw/scene/types.d.ts +3 -0
  82. package/dist/types/excalidraw/types.d.ts +199 -13
  83. package/dist/types/excalidraw/viewport.d.ts +20 -64
  84. package/dist/types/laser-pointer/src/state.d.ts +1 -0
  85. package/dist/types/math/src/index.d.ts +1 -0
  86. package/dist/types/math/src/pca.d.ts +79 -0
  87. package/dist/types/math/src/polygon.d.ts +25 -1
  88. package/package.json +1 -1
  89. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -173
  90. package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
  91. package/dist/types/excalidraw/components/MobileToolBar.d.ts +0 -10
  92. package/dist/types/excalidraw/components/shapes.d.ts +0 -270
  93. package/dist/types/excalidraw/cursor.d.ts +0 -5
  94. package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
@@ -1,173 +0,0 @@
1
- export declare const actionSetEmbeddableAsActiveTool: {
2
- name: "setEmbeddableAsActiveTool";
3
- trackEvent: {
4
- category: "toolbar";
5
- };
6
- target: string;
7
- label: string;
8
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties) => {
9
- elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
10
- appState: {
11
- activeTool: {
12
- lastActiveTool: import("../types").ActiveTool | null;
13
- locked: boolean;
14
- fromSelection: boolean;
15
- } & import("../types").ActiveTool;
16
- contextMenu: {
17
- items: import("../components/ContextMenu").ContextMenuItems;
18
- top: number;
19
- left: number;
20
- } | null;
21
- showWelcomeScreen: boolean;
22
- isLoading: boolean;
23
- errorMessage: React.ReactNode;
24
- activeEmbeddable: {
25
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
26
- state: "hover" | "active";
27
- } | null;
28
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
29
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
30
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
31
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
32
- isBindingEnabled: boolean;
33
- boxSelectionMode: import("../types").BoxSelectionMode;
34
- bindingPreference: "enabled" | "disabled";
35
- isMidpointSnappingEnabled: boolean;
36
- suggestedBinding: {
37
- element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
38
- midPoint?: import("@excalidraw/math").GlobalPoint;
39
- } | null;
40
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
41
- frameRendering: {
42
- enabled: boolean;
43
- name: boolean;
44
- outline: boolean;
45
- clip: boolean;
46
- };
47
- editingFrame: string | null;
48
- elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
49
- editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
50
- preferredSelectionTool: {
51
- type: "selection" | "lasso";
52
- initialized: boolean;
53
- };
54
- penMode: boolean;
55
- penDetected: boolean;
56
- exportBackground: boolean;
57
- exportEmbedScene: boolean;
58
- exportWithDarkMode: boolean;
59
- exportScale: number;
60
- currentItemStrokeColor: string;
61
- currentItemBackgroundColor: string;
62
- currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
63
- currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
64
- currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
65
- currentItemRoughness: number;
66
- currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
67
- currentItemOpacity: number;
68
- currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
69
- currentItemFontSize: number;
70
- currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
71
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
72
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
73
- currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
74
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
75
- currentItemArrowType: "sharp" | "round" | "elbow";
76
- viewBackgroundColor: string;
77
- scrollX: number;
78
- scrollY: number;
79
- scrollConstraints: import("../types").ScrollConstraints | null;
80
- cursorButton: "up" | "down";
81
- scrolledOutside: boolean;
82
- name: string | null;
83
- isResizing: boolean;
84
- isRotating: boolean;
85
- zoom: import("../types").Zoom;
86
- openMenu: "canvas" | null;
87
- openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
88
- openSidebar: {
89
- name: import("../types").SidebarName;
90
- tab?: import("../types").SidebarTabName;
91
- } | null;
92
- openDialog: null | {
93
- name: "imageExport" | "help" | "jsonExport";
94
- } | {
95
- name: "ttd";
96
- tab: "text-to-diagram" | "mermaid";
97
- } | {
98
- name: "commandPalette";
99
- } | {
100
- name: "settings";
101
- } | {
102
- name: "elementLinkSelector";
103
- sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
104
- } | {
105
- name: "charts";
106
- data: import("../charts").Spreadsheet;
107
- rawText: string;
108
- };
109
- defaultSidebarDockedPreference: boolean;
110
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
111
- selectedElementIds: Readonly<{
112
- [id: string]: true;
113
- }>;
114
- hoveredElementIds: Readonly<{
115
- [id: string]: true;
116
- }>;
117
- previousSelectedElementIds: {
118
- [id: string]: true;
119
- };
120
- selectedElementsAreBeingDragged: boolean;
121
- shouldCacheIgnoreZoom: boolean;
122
- toast: {
123
- message: React.ReactNode;
124
- closable?: boolean;
125
- duration?: number;
126
- } | null;
127
- zenModeEnabled: boolean;
128
- theme: import("@excalidraw/element/types").Theme;
129
- gridSize: number;
130
- gridStep: number;
131
- gridModeEnabled: boolean;
132
- viewModeEnabled: boolean;
133
- selectedGroupIds: {
134
- [groupId: string]: boolean;
135
- };
136
- editingGroupId: import("@excalidraw/element/types").GroupId | null;
137
- width: number;
138
- height: number;
139
- offsetTop: number;
140
- offsetLeft: number;
141
- fileHandle: FileSystemFileHandle | null;
142
- collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
143
- stats: {
144
- open: boolean;
145
- panels: number;
146
- };
147
- showHyperlinkPopup: false | "info" | "editor";
148
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
149
- snapLines: readonly import("../snapping").SnapLine[];
150
- originSnapOffset: {
151
- x: number;
152
- y: number;
153
- } | null;
154
- objectsSnapModeEnabled: boolean;
155
- userToFollow: import("../types").UserToFollow | null;
156
- followedBy: Set<import("../types").SocketId>;
157
- isCropping: boolean;
158
- croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
159
- searchMatches: Readonly<{
160
- focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
161
- matches: readonly import("../types").SearchMatch[];
162
- }> | null;
163
- activeLockedId: string | null;
164
- lockedMultiSelections: {
165
- [groupId: string]: true;
166
- };
167
- bindMode: import("@excalidraw/element/types").BindMode;
168
- };
169
- captureUpdate: "EVENTUALLY";
170
- };
171
- } & {
172
- keyTest?: undefined;
173
- };
@@ -1,10 +0,0 @@
1
- import "./ToolIcon.scss";
2
- type LockIconProps = {
3
- title?: string;
4
- name?: string;
5
- checked: boolean;
6
- onChange?(): void;
7
- isMobile?: boolean;
8
- };
9
- export declare const HandButton: (props: LockIconProps) => import("react/jsx-runtime").JSX.Element;
10
- export {};
@@ -1,10 +0,0 @@
1
- import "./ToolIcon.scss";
2
- import "./MobileToolBar.scss";
3
- import type { AppClassProperties, UIAppState } from "../types";
4
- type MobileToolBarProps = {
5
- app: AppClassProperties;
6
- onHandToolToggle: () => void;
7
- setAppState: React.Component<any, UIAppState>["setState"];
8
- };
9
- export declare const MobileToolBar: ({ app, onHandToolToggle, setAppState, }: MobileToolBarProps) => import("react/jsx-runtime").JSX.Element;
10
- export {};
@@ -1,270 +0,0 @@
1
- import type { AppClassProperties } from "../types";
2
- export declare const SHAPES: readonly [{
3
- readonly icon: import("react/jsx-runtime").JSX.Element;
4
- readonly value: "hand";
5
- readonly key: "h";
6
- readonly numericKey: null;
7
- readonly fillable: false;
8
- readonly toolbar: true;
9
- }, {
10
- readonly icon: import("react/jsx-runtime").JSX.Element;
11
- readonly value: "selection";
12
- readonly key: "v";
13
- readonly numericKey: "1";
14
- readonly fillable: true;
15
- readonly toolbar: true;
16
- }, {
17
- readonly icon: import("react/jsx-runtime").JSX.Element;
18
- readonly value: "rectangle";
19
- readonly key: "r";
20
- readonly numericKey: "2";
21
- readonly fillable: true;
22
- readonly toolbar: true;
23
- }, {
24
- readonly icon: import("react/jsx-runtime").JSX.Element;
25
- readonly value: "diamond";
26
- readonly key: "d";
27
- readonly numericKey: "3";
28
- readonly fillable: true;
29
- readonly toolbar: true;
30
- }, {
31
- readonly icon: import("react/jsx-runtime").JSX.Element;
32
- readonly value: "ellipse";
33
- readonly key: "o";
34
- readonly numericKey: "4";
35
- readonly fillable: true;
36
- readonly toolbar: true;
37
- }, {
38
- readonly icon: import("react/jsx-runtime").JSX.Element;
39
- readonly value: "arrow";
40
- readonly key: "a";
41
- readonly numericKey: "5";
42
- readonly fillable: true;
43
- readonly toolbar: true;
44
- }, {
45
- readonly icon: import("react/jsx-runtime").JSX.Element;
46
- readonly value: "line";
47
- readonly key: "l";
48
- readonly numericKey: "6";
49
- readonly fillable: true;
50
- readonly toolbar: true;
51
- }, {
52
- readonly icon: import("react/jsx-runtime").JSX.Element;
53
- readonly value: "freedraw";
54
- readonly key: readonly ["p", "x"];
55
- readonly numericKey: "7";
56
- readonly fillable: false;
57
- readonly toolbar: true;
58
- }, {
59
- readonly icon: import("react/jsx-runtime").JSX.Element;
60
- readonly value: "text";
61
- readonly key: "t";
62
- readonly numericKey: "8";
63
- readonly fillable: false;
64
- readonly toolbar: true;
65
- }, {
66
- readonly icon: import("react/jsx-runtime").JSX.Element;
67
- readonly value: "image";
68
- readonly key: null;
69
- readonly numericKey: "9";
70
- readonly fillable: false;
71
- readonly toolbar: true;
72
- }, {
73
- readonly icon: import("react/jsx-runtime").JSX.Element;
74
- readonly value: "eraser";
75
- readonly key: "e";
76
- readonly numericKey: "0";
77
- readonly fillable: false;
78
- readonly toolbar: true;
79
- }, {
80
- readonly icon: import("react/jsx-runtime").JSX.Element;
81
- readonly value: "laser";
82
- readonly key: "k";
83
- readonly numericKey: null;
84
- readonly fillable: false;
85
- readonly toolbar: false;
86
- }];
87
- export declare const getToolbarTools: (app: AppClassProperties) => readonly [{
88
- readonly icon: import("react/jsx-runtime").JSX.Element;
89
- readonly value: "hand";
90
- readonly key: "h";
91
- readonly numericKey: null;
92
- readonly fillable: false;
93
- readonly toolbar: true;
94
- }, {
95
- readonly icon: import("react/jsx-runtime").JSX.Element;
96
- readonly value: "selection";
97
- readonly key: "v";
98
- readonly numericKey: "1";
99
- readonly fillable: true;
100
- readonly toolbar: true;
101
- }, {
102
- readonly icon: import("react/jsx-runtime").JSX.Element;
103
- readonly value: "rectangle";
104
- readonly key: "r";
105
- readonly numericKey: "2";
106
- readonly fillable: true;
107
- readonly toolbar: true;
108
- }, {
109
- readonly icon: import("react/jsx-runtime").JSX.Element;
110
- readonly value: "diamond";
111
- readonly key: "d";
112
- readonly numericKey: "3";
113
- readonly fillable: true;
114
- readonly toolbar: true;
115
- }, {
116
- readonly icon: import("react/jsx-runtime").JSX.Element;
117
- readonly value: "ellipse";
118
- readonly key: "o";
119
- readonly numericKey: "4";
120
- readonly fillable: true;
121
- readonly toolbar: true;
122
- }, {
123
- readonly icon: import("react/jsx-runtime").JSX.Element;
124
- readonly value: "arrow";
125
- readonly key: "a";
126
- readonly numericKey: "5";
127
- readonly fillable: true;
128
- readonly toolbar: true;
129
- }, {
130
- readonly icon: import("react/jsx-runtime").JSX.Element;
131
- readonly value: "line";
132
- readonly key: "l";
133
- readonly numericKey: "6";
134
- readonly fillable: true;
135
- readonly toolbar: true;
136
- }, {
137
- readonly icon: import("react/jsx-runtime").JSX.Element;
138
- readonly value: "freedraw";
139
- readonly key: readonly ["p", "x"];
140
- readonly numericKey: "7";
141
- readonly fillable: false;
142
- readonly toolbar: true;
143
- }, {
144
- readonly icon: import("react/jsx-runtime").JSX.Element;
145
- readonly value: "text";
146
- readonly key: "t";
147
- readonly numericKey: "8";
148
- readonly fillable: false;
149
- readonly toolbar: true;
150
- }, {
151
- readonly icon: import("react/jsx-runtime").JSX.Element;
152
- readonly value: "image";
153
- readonly key: null;
154
- readonly numericKey: "9";
155
- readonly fillable: false;
156
- readonly toolbar: true;
157
- }, {
158
- readonly icon: import("react/jsx-runtime").JSX.Element;
159
- readonly value: "eraser";
160
- readonly key: "e";
161
- readonly numericKey: "0";
162
- readonly fillable: false;
163
- readonly toolbar: true;
164
- }, {
165
- readonly icon: import("react/jsx-runtime").JSX.Element;
166
- readonly value: "laser";
167
- readonly key: "k";
168
- readonly numericKey: null;
169
- readonly fillable: false;
170
- readonly toolbar: false;
171
- }] | readonly [{
172
- readonly icon: import("react/jsx-runtime").JSX.Element;
173
- readonly value: "hand";
174
- readonly key: "h";
175
- readonly numericKey: null;
176
- readonly fillable: false;
177
- readonly toolbar: true;
178
- }, {
179
- readonly value: "lasso";
180
- readonly icon: import("react/jsx-runtime").JSX.Element;
181
- readonly key: "v";
182
- readonly numericKey: "1";
183
- readonly fillable: true;
184
- readonly toolbar: true;
185
- }, ...({
186
- readonly icon: import("react/jsx-runtime").JSX.Element;
187
- readonly value: "hand";
188
- readonly key: "h";
189
- readonly numericKey: null;
190
- readonly fillable: false;
191
- readonly toolbar: true;
192
- } | {
193
- readonly icon: import("react/jsx-runtime").JSX.Element;
194
- readonly value: "selection";
195
- readonly key: "v";
196
- readonly numericKey: "1";
197
- readonly fillable: true;
198
- readonly toolbar: true;
199
- } | {
200
- readonly icon: import("react/jsx-runtime").JSX.Element;
201
- readonly value: "rectangle";
202
- readonly key: "r";
203
- readonly numericKey: "2";
204
- readonly fillable: true;
205
- readonly toolbar: true;
206
- } | {
207
- readonly icon: import("react/jsx-runtime").JSX.Element;
208
- readonly value: "diamond";
209
- readonly key: "d";
210
- readonly numericKey: "3";
211
- readonly fillable: true;
212
- readonly toolbar: true;
213
- } | {
214
- readonly icon: import("react/jsx-runtime").JSX.Element;
215
- readonly value: "ellipse";
216
- readonly key: "o";
217
- readonly numericKey: "4";
218
- readonly fillable: true;
219
- readonly toolbar: true;
220
- } | {
221
- readonly icon: import("react/jsx-runtime").JSX.Element;
222
- readonly value: "arrow";
223
- readonly key: "a";
224
- readonly numericKey: "5";
225
- readonly fillable: true;
226
- readonly toolbar: true;
227
- } | {
228
- readonly icon: import("react/jsx-runtime").JSX.Element;
229
- readonly value: "line";
230
- readonly key: "l";
231
- readonly numericKey: "6";
232
- readonly fillable: true;
233
- readonly toolbar: true;
234
- } | {
235
- readonly icon: import("react/jsx-runtime").JSX.Element;
236
- readonly value: "freedraw";
237
- readonly key: readonly ["p", "x"];
238
- readonly numericKey: "7";
239
- readonly fillable: false;
240
- readonly toolbar: true;
241
- } | {
242
- readonly icon: import("react/jsx-runtime").JSX.Element;
243
- readonly value: "text";
244
- readonly key: "t";
245
- readonly numericKey: "8";
246
- readonly fillable: false;
247
- readonly toolbar: true;
248
- } | {
249
- readonly icon: import("react/jsx-runtime").JSX.Element;
250
- readonly value: "image";
251
- readonly key: null;
252
- readonly numericKey: "9";
253
- readonly fillable: false;
254
- readonly toolbar: true;
255
- } | {
256
- readonly icon: import("react/jsx-runtime").JSX.Element;
257
- readonly value: "eraser";
258
- readonly key: "e";
259
- readonly numericKey: "0";
260
- readonly fillable: false;
261
- readonly toolbar: true;
262
- } | {
263
- readonly icon: import("react/jsx-runtime").JSX.Element;
264
- readonly value: "laser";
265
- readonly key: "k";
266
- readonly numericKey: null;
267
- readonly fillable: false;
268
- readonly toolbar: false;
269
- })[]];
270
- export declare const findShapeByKey: (key: string, app: AppClassProperties) => "line" | "arrow" | "text" | "selection" | "rectangle" | "diamond" | "ellipse" | "image" | "freedraw" | "lasso" | "eraser" | "hand" | "laser" | null;
@@ -1,5 +0,0 @@
1
- import type { AppState } from "./types";
2
- export declare const resetCursor: (interactiveCanvas: HTMLCanvasElement | null) => void;
3
- export declare const setCursor: (interactiveCanvas: HTMLCanvasElement | null, cursor: string) => void;
4
- export declare const setEraserCursor: (interactiveCanvas: HTMLCanvasElement | null, theme: AppState["theme"]) => void;
5
- export declare const setCursorForShape: (interactiveCanvas: HTMLCanvasElement | null, appState: Pick<AppState, "activeTool" | "theme">) => void;
@@ -1,12 +0,0 @@
1
- import type { AppState, NormalizedZoomValue } from "../types";
2
- export declare const getStateForZoom: ({ viewportX, viewportY, nextZoom, }: {
3
- viewportX: number;
4
- viewportY: number;
5
- nextZoom: NormalizedZoomValue;
6
- }, appState: AppState) => {
7
- scrollX: number;
8
- scrollY: number;
9
- zoom: {
10
- value: NormalizedZoomValue;
11
- };
12
- };