@excalidraw/excalidraw 0.18.0-432a46e → 0.18.0-508de2f3a
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-3JWCK6AW.js +5677 -0
- package/dist/dev/chunk-3JWCK6AW.js.map +7 -0
- package/dist/dev/chunk-BVDPDK7J.js +7 -0
- package/dist/dev/chunk-BVDPDK7J.js.map +7 -0
- package/dist/dev/{chunk-LMHBUWQS.js → chunk-QF5FRM6O.js} +16 -5
- package/dist/dev/chunk-QF5FRM6O.js.map +7 -0
- package/dist/dev/data/{image-5HAY2PCR.js → image-CNYZRAWA.js} +3 -3
- package/dist/dev/index.css +147 -68
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +9456 -9767
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-OZCJJ2HN.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-2HQY2INW.js +4 -0
- package/dist/prod/chunk-I4UNSFV6.js +12 -0
- package/dist/prod/chunk-XRPJNYI4.js +7 -0
- package/dist/prod/data/image-DYRE7ZKS.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +25 -17
- package/dist/prod/locales/{en-B4ZKOASM.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/{packages/common → common}/src/colors.d.ts +1 -0
- package/dist/types/{packages/common → common}/src/constants.d.ts +24 -3
- package/dist/types/{packages/excalidraw → common/src}/emitter.d.ts +1 -1
- package/dist/types/{packages/common → common}/src/font-metadata.d.ts +4 -2
- package/dist/types/{packages/common → common}/src/index.d.ts +1 -0
- package/dist/types/{packages/common → common}/src/utility-types.d.ts +5 -0
- package/dist/types/{packages/common → common}/src/utils.d.ts +18 -1
- package/dist/types/{packages/excalidraw/scene → element/src}/Scene.d.ts +16 -15
- package/dist/types/element/src/align.d.ts +8 -0
- package/dist/types/{packages/element → element}/src/binding.d.ts +26 -15
- package/dist/types/{packages/element → element}/src/bounds.d.ts +18 -5
- package/dist/types/element/src/collision.d.ts +32 -0
- package/dist/types/{packages/element → element}/src/cropElement.d.ts +1 -1
- package/dist/types/{packages/excalidraw/change.d.ts → element/src/delta.d.ts} +78 -40
- package/dist/types/element/src/distance.d.ts +3 -0
- package/dist/types/{packages/element → element}/src/distribute.d.ts +2 -1
- package/dist/types/{packages/element → element}/src/dragElements.d.ts +3 -2
- package/dist/types/{packages/element → element}/src/duplicate.d.ts +10 -13
- package/dist/types/{packages/element → element}/src/elbowArrow.d.ts +1 -1
- package/dist/types/{packages/element → element}/src/flowchart.d.ts +3 -2
- package/dist/types/{packages/element → element}/src/fractionalIndex.d.ts +9 -3
- package/dist/types/{packages/element → element}/src/frame.d.ts +5 -4
- package/dist/types/{packages/element → element}/src/groups.d.ts +1 -0
- package/dist/types/{packages/element → element}/src/heading.d.ts +0 -1
- package/dist/types/element/src/index.d.ts +57 -0
- package/dist/types/{packages/element → element}/src/linearElementEditor.d.ts +23 -36
- package/dist/types/{packages/element → element}/src/mutateElement.d.ts +12 -3
- package/dist/types/{packages/element → element}/src/newElement.d.ts +4 -3
- package/dist/types/{packages/element → element}/src/resizeElements.d.ts +5 -4
- package/dist/types/{packages/element → element}/src/selection.d.ts +11 -5
- package/dist/types/element/src/shape.d.ts +42 -0
- package/dist/types/{packages/element → element}/src/sizeHelpers.d.ts +2 -2
- package/dist/types/element/src/store.d.ts +232 -0
- package/dist/types/{packages/element → element}/src/textElement.d.ts +5 -3
- package/dist/types/{packages/element → element}/src/typeChecks.d.ts +19 -1
- package/dist/types/{packages/element → element}/src/types.d.ts +15 -2
- package/dist/types/element/src/utils.d.ts +31 -0
- package/dist/types/{packages/element → element}/src/zindex.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionAddToLibrary.d.ts +42 -51
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionBoundText.d.ts +28 -34
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionCanvas.d.ts +351 -214
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionClipboard.d.ts +84 -100
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionCropEditor.d.ts +14 -17
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionDeleteSelected.d.ts +42 -50
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionElementLink.d.ts +13 -16
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionElementLock.d.ts +43 -51
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionEmbeddable.d.ts +14 -17
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionExport.d.ts +136 -163
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionFinalize.d.ts +75 -40
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionFrame.d.ts +103 -115
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionGroup.d.ts +28 -34
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionHistory.d.ts +1 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +713 -0
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionLink.d.ts +13 -16
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionMenu.d.ts +39 -48
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionNavigate.d.ts +27 -33
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionProperties.d.ts +218 -255
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionSelectAll.d.ts +14 -17
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionStyles.d.ts +14 -17
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionToggleGridMode.d.ts +14 -17
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionToggleObjectsSnapMode.d.ts +14 -17
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +182 -0
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +19 -0
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionToggleStats.d.ts +14 -18
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionToggleViewMode.d.ts +14 -18
- package/dist/types/{packages/excalidraw → excalidraw}/actions/actionToggleZenMode.d.ts +14 -18
- package/dist/types/{packages/excalidraw → excalidraw}/actions/types.d.ts +4 -3
- package/dist/types/{packages/excalidraw → excalidraw}/animated-trail.d.ts +7 -1
- package/dist/types/{packages/excalidraw → excalidraw}/appState.d.ts +20 -10
- package/dist/types/{packages/excalidraw → excalidraw}/components/Actions.d.ts +0 -4
- package/dist/types/{packages/excalidraw → excalidraw}/components/App.d.ts +41 -24
- package/dist/types/{packages/excalidraw → excalidraw}/components/ButtonIcon.d.ts +1 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/ColorInput.d.ts +2 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/ColorPicker.d.ts +5 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/CustomColorList.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +7 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/Picker.d.ts +2 -3
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/PickerColorList.d.ts +2 -3
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/ShadeList.d.ts +2 -2
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/TopPicks.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/colorPickerUtils.d.ts +2 -2
- package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/keyboardNavHandlers.d.ts +1 -1
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +23 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/ElementLinkDialog.d.ts +4 -3
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/{packages/excalidraw/components/ButtonIconSelect.d.ts → excalidraw/components/RadioSelection.d.ts} +1 -1
- package/dist/types/excalidraw/components/Range.d.ts +8 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/Angle.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/CanvasGrid.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/Collapsible.d.ts +2 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/Dimension.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/DragInput.d.ts +12 -2
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/FontSize.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/MultiAngle.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/MultiDimension.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/MultiFontSize.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/MultiPosition.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/Position.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/utils.d.ts +4 -11
- package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/canvases/InteractiveCanvas.d.ts +1 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/hyperlink/Hyperlink.d.ts +3 -2
- package/dist/types/{packages/excalidraw → excalidraw}/components/hyperlink/helpers.d.ts +2 -1
- package/dist/types/{packages/excalidraw → excalidraw}/components/icons.d.ts +4 -0
- package/dist/types/{packages/excalidraw → excalidraw}/components/shapes.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/data/reconcile.d.ts +1 -0
- package/dist/types/{packages/excalidraw → excalidraw}/data/restore.d.ts +6 -1
- package/dist/types/{packages/excalidraw → excalidraw}/data/transform.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/editor-jotai.d.ts +6 -6
- package/dist/types/excalidraw/eraser/index.d.ts +12 -0
- package/dist/types/{packages/excalidraw → excalidraw}/fonts/Fonts.d.ts +1 -1
- package/dist/types/excalidraw/history.d.ts +48 -0
- package/dist/types/{packages/excalidraw → excalidraw}/hooks/useEmitter.d.ts +1 -1
- package/dist/types/{packages/excalidraw → excalidraw}/index.d.ts +11 -10
- package/dist/types/excalidraw/lasso/index.d.ts +16 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +13 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +18 -0
- package/dist/types/excalidraw/renderer/staticScene.d.ts +14 -0
- package/dist/types/{packages/excalidraw → excalidraw}/scene/Renderer.d.ts +1 -2
- package/dist/types/excalidraw/scene/index.d.ts +4 -0
- package/dist/types/{packages/excalidraw → excalidraw}/scene/scrollbars.d.ts +2 -3
- package/dist/types/{packages/excalidraw → excalidraw}/scene/types.d.ts +2 -0
- package/dist/types/{packages/excalidraw → excalidraw}/snapping.d.ts +2 -2
- package/dist/types/{packages/excalidraw → excalidraw}/types.d.ts +38 -15
- package/dist/types/{packages/excalidraw → excalidraw}/wysiwyg/textWysiwyg.d.ts +3 -1
- package/dist/types/{packages/math → 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 +74 -0
- package/dist/types/{packages/math → math}/src/index.d.ts +1 -0
- package/dist/types/{packages/math → math}/src/point.d.ts +1 -1
- package/dist/types/{packages/math → math}/src/polygon.d.ts +1 -0
- package/dist/types/{packages/math → math}/src/rectangle.d.ts +2 -0
- package/dist/types/{packages/math → math}/src/segment.d.ts +1 -1
- package/dist/types/{packages/math → math}/src/types.d.ts +1 -0
- package/dist/types/{packages/math → math}/src/vector.d.ts +8 -2
- package/dist/types/{packages/utils → utils}/src/bbox.d.ts +1 -1
- package/dist/types/{packages/utils → utils}/src/index.d.ts +1 -1
- package/dist/types/{packages/utils → utils}/src/withinBounds.d.ts +1 -1
- package/history.ts +146 -109
- package/package.json +30 -10
- package/dist/dev/chunk-LMHBUWQS.js.map +0 -7
- package/dist/dev/chunk-S7W4OWSF.js +0 -18442
- package/dist/dev/chunk-S7W4OWSF.js.map +0 -7
- package/dist/dev/chunk-ZG3EI5XS.js +0 -7
- package/dist/dev/chunk-ZG3EI5XS.js.map +0 -7
- package/dist/prod/chunk-6U3AYISY.js +0 -12
- package/dist/prod/chunk-LRITYP5X.js +0 -31
- package/dist/prod/chunk-U24AOZ3B.js +0 -7
- package/dist/prod/data/image-W3GRS73V.js +0 -1
- package/dist/types/excalidraw-app/app_constants.d.ts +0 -44
- package/dist/types/packages/element/src/Shape.d.ts +0 -17
- package/dist/types/packages/element/src/ShapeCache.d.ts +0 -25
- package/dist/types/packages/element/src/align.d.ts +0 -7
- package/dist/types/packages/element/src/collision.d.ts +0 -26
- package/dist/types/packages/element/src/distance.d.ts +0 -3
- package/dist/types/packages/element/src/index.d.ts +0 -16
- package/dist/types/packages/element/src/shapes.d.ts +0 -23
- package/dist/types/packages/element/src/utils.d.ts +0 -21
- package/dist/types/packages/excalidraw/actions/actionLinearEditor.d.ts +0 -192
- package/dist/types/packages/excalidraw/actions/actionToggleSearchMenu.d.ts +0 -357
- package/dist/types/packages/excalidraw/components/ButtonSelect.d.ts +0 -9
- package/dist/types/packages/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +0 -8
- package/dist/types/packages/excalidraw/components/Range.d.ts +0 -8
- package/dist/types/packages/excalidraw/history.d.ts +0 -40
- package/dist/types/packages/excalidraw/renderer/helpers.d.ts +0 -13
- package/dist/types/packages/excalidraw/renderer/staticScene.d.ts +0 -11
- package/dist/types/packages/excalidraw/scene/index.d.ts +0 -4
- package/dist/types/packages/excalidraw/store.d.ts +0 -129
- package/dist/types/packages/excalidraw/tests/fixtures/diagramFixture.d.ts +0 -504
- package/dist/types/packages/excalidraw/tests/fixtures/elementFixture.d.ts +0 -7
- package/dist/types/packages/excalidraw/tests/helpers/api.d.ts +0 -89
- package/dist/types/packages/excalidraw/tests/helpers/colorize.d.ts +0 -2
- package/dist/types/packages/excalidraw/tests/helpers/mocks.d.ts +0 -5
- package/dist/types/packages/excalidraw/tests/helpers/polyfills.d.ts +0 -36
- package/dist/types/packages/excalidraw/tests/helpers/ui.d.ts +0 -189
- package/dist/types/packages/excalidraw/tests/queries/dom.d.ts +0 -2
- package/dist/types/packages/excalidraw/tests/queries/toolQueries.d.ts +0 -2
- package/dist/types/packages/excalidraw/tests/test-utils.d.ts +0 -139
- package/dist/types/packages/excalidraw/visualdebug.d.ts +0 -41
- package/dist/types/packages/math/src/curve.d.ts +0 -40
- package/dist/types/packages/utils/src/collision.d.ts +0 -8
- /package/dist/dev/data/{image-5HAY2PCR.js.map → image-CNYZRAWA.js.map} +0 -0
- /package/dist/dev/locales/{en-OZCJJ2HN.js.map → en-SMAPCEOQ.js.map} +0 -0
- /package/dist/types/{packages/common → common}/src/binary-heap.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/keys.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/points.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/promise-pool.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/queue.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/random.d.ts +0 -0
- /package/dist/types/{packages/common → common}/src/url.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/comparisons.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/containerCache.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/elementLink.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/embeddable.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/image.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/renderElement.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/resizeTest.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/showSelectedShapeActions.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/sortElements.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/textMeasurements.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/textWrapping.d.ts +0 -0
- /package/dist/types/{packages/element → element}/src/transformHandles.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionAlign.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionDistribute.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionDuplicateSelection.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionFlip.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionTextAutoResize.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/actionZindex.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/manager.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/register.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/actions/shortcuts.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/analytics.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/animation-frame-handler.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/charts.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/clients.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/clipboard.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ActiveConfirmDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Avatar.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/BraveMeasureTextError.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Button.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ButtonIconCycle.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ButtonSeparator.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Card.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/CheckboxItem.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ColorPicker/PickerHeading.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/CommandPalette/CommandPalette.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/CommandPalette/defaultCommandPaletteItems.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/CommandPalette/types.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ConfirmDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ContextMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/DarkModeToggle.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/DefaultSidebar.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Dialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/DialogActionButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ElementCanvasButtons.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ErrorDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ExcalidrawLogo.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/EyeDropper.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FilledButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FixedSideContainer.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FollowMode/FollowMode.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FontPicker/FontPicker.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FontPicker/FontPickerList.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FontPicker/FontPickerTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/FontPicker/keyboardNavHandlers.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/HandButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/HelpButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/HelpDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/HintViewer.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/IconPicker.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ImageExportDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/InitializeApp.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/InlineIcon.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Island.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/JSONExportDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LaserPointerButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LayerUI.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenuBrowseButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenuControlButtons.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenuHeaderContent.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenuItems.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryMenuSection.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LibraryUnit.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LoadingMessage.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/LockButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/MagicButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/MobileMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Modal.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/OverwriteConfirm/OverwriteConfirm.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/OverwriteConfirm/OverwriteConfirmState.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Paragraph.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/PasteChartDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/PenModeButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Popover.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ProjectName.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/PropertiesPopover.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/PublishLibrary.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/QuickSearch.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/RadioGroup.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/SVGLayer.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ScrollableList.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/SearchMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Section.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ShareableLinkDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/Sidebar.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarHeader.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarTab.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarTabTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarTabTriggers.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarTabs.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/SidebarTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Sidebar/common.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Spinner.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Stack.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Stats/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Switch.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/MermaidToExcalidraw.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialog.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogInput.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogOutput.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogPanel.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogPanels.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogTab.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogTabTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogTabTriggers.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogTabs.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/TTDDialogTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TTDDialog/common.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/TextField.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Toast.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/ToolButton.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Tooltip.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/Trans.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/UserList.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/canvases/NewElementCanvas.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/canvases/StaticCanvas.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/canvases/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuContent.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuGroup.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuItem.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuItemContent.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuItemCustom.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuItemLink.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuSeparator.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/DropdownMenuTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/common.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/dropdownMenu/dropdownMenuUtils.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/footer/Footer.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/footer/FooterCenter.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/hoc/withInternalFallback.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/main-menu/DefaultItems.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/main-menu/MainMenu.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/components/welcome-screen/WelcomeScreen.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/context/tunnels.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/context/ui-appState.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/cursor.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/EditorLocalStorage.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/ai/types.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/blob.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/encode.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/encryption.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/filesystem.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/image.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/json.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/library.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/resave.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/data/types.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/deburr.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/errors.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Cascadia/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/ComicShanns/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Emoji/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/ExcalidrawFontFace.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Excalifont/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Helvetica/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Liberation/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Lilita/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Nunito/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Virgil/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/Xiaolai/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/fonts/index.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/gesture.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useCallbackRefState.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useCopiedIndicator.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useCreatePortalContainer.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useLibraryItemSvg.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useOutsideClick.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useScrollPosition.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useStable.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useStableCallback.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/hooks/useTransition.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/i18n.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/index-node.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/laser-trails.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/mermaid.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/polyfill.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/reactUtils.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/renderer/interactiveScene.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/renderer/renderNewElementScene.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/renderer/renderSnaps.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/renderer/roundRect.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/renderer/staticSvgScene.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/scene/export.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/scene/normalize.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/scene/scroll.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/scene/zoom.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/harfbuzz/harfbuzz-bindings.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/harfbuzz/harfbuzz-loader.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/harfbuzz/harfbuzz-wasm.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/subset-main.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/subset-shared.chunk.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/subset-worker.chunk.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/woff2/woff2-bindings.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/woff2/woff2-loader.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/subset/woff2/woff2-wasm.d.ts +0 -0
- /package/dist/types/{packages/excalidraw → excalidraw}/workers.d.ts +0 -0
- /package/dist/types/{packages/math → math}/src/ellipse.d.ts +0 -0
- /package/dist/types/{packages/math → math}/src/line.d.ts +0 -0
- /package/dist/types/{packages/math → math}/src/range.d.ts +0 -0
- /package/dist/types/{packages/math → math}/src/triangle.d.ts +0 -0
- /package/dist/types/{packages/math → math}/src/utils.d.ts +0 -0
- /package/dist/types/{packages/utils → utils}/src/export.d.ts +0 -0
- /package/dist/types/{packages/utils → utils}/src/shape.d.ts +0 -0
|
@@ -18,7 +18,7 @@ export declare const actionChangeProjectName: {
|
|
|
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;
|
|
@@ -26,7 +26,7 @@ export declare const actionChangeProjectName: {
|
|
|
26
26
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
27
27
|
isBindingEnabled: boolean;
|
|
28
28
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
29
|
-
suggestedBindings: import("@excalidraw/element
|
|
29
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
30
30
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
31
31
|
frameRendering: {
|
|
32
32
|
enabled: boolean;
|
|
@@ -37,10 +37,10 @@ export declare const actionChangeProjectName: {
|
|
|
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").LinearElementEditor | null;
|
|
41
40
|
activeTool: {
|
|
42
41
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
43
42
|
locked: boolean;
|
|
43
|
+
fromSelection: boolean;
|
|
44
44
|
} & import("../types").ActiveTool;
|
|
45
45
|
penMode: boolean;
|
|
46
46
|
penDetected: boolean;
|
|
@@ -73,7 +73,7 @@ export declare const actionChangeProjectName: {
|
|
|
73
73
|
zoom: Readonly<{
|
|
74
74
|
value: import("../types").NormalizedZoomValue;
|
|
75
75
|
}>;
|
|
76
|
-
openMenu: "
|
|
76
|
+
openMenu: "canvas" | "shape" | null;
|
|
77
77
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
78
78
|
openSidebar: {
|
|
79
79
|
name: string;
|
|
@@ -83,7 +83,7 @@ export declare const actionChangeProjectName: {
|
|
|
83
83
|
name: "imageExport" | "help" | "jsonExport";
|
|
84
84
|
} | {
|
|
85
85
|
name: "ttd";
|
|
86
|
-
tab: "text-to-diagram"
|
|
86
|
+
tab: "mermaid" | "text-to-diagram";
|
|
87
87
|
} | {
|
|
88
88
|
name: "commandPalette";
|
|
89
89
|
} | {
|
|
@@ -155,9 +155,8 @@ export declare const actionChangeProjectName: {
|
|
|
155
155
|
shown: true;
|
|
156
156
|
data: import("../charts").Spreadsheet;
|
|
157
157
|
};
|
|
158
|
-
pendingImageElementId: string | null;
|
|
159
158
|
showHyperlinkPopup: false | "editor" | "info";
|
|
160
|
-
selectedLinearElement: import("@excalidraw/element
|
|
159
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
161
160
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
162
161
|
originSnapOffset: {
|
|
163
162
|
x: number;
|
|
@@ -168,16 +167,14 @@ export declare const actionChangeProjectName: {
|
|
|
168
167
|
followedBy: Set<import("../types").SocketId>;
|
|
169
168
|
isCropping: boolean;
|
|
170
169
|
croppingElementId: string | null;
|
|
171
|
-
searchMatches:
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}[];
|
|
180
|
-
}[];
|
|
170
|
+
searchMatches: Readonly<{
|
|
171
|
+
focusedId: string | null;
|
|
172
|
+
matches: readonly import("../types").SearchMatch[];
|
|
173
|
+
}> | null;
|
|
174
|
+
activeLockedId: string | null;
|
|
175
|
+
lockedMultiSelections: {
|
|
176
|
+
[groupId: string]: true;
|
|
177
|
+
};
|
|
181
178
|
};
|
|
182
179
|
captureUpdate: "EVENTUALLY";
|
|
183
180
|
};
|
|
@@ -205,7 +202,7 @@ export declare const actionChangeExportScale: {
|
|
|
205
202
|
errorMessage: import("react").ReactNode;
|
|
206
203
|
activeEmbeddable: {
|
|
207
204
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
208
|
-
state: "
|
|
205
|
+
state: "active" | "hover";
|
|
209
206
|
} | null;
|
|
210
207
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
211
208
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -213,7 +210,7 @@ export declare const actionChangeExportScale: {
|
|
|
213
210
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
214
211
|
isBindingEnabled: boolean;
|
|
215
212
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
216
|
-
suggestedBindings: import("@excalidraw/element
|
|
213
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
217
214
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
218
215
|
frameRendering: {
|
|
219
216
|
enabled: boolean;
|
|
@@ -224,10 +221,10 @@ export declare const actionChangeExportScale: {
|
|
|
224
221
|
editingFrame: string | null;
|
|
225
222
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
226
223
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
227
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
228
224
|
activeTool: {
|
|
229
225
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
230
226
|
locked: boolean;
|
|
227
|
+
fromSelection: boolean;
|
|
231
228
|
} & import("../types").ActiveTool;
|
|
232
229
|
penMode: boolean;
|
|
233
230
|
penDetected: boolean;
|
|
@@ -260,7 +257,7 @@ export declare const actionChangeExportScale: {
|
|
|
260
257
|
zoom: Readonly<{
|
|
261
258
|
value: import("../types").NormalizedZoomValue;
|
|
262
259
|
}>;
|
|
263
|
-
openMenu: "
|
|
260
|
+
openMenu: "canvas" | "shape" | null;
|
|
264
261
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
265
262
|
openSidebar: {
|
|
266
263
|
name: string;
|
|
@@ -270,7 +267,7 @@ export declare const actionChangeExportScale: {
|
|
|
270
267
|
name: "imageExport" | "help" | "jsonExport";
|
|
271
268
|
} | {
|
|
272
269
|
name: "ttd";
|
|
273
|
-
tab: "text-to-diagram"
|
|
270
|
+
tab: "mermaid" | "text-to-diagram";
|
|
274
271
|
} | {
|
|
275
272
|
name: "commandPalette";
|
|
276
273
|
} | {
|
|
@@ -342,9 +339,8 @@ export declare const actionChangeExportScale: {
|
|
|
342
339
|
shown: true;
|
|
343
340
|
data: import("../charts").Spreadsheet;
|
|
344
341
|
};
|
|
345
|
-
pendingImageElementId: string | null;
|
|
346
342
|
showHyperlinkPopup: false | "editor" | "info";
|
|
347
|
-
selectedLinearElement: import("@excalidraw/element
|
|
343
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
348
344
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
349
345
|
originSnapOffset: {
|
|
350
346
|
x: number;
|
|
@@ -355,16 +351,14 @@ export declare const actionChangeExportScale: {
|
|
|
355
351
|
followedBy: Set<import("../types").SocketId>;
|
|
356
352
|
isCropping: boolean;
|
|
357
353
|
croppingElementId: string | null;
|
|
358
|
-
searchMatches:
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
}[];
|
|
367
|
-
}[];
|
|
354
|
+
searchMatches: Readonly<{
|
|
355
|
+
focusedId: string | null;
|
|
356
|
+
matches: readonly import("../types").SearchMatch[];
|
|
357
|
+
}> | null;
|
|
358
|
+
activeLockedId: string | null;
|
|
359
|
+
lockedMultiSelections: {
|
|
360
|
+
[groupId: string]: true;
|
|
361
|
+
};
|
|
368
362
|
};
|
|
369
363
|
captureUpdate: "EVENTUALLY";
|
|
370
364
|
};
|
|
@@ -392,7 +386,7 @@ export declare const actionChangeExportBackground: {
|
|
|
392
386
|
errorMessage: import("react").ReactNode;
|
|
393
387
|
activeEmbeddable: {
|
|
394
388
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
395
|
-
state: "
|
|
389
|
+
state: "active" | "hover";
|
|
396
390
|
} | null;
|
|
397
391
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
398
392
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -400,7 +394,7 @@ export declare const actionChangeExportBackground: {
|
|
|
400
394
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
401
395
|
isBindingEnabled: boolean;
|
|
402
396
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
403
|
-
suggestedBindings: import("@excalidraw/element
|
|
397
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
404
398
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
405
399
|
frameRendering: {
|
|
406
400
|
enabled: boolean;
|
|
@@ -411,10 +405,10 @@ export declare const actionChangeExportBackground: {
|
|
|
411
405
|
editingFrame: string | null;
|
|
412
406
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
413
407
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
414
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
415
408
|
activeTool: {
|
|
416
409
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
417
410
|
locked: boolean;
|
|
411
|
+
fromSelection: boolean;
|
|
418
412
|
} & import("../types").ActiveTool;
|
|
419
413
|
penMode: boolean;
|
|
420
414
|
penDetected: boolean;
|
|
@@ -447,7 +441,7 @@ export declare const actionChangeExportBackground: {
|
|
|
447
441
|
zoom: Readonly<{
|
|
448
442
|
value: import("../types").NormalizedZoomValue;
|
|
449
443
|
}>;
|
|
450
|
-
openMenu: "
|
|
444
|
+
openMenu: "canvas" | "shape" | null;
|
|
451
445
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
452
446
|
openSidebar: {
|
|
453
447
|
name: string;
|
|
@@ -457,7 +451,7 @@ export declare const actionChangeExportBackground: {
|
|
|
457
451
|
name: "imageExport" | "help" | "jsonExport";
|
|
458
452
|
} | {
|
|
459
453
|
name: "ttd";
|
|
460
|
-
tab: "text-to-diagram"
|
|
454
|
+
tab: "mermaid" | "text-to-diagram";
|
|
461
455
|
} | {
|
|
462
456
|
name: "commandPalette";
|
|
463
457
|
} | {
|
|
@@ -529,9 +523,8 @@ export declare const actionChangeExportBackground: {
|
|
|
529
523
|
shown: true;
|
|
530
524
|
data: import("../charts").Spreadsheet;
|
|
531
525
|
};
|
|
532
|
-
pendingImageElementId: string | null;
|
|
533
526
|
showHyperlinkPopup: false | "editor" | "info";
|
|
534
|
-
selectedLinearElement: import("@excalidraw/element
|
|
527
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
535
528
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
536
529
|
originSnapOffset: {
|
|
537
530
|
x: number;
|
|
@@ -542,16 +535,14 @@ export declare const actionChangeExportBackground: {
|
|
|
542
535
|
followedBy: Set<import("../types").SocketId>;
|
|
543
536
|
isCropping: boolean;
|
|
544
537
|
croppingElementId: string | null;
|
|
545
|
-
searchMatches:
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
}[];
|
|
554
|
-
}[];
|
|
538
|
+
searchMatches: Readonly<{
|
|
539
|
+
focusedId: string | null;
|
|
540
|
+
matches: readonly import("../types").SearchMatch[];
|
|
541
|
+
}> | null;
|
|
542
|
+
activeLockedId: string | null;
|
|
543
|
+
lockedMultiSelections: {
|
|
544
|
+
[groupId: string]: true;
|
|
545
|
+
};
|
|
555
546
|
};
|
|
556
547
|
captureUpdate: "EVENTUALLY";
|
|
557
548
|
};
|
|
@@ -579,7 +570,7 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
579
570
|
errorMessage: import("react").ReactNode;
|
|
580
571
|
activeEmbeddable: {
|
|
581
572
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
582
|
-
state: "
|
|
573
|
+
state: "active" | "hover";
|
|
583
574
|
} | null;
|
|
584
575
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
585
576
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -587,7 +578,7 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
587
578
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
588
579
|
isBindingEnabled: boolean;
|
|
589
580
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
590
|
-
suggestedBindings: import("@excalidraw/element
|
|
581
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
591
582
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
592
583
|
frameRendering: {
|
|
593
584
|
enabled: boolean;
|
|
@@ -598,10 +589,10 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
598
589
|
editingFrame: string | null;
|
|
599
590
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
600
591
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
601
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
602
592
|
activeTool: {
|
|
603
593
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
604
594
|
locked: boolean;
|
|
595
|
+
fromSelection: boolean;
|
|
605
596
|
} & import("../types").ActiveTool;
|
|
606
597
|
penMode: boolean;
|
|
607
598
|
penDetected: boolean;
|
|
@@ -634,7 +625,7 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
634
625
|
zoom: Readonly<{
|
|
635
626
|
value: import("../types").NormalizedZoomValue;
|
|
636
627
|
}>;
|
|
637
|
-
openMenu: "
|
|
628
|
+
openMenu: "canvas" | "shape" | null;
|
|
638
629
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
639
630
|
openSidebar: {
|
|
640
631
|
name: string;
|
|
@@ -644,7 +635,7 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
644
635
|
name: "imageExport" | "help" | "jsonExport";
|
|
645
636
|
} | {
|
|
646
637
|
name: "ttd";
|
|
647
|
-
tab: "text-to-diagram"
|
|
638
|
+
tab: "mermaid" | "text-to-diagram";
|
|
648
639
|
} | {
|
|
649
640
|
name: "commandPalette";
|
|
650
641
|
} | {
|
|
@@ -716,9 +707,8 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
716
707
|
shown: true;
|
|
717
708
|
data: import("../charts").Spreadsheet;
|
|
718
709
|
};
|
|
719
|
-
pendingImageElementId: string | null;
|
|
720
710
|
showHyperlinkPopup: false | "editor" | "info";
|
|
721
|
-
selectedLinearElement: import("@excalidraw/element
|
|
711
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
722
712
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
723
713
|
originSnapOffset: {
|
|
724
714
|
x: number;
|
|
@@ -729,16 +719,14 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
729
719
|
followedBy: Set<import("../types").SocketId>;
|
|
730
720
|
isCropping: boolean;
|
|
731
721
|
croppingElementId: string | null;
|
|
732
|
-
searchMatches:
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
}[];
|
|
741
|
-
}[];
|
|
722
|
+
searchMatches: Readonly<{
|
|
723
|
+
focusedId: string | null;
|
|
724
|
+
matches: readonly import("../types").SearchMatch[];
|
|
725
|
+
}> | null;
|
|
726
|
+
activeLockedId: string | null;
|
|
727
|
+
lockedMultiSelections: {
|
|
728
|
+
[groupId: string]: true;
|
|
729
|
+
};
|
|
742
730
|
};
|
|
743
731
|
captureUpdate: "EVENTUALLY";
|
|
744
732
|
};
|
|
@@ -771,7 +759,7 @@ export declare const actionSaveToActiveFile: {
|
|
|
771
759
|
errorMessage: import("react").ReactNode;
|
|
772
760
|
activeEmbeddable: {
|
|
773
761
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
774
|
-
state: "
|
|
762
|
+
state: "active" | "hover";
|
|
775
763
|
} | null;
|
|
776
764
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
777
765
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -779,7 +767,7 @@ export declare const actionSaveToActiveFile: {
|
|
|
779
767
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
780
768
|
isBindingEnabled: boolean;
|
|
781
769
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
782
|
-
suggestedBindings: import("@excalidraw/element
|
|
770
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
783
771
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
784
772
|
frameRendering: {
|
|
785
773
|
enabled: boolean;
|
|
@@ -790,10 +778,10 @@ export declare const actionSaveToActiveFile: {
|
|
|
790
778
|
editingFrame: string | null;
|
|
791
779
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
792
780
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
793
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
794
781
|
activeTool: {
|
|
795
782
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
796
783
|
locked: boolean;
|
|
784
|
+
fromSelection: boolean;
|
|
797
785
|
} & import("../types").ActiveTool;
|
|
798
786
|
penMode: boolean;
|
|
799
787
|
penDetected: boolean;
|
|
@@ -827,7 +815,7 @@ export declare const actionSaveToActiveFile: {
|
|
|
827
815
|
zoom: Readonly<{
|
|
828
816
|
value: import("../types").NormalizedZoomValue;
|
|
829
817
|
}>;
|
|
830
|
-
openMenu: "
|
|
818
|
+
openMenu: "canvas" | "shape" | null;
|
|
831
819
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
832
820
|
openSidebar: {
|
|
833
821
|
name: string;
|
|
@@ -837,7 +825,7 @@ export declare const actionSaveToActiveFile: {
|
|
|
837
825
|
name: "imageExport" | "help" | "jsonExport";
|
|
838
826
|
} | {
|
|
839
827
|
name: "ttd";
|
|
840
|
-
tab: "text-to-diagram"
|
|
828
|
+
tab: "mermaid" | "text-to-diagram";
|
|
841
829
|
} | {
|
|
842
830
|
name: "commandPalette";
|
|
843
831
|
} | {
|
|
@@ -903,9 +891,8 @@ export declare const actionSaveToActiveFile: {
|
|
|
903
891
|
shown: true;
|
|
904
892
|
data: import("../charts").Spreadsheet;
|
|
905
893
|
};
|
|
906
|
-
pendingImageElementId: string | null;
|
|
907
894
|
showHyperlinkPopup: false | "editor" | "info";
|
|
908
|
-
selectedLinearElement: import("@excalidraw/element
|
|
895
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
909
896
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
910
897
|
originSnapOffset: {
|
|
911
898
|
x: number;
|
|
@@ -916,16 +903,14 @@ export declare const actionSaveToActiveFile: {
|
|
|
916
903
|
followedBy: Set<import("../types").SocketId>;
|
|
917
904
|
isCropping: boolean;
|
|
918
905
|
croppingElementId: string | null;
|
|
919
|
-
searchMatches:
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
}[];
|
|
928
|
-
}[];
|
|
906
|
+
searchMatches: Readonly<{
|
|
907
|
+
focusedId: string | null;
|
|
908
|
+
matches: readonly import("../types").SearchMatch[];
|
|
909
|
+
}> | null;
|
|
910
|
+
activeLockedId: string | null;
|
|
911
|
+
lockedMultiSelections: {
|
|
912
|
+
[groupId: string]: true;
|
|
913
|
+
};
|
|
929
914
|
};
|
|
930
915
|
} | {
|
|
931
916
|
captureUpdate: "EVENTUALLY";
|
|
@@ -961,7 +946,7 @@ export declare const actionSaveFileToDisk: {
|
|
|
961
946
|
errorMessage: import("react").ReactNode;
|
|
962
947
|
activeEmbeddable: {
|
|
963
948
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
964
|
-
state: "
|
|
949
|
+
state: "active" | "hover";
|
|
965
950
|
} | null;
|
|
966
951
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
967
952
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -969,7 +954,7 @@ export declare const actionSaveFileToDisk: {
|
|
|
969
954
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
970
955
|
isBindingEnabled: boolean;
|
|
971
956
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
972
|
-
suggestedBindings: import("@excalidraw/element
|
|
957
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
973
958
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
974
959
|
frameRendering: {
|
|
975
960
|
enabled: boolean;
|
|
@@ -980,10 +965,10 @@ export declare const actionSaveFileToDisk: {
|
|
|
980
965
|
editingFrame: string | null;
|
|
981
966
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
982
967
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
983
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
984
968
|
activeTool: {
|
|
985
969
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
986
970
|
locked: boolean;
|
|
971
|
+
fromSelection: boolean;
|
|
987
972
|
} & import("../types").ActiveTool;
|
|
988
973
|
penMode: boolean;
|
|
989
974
|
penDetected: boolean;
|
|
@@ -1017,7 +1002,7 @@ export declare const actionSaveFileToDisk: {
|
|
|
1017
1002
|
zoom: Readonly<{
|
|
1018
1003
|
value: import("../types").NormalizedZoomValue;
|
|
1019
1004
|
}>;
|
|
1020
|
-
openMenu: "
|
|
1005
|
+
openMenu: "canvas" | "shape" | null;
|
|
1021
1006
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1022
1007
|
openSidebar: {
|
|
1023
1008
|
name: string;
|
|
@@ -1082,9 +1067,8 @@ export declare const actionSaveFileToDisk: {
|
|
|
1082
1067
|
shown: true;
|
|
1083
1068
|
data: import("../charts").Spreadsheet;
|
|
1084
1069
|
};
|
|
1085
|
-
pendingImageElementId: string | null;
|
|
1086
1070
|
showHyperlinkPopup: false | "editor" | "info";
|
|
1087
|
-
selectedLinearElement: import("@excalidraw/element
|
|
1071
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1088
1072
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
1089
1073
|
originSnapOffset: {
|
|
1090
1074
|
x: number;
|
|
@@ -1095,16 +1079,14 @@ export declare const actionSaveFileToDisk: {
|
|
|
1095
1079
|
followedBy: Set<import("../types").SocketId>;
|
|
1096
1080
|
isCropping: boolean;
|
|
1097
1081
|
croppingElementId: string | null;
|
|
1098
|
-
searchMatches:
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
}[];
|
|
1107
|
-
}[];
|
|
1082
|
+
searchMatches: Readonly<{
|
|
1083
|
+
focusedId: string | null;
|
|
1084
|
+
matches: readonly import("../types").SearchMatch[];
|
|
1085
|
+
}> | null;
|
|
1086
|
+
activeLockedId: string | null;
|
|
1087
|
+
lockedMultiSelections: {
|
|
1088
|
+
[groupId: string]: true;
|
|
1089
|
+
};
|
|
1108
1090
|
};
|
|
1109
1091
|
} | {
|
|
1110
1092
|
captureUpdate: "EVENTUALLY";
|
|
@@ -1143,7 +1125,7 @@ export declare const actionLoadScene: {
|
|
|
1143
1125
|
name: "imageExport" | "help" | "jsonExport";
|
|
1144
1126
|
} | {
|
|
1145
1127
|
name: "ttd";
|
|
1146
|
-
tab: "text-to-diagram"
|
|
1128
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1147
1129
|
} | {
|
|
1148
1130
|
name: "commandPalette";
|
|
1149
1131
|
} | {
|
|
@@ -1156,20 +1138,18 @@ export declare const actionLoadScene: {
|
|
|
1156
1138
|
}>;
|
|
1157
1139
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
1158
1140
|
theme: Theme;
|
|
1159
|
-
pendingImageElementId: string | null;
|
|
1160
1141
|
activeEmbeddable: {
|
|
1161
1142
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
1162
|
-
state: "
|
|
1143
|
+
state: "active" | "hover";
|
|
1163
1144
|
} | null;
|
|
1164
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
1165
1145
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1166
1146
|
selectedGroupIds: {
|
|
1167
1147
|
[groupId: string]: boolean;
|
|
1168
1148
|
};
|
|
1169
|
-
selectedLinearElement: import("@excalidraw/element
|
|
1149
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1170
1150
|
multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
|
|
1171
1151
|
isBindingEnabled: boolean;
|
|
1172
|
-
suggestedBindings: import("@excalidraw/element
|
|
1152
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
1173
1153
|
isRotating: boolean;
|
|
1174
1154
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
1175
1155
|
collaborators: Map<import("../types").SocketId, Readonly<{
|
|
@@ -1197,27 +1177,11 @@ export declare const actionLoadScene: {
|
|
|
1197
1177
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1198
1178
|
isCropping: boolean;
|
|
1199
1179
|
croppingElementId: string | null;
|
|
1200
|
-
searchMatches:
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
offsetY: number;
|
|
1206
|
-
width: number;
|
|
1207
|
-
height: number;
|
|
1208
|
-
}[];
|
|
1209
|
-
}[];
|
|
1210
|
-
gridModeEnabled: boolean;
|
|
1211
|
-
objectsSnapModeEnabled: boolean;
|
|
1212
|
-
shouldCacheIgnoreZoom: boolean;
|
|
1213
|
-
exportScale: number;
|
|
1214
|
-
selectedElementsAreBeingDragged: boolean;
|
|
1215
|
-
gridSize: number;
|
|
1216
|
-
gridStep: number;
|
|
1217
|
-
currentHoveredFontFamily: number | null;
|
|
1218
|
-
hoveredElementIds: Readonly<{
|
|
1219
|
-
[id: string]: true;
|
|
1220
|
-
}>;
|
|
1180
|
+
searchMatches: Readonly<{
|
|
1181
|
+
focusedId: string | null;
|
|
1182
|
+
matches: readonly import("../types").SearchMatch[];
|
|
1183
|
+
}> | null;
|
|
1184
|
+
activeLockedId: string | null;
|
|
1221
1185
|
contextMenu: {
|
|
1222
1186
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
1223
1187
|
top: number;
|
|
@@ -1233,12 +1197,14 @@ export declare const actionLoadScene: {
|
|
|
1233
1197
|
activeTool: {
|
|
1234
1198
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1235
1199
|
locked: boolean;
|
|
1200
|
+
fromSelection: boolean;
|
|
1236
1201
|
} & import("../types").ActiveTool;
|
|
1237
1202
|
penMode: boolean;
|
|
1238
1203
|
penDetected: boolean;
|
|
1239
1204
|
exportBackground: boolean;
|
|
1240
1205
|
exportEmbedScene: boolean;
|
|
1241
1206
|
exportWithDarkMode: boolean;
|
|
1207
|
+
exportScale: number;
|
|
1242
1208
|
currentItemStrokeColor: string;
|
|
1243
1209
|
currentItemBackgroundColor: string;
|
|
1244
1210
|
currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
|
|
@@ -1251,12 +1217,13 @@ export declare const actionLoadScene: {
|
|
|
1251
1217
|
currentItemTextAlign: string;
|
|
1252
1218
|
currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
1253
1219
|
currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
1220
|
+
currentHoveredFontFamily: number | null;
|
|
1254
1221
|
currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
|
|
1255
1222
|
currentItemArrowType: "round" | "sharp" | "elbow";
|
|
1256
1223
|
cursorButton: "up" | "down";
|
|
1257
1224
|
scrolledOutside: boolean;
|
|
1258
1225
|
isResizing: boolean;
|
|
1259
|
-
openMenu: "
|
|
1226
|
+
openMenu: "canvas" | "shape" | null;
|
|
1260
1227
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1261
1228
|
openSidebar: {
|
|
1262
1229
|
name: string;
|
|
@@ -1264,14 +1231,22 @@ export declare const actionLoadScene: {
|
|
|
1264
1231
|
} | null;
|
|
1265
1232
|
defaultSidebarDockedPreference: boolean;
|
|
1266
1233
|
lastPointerDownWith: import("@excalidraw/element/types").PointerType;
|
|
1234
|
+
hoveredElementIds: Readonly<{
|
|
1235
|
+
[id: string]: true;
|
|
1236
|
+
}>;
|
|
1267
1237
|
previousSelectedElementIds: {
|
|
1268
1238
|
[id: string]: true;
|
|
1269
1239
|
};
|
|
1240
|
+
selectedElementsAreBeingDragged: boolean;
|
|
1241
|
+
shouldCacheIgnoreZoom: boolean;
|
|
1270
1242
|
toast: {
|
|
1271
1243
|
message: string;
|
|
1272
1244
|
closable?: boolean | undefined;
|
|
1273
1245
|
duration?: number | undefined;
|
|
1274
1246
|
} | null;
|
|
1247
|
+
gridSize: number;
|
|
1248
|
+
gridStep: number;
|
|
1249
|
+
gridModeEnabled: boolean;
|
|
1275
1250
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
1276
1251
|
stats: {
|
|
1277
1252
|
open: boolean;
|
|
@@ -1290,8 +1265,12 @@ export declare const actionLoadScene: {
|
|
|
1290
1265
|
x: number;
|
|
1291
1266
|
y: number;
|
|
1292
1267
|
} | null;
|
|
1268
|
+
objectsSnapModeEnabled: boolean;
|
|
1293
1269
|
userToFollow: import("../types").UserToFollow | null;
|
|
1294
1270
|
followedBy: Set<import("../types").SocketId>;
|
|
1271
|
+
lockedMultiSelections: {
|
|
1272
|
+
[groupId: string]: true;
|
|
1273
|
+
};
|
|
1295
1274
|
};
|
|
1296
1275
|
files: import("../types").BinaryFiles;
|
|
1297
1276
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -1308,7 +1287,7 @@ export declare const actionLoadScene: {
|
|
|
1308
1287
|
isLoading: boolean;
|
|
1309
1288
|
activeEmbeddable: {
|
|
1310
1289
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
1311
|
-
state: "
|
|
1290
|
+
state: "active" | "hover";
|
|
1312
1291
|
} | null;
|
|
1313
1292
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
1314
1293
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -1316,7 +1295,7 @@ export declare const actionLoadScene: {
|
|
|
1316
1295
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1317
1296
|
isBindingEnabled: boolean;
|
|
1318
1297
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
1319
|
-
suggestedBindings: import("@excalidraw/element
|
|
1298
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
1320
1299
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
1321
1300
|
frameRendering: {
|
|
1322
1301
|
enabled: boolean;
|
|
@@ -1327,10 +1306,10 @@ export declare const actionLoadScene: {
|
|
|
1327
1306
|
editingFrame: string | null;
|
|
1328
1307
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
1329
1308
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1330
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
1331
1309
|
activeTool: {
|
|
1332
1310
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1333
1311
|
locked: boolean;
|
|
1312
|
+
fromSelection: boolean;
|
|
1334
1313
|
} & import("../types").ActiveTool;
|
|
1335
1314
|
penMode: boolean;
|
|
1336
1315
|
penDetected: boolean;
|
|
@@ -1364,7 +1343,7 @@ export declare const actionLoadScene: {
|
|
|
1364
1343
|
zoom: Readonly<{
|
|
1365
1344
|
value: import("../types").NormalizedZoomValue;
|
|
1366
1345
|
}>;
|
|
1367
|
-
openMenu: "
|
|
1346
|
+
openMenu: "canvas" | "shape" | null;
|
|
1368
1347
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1369
1348
|
openSidebar: {
|
|
1370
1349
|
name: string;
|
|
@@ -1374,7 +1353,7 @@ export declare const actionLoadScene: {
|
|
|
1374
1353
|
name: "imageExport" | "help" | "jsonExport";
|
|
1375
1354
|
} | {
|
|
1376
1355
|
name: "ttd";
|
|
1377
|
-
tab: "text-to-diagram"
|
|
1356
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1378
1357
|
} | {
|
|
1379
1358
|
name: "commandPalette";
|
|
1380
1359
|
} | {
|
|
@@ -1446,9 +1425,8 @@ export declare const actionLoadScene: {
|
|
|
1446
1425
|
shown: true;
|
|
1447
1426
|
data: import("../charts").Spreadsheet;
|
|
1448
1427
|
};
|
|
1449
|
-
pendingImageElementId: string | null;
|
|
1450
1428
|
showHyperlinkPopup: false | "editor" | "info";
|
|
1451
|
-
selectedLinearElement: import("@excalidraw/element
|
|
1429
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1452
1430
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
1453
1431
|
originSnapOffset: {
|
|
1454
1432
|
x: number;
|
|
@@ -1459,16 +1437,14 @@ export declare const actionLoadScene: {
|
|
|
1459
1437
|
followedBy: Set<import("../types").SocketId>;
|
|
1460
1438
|
isCropping: boolean;
|
|
1461
1439
|
croppingElementId: string | null;
|
|
1462
|
-
searchMatches:
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
}[];
|
|
1471
|
-
}[];
|
|
1440
|
+
searchMatches: Readonly<{
|
|
1441
|
+
focusedId: string | null;
|
|
1442
|
+
matches: readonly import("../types").SearchMatch[];
|
|
1443
|
+
}> | null;
|
|
1444
|
+
activeLockedId: string | null;
|
|
1445
|
+
lockedMultiSelections: {
|
|
1446
|
+
[groupId: string]: true;
|
|
1447
|
+
};
|
|
1472
1448
|
};
|
|
1473
1449
|
files: import("../types").BinaryFiles;
|
|
1474
1450
|
captureUpdate: "EVENTUALLY";
|
|
@@ -1497,7 +1473,7 @@ export declare const actionExportWithDarkMode: {
|
|
|
1497
1473
|
errorMessage: import("react").ReactNode;
|
|
1498
1474
|
activeEmbeddable: {
|
|
1499
1475
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
1500
|
-
state: "
|
|
1476
|
+
state: "active" | "hover";
|
|
1501
1477
|
} | null;
|
|
1502
1478
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
1503
1479
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -1505,7 +1481,7 @@ export declare const actionExportWithDarkMode: {
|
|
|
1505
1481
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1506
1482
|
isBindingEnabled: boolean;
|
|
1507
1483
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
1508
|
-
suggestedBindings: import("@excalidraw/element
|
|
1484
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
1509
1485
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
1510
1486
|
frameRendering: {
|
|
1511
1487
|
enabled: boolean;
|
|
@@ -1516,10 +1492,10 @@ export declare const actionExportWithDarkMode: {
|
|
|
1516
1492
|
editingFrame: string | null;
|
|
1517
1493
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
1518
1494
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1519
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
1520
1495
|
activeTool: {
|
|
1521
1496
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1522
1497
|
locked: boolean;
|
|
1498
|
+
fromSelection: boolean;
|
|
1523
1499
|
} & import("../types").ActiveTool;
|
|
1524
1500
|
penMode: boolean;
|
|
1525
1501
|
penDetected: boolean;
|
|
@@ -1552,7 +1528,7 @@ export declare const actionExportWithDarkMode: {
|
|
|
1552
1528
|
zoom: Readonly<{
|
|
1553
1529
|
value: import("../types").NormalizedZoomValue;
|
|
1554
1530
|
}>;
|
|
1555
|
-
openMenu: "
|
|
1531
|
+
openMenu: "canvas" | "shape" | null;
|
|
1556
1532
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1557
1533
|
openSidebar: {
|
|
1558
1534
|
name: string;
|
|
@@ -1562,7 +1538,7 @@ export declare const actionExportWithDarkMode: {
|
|
|
1562
1538
|
name: "imageExport" | "help" | "jsonExport";
|
|
1563
1539
|
} | {
|
|
1564
1540
|
name: "ttd";
|
|
1565
|
-
tab: "text-to-diagram"
|
|
1541
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1566
1542
|
} | {
|
|
1567
1543
|
name: "commandPalette";
|
|
1568
1544
|
} | {
|
|
@@ -1634,9 +1610,8 @@ export declare const actionExportWithDarkMode: {
|
|
|
1634
1610
|
shown: true;
|
|
1635
1611
|
data: import("../charts").Spreadsheet;
|
|
1636
1612
|
};
|
|
1637
|
-
pendingImageElementId: string | null;
|
|
1638
1613
|
showHyperlinkPopup: false | "editor" | "info";
|
|
1639
|
-
selectedLinearElement: import("@excalidraw/element
|
|
1614
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1640
1615
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
1641
1616
|
originSnapOffset: {
|
|
1642
1617
|
x: number;
|
|
@@ -1647,16 +1622,14 @@ export declare const actionExportWithDarkMode: {
|
|
|
1647
1622
|
followedBy: Set<import("../types").SocketId>;
|
|
1648
1623
|
isCropping: boolean;
|
|
1649
1624
|
croppingElementId: string | null;
|
|
1650
|
-
searchMatches:
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
}[];
|
|
1659
|
-
}[];
|
|
1625
|
+
searchMatches: Readonly<{
|
|
1626
|
+
focusedId: string | null;
|
|
1627
|
+
matches: readonly import("../types").SearchMatch[];
|
|
1628
|
+
}> | null;
|
|
1629
|
+
activeLockedId: string | null;
|
|
1630
|
+
lockedMultiSelections: {
|
|
1631
|
+
[groupId: string]: true;
|
|
1632
|
+
};
|
|
1660
1633
|
};
|
|
1661
1634
|
captureUpdate: "EVENTUALLY";
|
|
1662
1635
|
};
|