@excalidraw/excalidraw 0.18.0-c4c0649 → 0.18.0-c6f8ef9
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/dev/chunk-CP5DND7P.js +7 -0
- package/dist/dev/chunk-CP5DND7P.js.map +7 -0
- package/dist/dev/chunk-CRKRRBMD.js +5677 -0
- package/dist/dev/chunk-CRKRRBMD.js.map +7 -0
- package/dist/dev/{chunk-JCUIYZXF.js → chunk-QF5FRM6O.js} +6 -2
- package/dist/dev/chunk-QF5FRM6O.js.map +7 -0
- package/dist/dev/data/{image-SLEZBMLG.js → image-IWGLHPIX.js} +3 -3
- package/dist/dev/index.css +51 -20
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +6874 -4280
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-ZDTPSZNL.js → en-SMAPCEOQ.js} +2 -2
- package/dist/dev/subset-shared.chunk.js +1 -1
- package/dist/dev/subset-worker.chunk.js +1 -1
- package/dist/prod/chunk-A66AFZZU.js +7 -0
- package/dist/prod/chunk-HHV2PJKY.js +4 -0
- package/dist/prod/{chunk-GCFVWREF.js → chunk-I4UNSFV6.js} +4 -4
- package/dist/prod/data/image-4SM4COIL.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +25 -18
- package/dist/prod/locales/{en-MHZ26NAR.js → en-TYY6KWIJ.js} +1 -1
- package/dist/prod/subset-shared.chunk.js +1 -1
- package/dist/prod/subset-worker.chunk.js +1 -1
- package/dist/types/common/src/constants.d.ts +19 -3
- package/dist/types/common/src/utils.d.ts +3 -5
- package/dist/types/element/src/Scene.d.ts +7 -3
- package/dist/types/element/src/align.d.ts +2 -1
- package/dist/types/element/src/binding.d.ts +10 -7
- package/dist/types/element/src/bounds.d.ts +11 -3
- package/dist/types/element/src/collision.d.ts +18 -12
- package/dist/types/element/src/cropElement.d.ts +1 -1
- package/dist/types/element/src/delta.d.ts +42 -9
- package/dist/types/element/src/distance.d.ts +2 -2
- package/dist/types/element/src/distribute.d.ts +2 -1
- package/dist/types/element/src/fractionalIndex.d.ts +8 -2
- package/dist/types/element/src/frame.d.ts +2 -2
- package/dist/types/element/src/groups.d.ts +1 -0
- package/dist/types/element/src/index.d.ts +1 -3
- package/dist/types/element/src/linearElementEditor.d.ts +14 -23
- package/dist/types/element/src/mutateElement.d.ts +1 -1
- package/dist/types/element/src/newElement.d.ts +2 -1
- package/dist/types/element/src/resizeElements.d.ts +1 -0
- package/dist/types/element/src/selection.d.ts +1 -1
- package/dist/types/element/src/shape.d.ts +42 -0
- package/dist/types/element/src/sizeHelpers.d.ts +2 -1
- package/dist/types/element/src/store.d.ts +19 -9
- package/dist/types/element/src/transformHandles.d.ts +4 -4
- package/dist/types/element/src/typeChecks.d.ts +15 -1
- package/dist/types/element/src/types.d.ts +8 -3
- package/dist/types/element/src/utils.d.ts +16 -6
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +21 -15
- package/dist/types/excalidraw/actions/actionAlign.d.ts +8 -8
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +14 -10
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +180 -154
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +50 -36
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +7 -5
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +27 -20
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -4
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +6 -4
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +29 -26
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +7 -5
- package/dist/types/excalidraw/actions/actionExport.d.ts +147 -129
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +65 -20
- package/dist/types/excalidraw/actions/actionFlip.d.ts +4 -4
- package/dist/types/excalidraw/actions/actionFrame.d.ts +78 -70
- package/dist/types/excalidraw/actions/actionGroup.d.ts +20 -16
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +533 -7
- package/dist/types/excalidraw/actions/actionLink.d.ts +8 -6
- package/dist/types/excalidraw/actions/actionMenu.d.ts +22 -16
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +14 -10
- package/dist/types/excalidraw/actions/actionProperties.d.ts +119 -81
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +10 -8
- package/dist/types/excalidraw/actions/actionStyles.d.ts +11 -9
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +9 -7
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +9 -7
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +8 -6
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +9 -7
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +9 -7
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +9 -7
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -8
- package/dist/types/excalidraw/actions/types.d.ts +2 -1
- package/dist/types/excalidraw/appState.d.ts +29 -20
- package/dist/types/excalidraw/components/Actions.d.ts +0 -4
- package/dist/types/excalidraw/components/App.d.ts +15 -16
- package/dist/types/excalidraw/components/ButtonIcon.d.ts +1 -0
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/components/{ButtonIconSelect.d.ts → RadioSelection.d.ts} +1 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +11 -1
- package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -0
- package/dist/types/excalidraw/components/icons.d.ts +2 -0
- package/dist/types/excalidraw/components/shapes.d.ts +1 -1
- package/dist/types/excalidraw/data/blob.d.ts +1 -1
- package/dist/types/excalidraw/data/reconcile.d.ts +1 -0
- package/dist/types/excalidraw/data/restore.d.ts +6 -1
- package/dist/types/excalidraw/eraser/index.d.ts +0 -2
- package/dist/types/excalidraw/history.d.ts +21 -5
- package/dist/types/excalidraw/index.d.ts +2 -1
- package/dist/types/excalidraw/lasso/index.d.ts +1 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +2 -1
- package/dist/types/excalidraw/renderer/helpers.d.ts +4 -4
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/scene/Renderer.d.ts +0 -1
- package/dist/types/excalidraw/types.d.ts +15 -8
- package/dist/types/math/src/angle.d.ts +2 -0
- package/dist/types/math/src/constants.d.ts +3 -0
- package/dist/types/math/src/curve.d.ts +32 -0
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/point.d.ts +1 -1
- package/dist/types/math/src/rectangle.d.ts +2 -0
- package/dist/types/math/src/vector.d.ts +4 -2
- package/history.ts +107 -44
- package/package.json +12 -9
- package/dist/dev/chunk-HNRFOURL.js +0 -23482
- package/dist/dev/chunk-HNRFOURL.js.map +0 -7
- package/dist/dev/chunk-JCUIYZXF.js.map +0 -7
- package/dist/dev/chunk-VKWYDXFZ.js +0 -7
- package/dist/dev/chunk-VKWYDXFZ.js.map +0 -7
- package/dist/prod/chunk-G6SRO7HP.js +0 -7
- package/dist/prod/chunk-M3D5LUUK.js +0 -33
- package/dist/prod/data/image-PMKVN4IF.js +0 -1
- package/dist/types/element/src/Shape.d.ts +0 -17
- package/dist/types/element/src/ShapeCache.d.ts +0 -25
- package/dist/types/element/src/shapes.d.ts +0 -23
- package/dist/types/excalidraw/components/ButtonSelect.d.ts +0 -9
- package/dist/types/excalidraw/visualdebug.d.ts +0 -41
- package/dist/types/utils/src/collision.d.ts +0 -8
- /package/dist/dev/data/{image-SLEZBMLG.js.map → image-IWGLHPIX.js.map} +0 -0
- /package/dist/dev/locales/{en-ZDTPSZNL.js.map → en-SMAPCEOQ.js.map} +0 -0
|
@@ -18,7 +18,7 @@ export declare const actionToggleCanvasMenu: {
|
|
|
18
18
|
errorMessage: import("react").ReactNode;
|
|
19
19
|
activeEmbeddable: {
|
|
20
20
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
21
|
-
state: "
|
|
21
|
+
state: "active" | "hover";
|
|
22
22
|
} | null;
|
|
23
23
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
24
24
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -37,7 +37,6 @@ export declare const actionToggleCanvasMenu: {
|
|
|
37
37
|
editingFrame: string | null;
|
|
38
38
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
39
39
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
40
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
41
40
|
activeTool: {
|
|
42
41
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
43
42
|
locked: boolean;
|
|
@@ -84,7 +83,7 @@ export declare const actionToggleCanvasMenu: {
|
|
|
84
83
|
name: "imageExport" | "help" | "jsonExport";
|
|
85
84
|
} | {
|
|
86
85
|
name: "ttd";
|
|
87
|
-
tab: "text-to-diagram"
|
|
86
|
+
tab: "mermaid" | "text-to-diagram";
|
|
88
87
|
} | {
|
|
89
88
|
name: "commandPalette";
|
|
90
89
|
} | {
|
|
@@ -156,8 +155,7 @@ export declare const actionToggleCanvasMenu: {
|
|
|
156
155
|
shown: true;
|
|
157
156
|
data: import("../charts").Spreadsheet;
|
|
158
157
|
};
|
|
159
|
-
|
|
160
|
-
showHyperlinkPopup: false | "info" | "editor";
|
|
158
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
161
159
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
162
160
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
163
161
|
originSnapOffset: {
|
|
@@ -173,6 +171,10 @@ export declare const actionToggleCanvasMenu: {
|
|
|
173
171
|
focusedId: string | null;
|
|
174
172
|
matches: readonly import("../types").SearchMatch[];
|
|
175
173
|
}> | null;
|
|
174
|
+
activeLockedId: string | null;
|
|
175
|
+
lockedMultiSelections: {
|
|
176
|
+
[groupId: string]: true;
|
|
177
|
+
};
|
|
176
178
|
};
|
|
177
179
|
captureUpdate: "EVENTUALLY";
|
|
178
180
|
};
|
|
@@ -199,7 +201,7 @@ export declare const actionToggleEditMenu: {
|
|
|
199
201
|
errorMessage: import("react").ReactNode;
|
|
200
202
|
activeEmbeddable: {
|
|
201
203
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
202
|
-
state: "
|
|
204
|
+
state: "active" | "hover";
|
|
203
205
|
} | null;
|
|
204
206
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
205
207
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -218,7 +220,6 @@ export declare const actionToggleEditMenu: {
|
|
|
218
220
|
editingFrame: string | null;
|
|
219
221
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
220
222
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
221
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
222
223
|
activeTool: {
|
|
223
224
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
224
225
|
locked: boolean;
|
|
@@ -265,7 +266,7 @@ export declare const actionToggleEditMenu: {
|
|
|
265
266
|
name: "imageExport" | "help" | "jsonExport";
|
|
266
267
|
} | {
|
|
267
268
|
name: "ttd";
|
|
268
|
-
tab: "text-to-diagram"
|
|
269
|
+
tab: "mermaid" | "text-to-diagram";
|
|
269
270
|
} | {
|
|
270
271
|
name: "commandPalette";
|
|
271
272
|
} | {
|
|
@@ -337,8 +338,7 @@ export declare const actionToggleEditMenu: {
|
|
|
337
338
|
shown: true;
|
|
338
339
|
data: import("../charts").Spreadsheet;
|
|
339
340
|
};
|
|
340
|
-
|
|
341
|
-
showHyperlinkPopup: false | "info" | "editor";
|
|
341
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
342
342
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
343
343
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
344
344
|
originSnapOffset: {
|
|
@@ -354,6 +354,10 @@ export declare const actionToggleEditMenu: {
|
|
|
354
354
|
focusedId: string | null;
|
|
355
355
|
matches: readonly import("../types").SearchMatch[];
|
|
356
356
|
}> | null;
|
|
357
|
+
activeLockedId: string | null;
|
|
358
|
+
lockedMultiSelections: {
|
|
359
|
+
[groupId: string]: true;
|
|
360
|
+
};
|
|
357
361
|
};
|
|
358
362
|
captureUpdate: "EVENTUALLY";
|
|
359
363
|
};
|
|
@@ -385,7 +389,7 @@ export declare const actionShortcuts: {
|
|
|
385
389
|
errorMessage: import("react").ReactNode;
|
|
386
390
|
activeEmbeddable: {
|
|
387
391
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
388
|
-
state: "
|
|
392
|
+
state: "active" | "hover";
|
|
389
393
|
} | null;
|
|
390
394
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
391
395
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -404,7 +408,6 @@ export declare const actionShortcuts: {
|
|
|
404
408
|
editingFrame: string | null;
|
|
405
409
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
406
410
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
407
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
408
411
|
activeTool: {
|
|
409
412
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
410
413
|
locked: boolean;
|
|
@@ -513,8 +516,7 @@ export declare const actionShortcuts: {
|
|
|
513
516
|
shown: true;
|
|
514
517
|
data: import("../charts").Spreadsheet;
|
|
515
518
|
};
|
|
516
|
-
|
|
517
|
-
showHyperlinkPopup: false | "info" | "editor";
|
|
519
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
518
520
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
519
521
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
520
522
|
originSnapOffset: {
|
|
@@ -530,10 +532,14 @@ export declare const actionShortcuts: {
|
|
|
530
532
|
focusedId: string | null;
|
|
531
533
|
matches: readonly import("../types").SearchMatch[];
|
|
532
534
|
}> | null;
|
|
535
|
+
activeLockedId: string | null;
|
|
536
|
+
lockedMultiSelections: {
|
|
537
|
+
[groupId: string]: true;
|
|
538
|
+
};
|
|
533
539
|
};
|
|
534
540
|
captureUpdate: "EVENTUALLY";
|
|
535
541
|
};
|
|
536
|
-
keyTest: (event: import("react").KeyboardEvent<Element>
|
|
542
|
+
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
537
543
|
} & {
|
|
538
|
-
keyTest?: ((event: import("react").KeyboardEvent<Element>
|
|
544
|
+
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
|
|
539
545
|
};
|
|
@@ -20,7 +20,7 @@ export declare const actionGoToCollaborator: {
|
|
|
20
20
|
errorMessage: import("react").ReactNode;
|
|
21
21
|
activeEmbeddable: {
|
|
22
22
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
23
|
-
state: "
|
|
23
|
+
state: "active" | "hover";
|
|
24
24
|
} | null;
|
|
25
25
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
26
26
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -39,7 +39,6 @@ export declare const actionGoToCollaborator: {
|
|
|
39
39
|
editingFrame: string | null;
|
|
40
40
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
41
41
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
42
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
43
42
|
activeTool: {
|
|
44
43
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
45
44
|
locked: boolean;
|
|
@@ -87,7 +86,7 @@ export declare const actionGoToCollaborator: {
|
|
|
87
86
|
name: "imageExport" | "help" | "jsonExport";
|
|
88
87
|
} | {
|
|
89
88
|
name: "ttd";
|
|
90
|
-
tab: "text-to-diagram"
|
|
89
|
+
tab: "mermaid" | "text-to-diagram";
|
|
91
90
|
} | {
|
|
92
91
|
name: "commandPalette";
|
|
93
92
|
} | {
|
|
@@ -159,8 +158,7 @@ export declare const actionGoToCollaborator: {
|
|
|
159
158
|
shown: true;
|
|
160
159
|
data: import("../charts").Spreadsheet;
|
|
161
160
|
};
|
|
162
|
-
|
|
163
|
-
showHyperlinkPopup: false | "info" | "editor";
|
|
161
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
164
162
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
165
163
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
166
164
|
originSnapOffset: {
|
|
@@ -175,6 +173,10 @@ export declare const actionGoToCollaborator: {
|
|
|
175
173
|
focusedId: string | null;
|
|
176
174
|
matches: readonly import("../types").SearchMatch[];
|
|
177
175
|
}> | null;
|
|
176
|
+
activeLockedId: string | null;
|
|
177
|
+
lockedMultiSelections: {
|
|
178
|
+
[groupId: string]: true;
|
|
179
|
+
};
|
|
178
180
|
};
|
|
179
181
|
captureUpdate: "EVENTUALLY";
|
|
180
182
|
} | {
|
|
@@ -194,7 +196,7 @@ export declare const actionGoToCollaborator: {
|
|
|
194
196
|
errorMessage: import("react").ReactNode;
|
|
195
197
|
activeEmbeddable: {
|
|
196
198
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
197
|
-
state: "
|
|
199
|
+
state: "active" | "hover";
|
|
198
200
|
} | null;
|
|
199
201
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
200
202
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -213,7 +215,6 @@ export declare const actionGoToCollaborator: {
|
|
|
213
215
|
editingFrame: string | null;
|
|
214
216
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
215
217
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
216
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
217
218
|
activeTool: {
|
|
218
219
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
219
220
|
locked: boolean;
|
|
@@ -260,7 +261,7 @@ export declare const actionGoToCollaborator: {
|
|
|
260
261
|
name: "imageExport" | "help" | "jsonExport";
|
|
261
262
|
} | {
|
|
262
263
|
name: "ttd";
|
|
263
|
-
tab: "text-to-diagram"
|
|
264
|
+
tab: "mermaid" | "text-to-diagram";
|
|
264
265
|
} | {
|
|
265
266
|
name: "commandPalette";
|
|
266
267
|
} | {
|
|
@@ -332,8 +333,7 @@ export declare const actionGoToCollaborator: {
|
|
|
332
333
|
shown: true;
|
|
333
334
|
data: import("../charts").Spreadsheet;
|
|
334
335
|
};
|
|
335
|
-
|
|
336
|
-
showHyperlinkPopup: false | "info" | "editor";
|
|
336
|
+
showHyperlinkPopup: false | "editor" | "info";
|
|
337
337
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
338
338
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
339
339
|
originSnapOffset: {
|
|
@@ -348,6 +348,10 @@ export declare const actionGoToCollaborator: {
|
|
|
348
348
|
focusedId: string | null;
|
|
349
349
|
matches: readonly import("../types").SearchMatch[];
|
|
350
350
|
}> | null;
|
|
351
|
+
activeLockedId: string | null;
|
|
352
|
+
lockedMultiSelections: {
|
|
353
|
+
[groupId: string]: true;
|
|
354
|
+
};
|
|
351
355
|
};
|
|
352
356
|
captureUpdate: "EVENTUALLY";
|
|
353
357
|
};
|