@excalidraw/element 0.18.0-0fc927cb4 → 0.18.0-1acf66e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev/index.js +10079 -6277
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +20 -19
- package/dist/types/common/debug.d.ts +21 -0
- package/dist/types/common/src/appEventBus.d.ts +27 -0
- package/dist/types/common/src/bounds.d.ts +10 -0
- package/dist/types/common/src/colors.d.ts +59 -39
- package/dist/types/common/src/constants.d.ts +48 -33
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/font-metadata.d.ts +1 -3
- package/dist/types/common/src/index.d.ts +5 -0
- package/dist/types/common/src/keys.d.ts +1 -1
- package/dist/types/common/src/points.d.ts +1 -1
- package/dist/types/common/src/utility-types.d.ts +0 -1
- package/dist/types/common/src/utils.d.ts +47 -77
- package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
- package/dist/types/element/src/Scene.d.ts +11 -7
- package/dist/types/element/src/align.d.ts +2 -2
- package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
- package/dist/types/element/src/arrowheads.d.ts +3 -0
- package/dist/types/element/src/arrows/focus.d.ts +30 -0
- package/dist/types/element/src/arrows/helpers.d.ts +5 -0
- package/dist/types/element/src/binding.d.ts +79 -51
- package/dist/types/element/src/bounds.d.ts +26 -19
- package/dist/types/element/src/collision.d.ts +7 -2
- package/dist/types/element/src/comparisons.d.ts +8 -7
- package/dist/types/element/src/convertToShape.d.ts +23 -0
- package/dist/types/element/src/delta.d.ts +2 -2
- package/dist/types/element/src/distribute.d.ts +3 -2
- package/dist/types/element/src/dragElements.d.ts +30 -3
- package/dist/types/element/src/duplicate.d.ts +7 -6
- package/dist/types/element/src/elbowArrow.d.ts +2 -0
- package/dist/types/element/src/embeddable.d.ts +2 -2
- package/dist/types/element/src/flowchart.d.ts +7 -7
- package/dist/types/element/src/fractionalIndex.d.ts +4 -4
- package/dist/types/element/src/frame.d.ts +14 -9
- package/dist/types/element/src/groups.d.ts +9 -9
- package/dist/types/element/src/heading.d.ts +2 -1
- package/dist/types/element/src/image.d.ts +1 -11
- package/dist/types/element/src/index.d.ts +8 -4
- package/dist/types/element/src/linearElementEditor.d.ts +38 -30
- package/dist/types/element/src/mutateElement.d.ts +5 -1
- package/dist/types/element/src/newElement.d.ts +20 -6
- package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
- package/dist/types/element/src/renderElement.d.ts +4 -10
- package/dist/types/element/src/resizeElements.d.ts +12 -12
- package/dist/types/element/src/resizeTest.d.ts +6 -5
- package/dist/types/element/src/selection.d.ts +14 -14
- package/dist/types/element/src/shape.d.ts +9 -8
- package/dist/types/element/src/store.d.ts +3 -2
- package/dist/types/element/src/textElement.d.ts +14 -11
- package/dist/types/element/src/textMeasurements.d.ts +1 -3
- package/dist/types/element/src/textWrapping.d.ts +26 -0
- package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
- package/dist/types/element/src/transformHandles.d.ts +8 -27
- package/dist/types/element/src/typeChecks.d.ts +29 -31
- package/dist/types/element/src/types.d.ts +20 -14
- package/dist/types/element/src/utils.d.ts +9 -4
- package/dist/types/element/src/visualdebug.d.ts +58 -0
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +158 -180
- package/dist/types/excalidraw/actions/actionAlign.d.ts +12 -13
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +112 -127
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +412 -1550
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +114 -870
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +54 -62
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +180 -205
- package/dist/types/excalidraw/actions/actionDeselect.d.ts +162 -0
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -6
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +46 -60
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +111 -126
- package/dist/types/excalidraw/actions/actionExport.d.ts +190 -1410
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +267 -512
- package/dist/types/excalidraw/actions/actionGroup.d.ts +122 -145
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +168 -212
- package/dist/types/excalidraw/actions/actionLink.d.ts +53 -61
- package/dist/types/excalidraw/actions/actionMenu.d.ts +45 -425
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -359
- package/dist/types/excalidraw/actions/actionProperties.d.ts +191 -2527
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +61 -73
- package/dist/types/excalidraw/actions/actionStyles.d.ts +54 -61
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
- package/dist/types/excalidraw/actions/{actionEmbeddable.d.ts → actionToggleArrowBinding.d.ts} +69 -76
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +58 -67
- package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +178 -0
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +55 -63
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +46 -61
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +55 -63
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +56 -64
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +56 -64
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -3
- package/dist/types/excalidraw/actions/index.d.ts +5 -3
- package/dist/types/excalidraw/actions/manager.d.ts +1 -0
- package/dist/types/excalidraw/actions/register.d.ts +2 -2
- package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +11 -7
- package/dist/types/excalidraw/{animated-trail.d.ts → animatedTrail.d.ts} +4 -3
- package/dist/types/excalidraw/appState.d.ts +27 -18
- package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
- package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
- package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
- package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
- package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
- package/dist/types/excalidraw/charts/index.d.ts +7 -0
- package/dist/types/excalidraw/clipboard.d.ts +57 -19
- package/dist/types/excalidraw/components/Actions.d.ts +33 -11
- package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/App.arrowText.d.ts +72 -0
- package/dist/types/excalidraw/components/App.cursor.d.ts +31 -0
- package/dist/types/excalidraw/components/App.d.ts +447 -122
- package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
- package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
- package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
- package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
- package/dist/types/excalidraw/components/Card.d.ts +1 -3
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +2 -3
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -2
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +1 -2
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +4 -4
- package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
- package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
- package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -2
- package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
- package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
- package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
- package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
- package/dist/types/excalidraw/components/Island.d.ts +7 -0
- package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
- package/dist/types/excalidraw/components/LayerUI.d.ts +5 -2
- package/dist/types/excalidraw/components/LibraryMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
- package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
- package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
- package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
- package/dist/types/excalidraw/components/MobileMenu.d.ts +5 -7
- package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
- package/dist/types/excalidraw/components/Modal.d.ts +0 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
- package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
- package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
- package/dist/types/excalidraw/components/Popover.d.ts +2 -3
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
- package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
- package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
- package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
- package/dist/types/excalidraw/components/Range.d.ts +10 -4
- package/dist/types/excalidraw/components/SVGLayer.d.ts +1 -1
- package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
- package/dist/types/excalidraw/components/SearchMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +16 -22
- package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
- package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -3
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
- package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
- package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
- package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
- package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
- package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
- package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
- package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
- package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
- package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
- package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
- package/dist/types/excalidraw/components/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/Toast.d.ts +11 -7
- package/dist/types/excalidraw/components/ToolPopover.d.ts +22 -0
- package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
- package/dist/types/excalidraw/components/Tools.d.ts +145 -0
- package/dist/types/excalidraw/components/Trans.d.ts +2 -2
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +10 -4
- package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +1 -0
- package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
- package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
- package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
- package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +3 -3
- package/dist/types/excalidraw/components/icons.d.ts +52 -22
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +24 -3
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
- package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
- package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
- package/dist/types/excalidraw/data/blob.d.ts +339 -12
- package/dist/types/excalidraw/data/encode.d.ts +4 -4
- package/dist/types/excalidraw/data/encryption.d.ts +5 -5
- package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
- package/dist/types/excalidraw/data/index.d.ts +8 -9
- package/dist/types/excalidraw/data/json.d.ts +175 -3
- package/dist/types/excalidraw/data/library.d.ts +25 -10
- package/dist/types/excalidraw/data/resave.d.ts +7 -2
- package/dist/types/excalidraw/data/restore.d.ts +25 -10
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
- package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
- package/dist/types/excalidraw/eraser/index.d.ts +2 -3
- package/dist/types/excalidraw/errors.d.ts +14 -0
- package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
- package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +2 -2
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
- package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/i18n.d.ts +2 -2
- package/dist/types/excalidraw/{laser-trails.d.ts → laserTrails.d.ts} +5 -7
- package/dist/types/excalidraw/lasso/index.d.ts +2 -3
- package/dist/types/excalidraw/renderer/animation.d.ts +16 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +7 -15
- package/dist/types/excalidraw/scene/Renderer.d.ts +428 -18
- package/dist/types/excalidraw/scene/export.d.ts +4 -4
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/scene/types.d.ts +26 -8
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/snapping.d.ts +12 -12
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
- package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
- package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
- package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
- package/dist/types/excalidraw/types.d.ts +487 -50
- package/dist/types/excalidraw/viewport.d.ts +272 -0
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +8 -5
- package/dist/types/fractional-indexing/src/index.d.ts +29 -0
- package/dist/types/laser-pointer/src/index.d.ts +2 -0
- package/dist/types/laser-pointer/src/math.d.ts +16 -0
- package/dist/types/laser-pointer/src/simplify.d.ts +2 -0
- package/dist/types/laser-pointer/src/state.d.ts +36 -0
- package/dist/types/math/src/constants.d.ts +0 -1
- package/dist/types/math/src/curve.d.ts +4 -1
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/pca.d.ts +79 -0
- package/dist/types/math/src/point.d.ts +8 -2
- package/dist/types/math/src/polygon.d.ts +26 -2
- package/dist/types/math/src/range.d.ts +1 -3
- package/dist/types/math/src/segment.d.ts +4 -3
- package/dist/types/math/src/types.d.ts +25 -1
- package/dist/types/utils/src/export.d.ts +8 -8
- package/dist/types/utils/src/index.d.ts +1 -2
- package/dist/types/utils/src/shape.d.ts +6 -6
- package/package.json +10 -3
- package/dist/types/excalidraw/animation-frame-handler.d.ts +0 -16
- package/dist/types/excalidraw/charts.d.ts +0 -27
- package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
- package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
- package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
- package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
- package/dist/types/excalidraw/components/shapes.d.ts +0 -62
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
- package/dist/types/excalidraw/cursor.d.ts +0 -5
- package/dist/types/excalidraw/data/reconcile.d.ts +0 -7
- package/dist/types/excalidraw/index.d.ts +0 -47
- package/dist/types/excalidraw/polyfill.d.ts +0 -2
- package/dist/types/excalidraw/scene/scroll.d.ts +0 -23
- package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
- package/dist/types/utils/src/bbox.d.ts +0 -9
- package/dist/types/utils/src/withinBounds.d.ts +0 -19
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
|
|
3
2
|
export declare const actionToggleLinearEditor: {
|
|
4
3
|
name: "toggleLinearEditor";
|
|
5
4
|
category: string;
|
|
6
|
-
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").
|
|
5
|
+
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>, app: import("../types").AppClassProperties) => "labels.lineEditor.editArrow" | "labels.lineEditor.edit";
|
|
7
6
|
keywords: string[];
|
|
8
7
|
trackEvent: {
|
|
9
8
|
category: "element";
|
|
10
9
|
};
|
|
11
10
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
12
|
-
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _:
|
|
11
|
+
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): {
|
|
13
12
|
appState: {
|
|
14
13
|
selectedLinearElement: {
|
|
15
14
|
isEditing: boolean;
|
|
16
|
-
elementId:
|
|
15
|
+
elementId: import("@excalidraw/element/types").ExcalidrawElement["id"] & {
|
|
17
16
|
_brand: "excalidrawLinearElementId";
|
|
18
17
|
};
|
|
19
18
|
selectedPointsIndices: readonly number[] | null;
|
|
20
|
-
|
|
19
|
+
initialState: Readonly<{
|
|
21
20
|
prevSelectedPointsIndices: readonly number[] | null;
|
|
22
21
|
lastClickedPoint: number;
|
|
23
|
-
|
|
24
|
-
origin: Readonly<{
|
|
25
|
-
x: number;
|
|
26
|
-
y: number;
|
|
27
|
-
}> | null;
|
|
22
|
+
origin: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
28
23
|
segmentMidpoint: {
|
|
29
|
-
value: import("
|
|
24
|
+
value: import("@excalidraw/math").GlobalPoint | null;
|
|
30
25
|
index: number | null;
|
|
31
26
|
added: boolean;
|
|
32
27
|
};
|
|
28
|
+
arrowStartIsInside: boolean;
|
|
29
|
+
altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
30
|
+
arrowOtherEndpointInitialBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
33
31
|
}>;
|
|
34
32
|
isDragging: boolean;
|
|
35
|
-
lastUncommittedPoint: import("
|
|
33
|
+
lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
34
|
+
lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
36
35
|
pointerOffset: Readonly<{
|
|
37
36
|
x: number;
|
|
38
37
|
y: number;
|
|
39
38
|
}>;
|
|
40
|
-
startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
41
|
-
endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
42
39
|
hoverPointIndex: number;
|
|
43
|
-
segmentMidPointHoveredCoords: import("
|
|
40
|
+
segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
|
|
41
|
+
hoveredFocusPointBinding: "start" | "end" | null;
|
|
42
|
+
draggedFocusPointBinding: "start" | "end" | null;
|
|
44
43
|
elbowed: boolean;
|
|
45
44
|
customLineAngle: number | null;
|
|
45
|
+
pointerDownState: never;
|
|
46
46
|
};
|
|
47
47
|
contextMenu: {
|
|
48
48
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
@@ -51,18 +51,27 @@ export declare const actionToggleLinearEditor: {
|
|
|
51
51
|
} | null;
|
|
52
52
|
showWelcomeScreen: boolean;
|
|
53
53
|
isLoading: boolean;
|
|
54
|
-
errorMessage:
|
|
54
|
+
errorMessage: React.ReactNode;
|
|
55
55
|
activeEmbeddable: {
|
|
56
56
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
57
|
-
state: "
|
|
57
|
+
state: "hover" | "active";
|
|
58
58
|
} | null;
|
|
59
59
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
60
60
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
61
61
|
multiElement: import("@excalidraw/element/types").NonDeleted<ExcalidrawLinearElement> | null;
|
|
62
62
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
63
63
|
isBindingEnabled: boolean;
|
|
64
|
-
|
|
65
|
-
|
|
64
|
+
boxSelectionMode: import("../types").BoxSelectionMode;
|
|
65
|
+
bindingPreference: "enabled" | "disabled";
|
|
66
|
+
isMidpointSnappingEnabled: boolean;
|
|
67
|
+
suggestedBinding: {
|
|
68
|
+
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
69
|
+
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
70
|
+
} | null;
|
|
71
|
+
hoveredArrowTextAnchor: {
|
|
72
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
73
|
+
anchor: "start" | "end" | "label";
|
|
74
|
+
} | null;
|
|
66
75
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
67
76
|
frameRendering: {
|
|
68
77
|
enabled: boolean;
|
|
@@ -70,14 +79,18 @@ export declare const actionToggleLinearEditor: {
|
|
|
70
79
|
outline: boolean;
|
|
71
80
|
clip: boolean;
|
|
72
81
|
};
|
|
73
|
-
editingFrame:
|
|
74
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
75
|
-
editingTextElement: import("@excalidraw/element/types").
|
|
82
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
83
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
84
|
+
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
76
85
|
activeTool: {
|
|
77
86
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
78
87
|
locked: boolean;
|
|
79
88
|
fromSelection: boolean;
|
|
80
89
|
} & import("../types").ActiveTool;
|
|
90
|
+
preferredSelectionTool: {
|
|
91
|
+
type: "selection" | "lasso";
|
|
92
|
+
initialized: boolean;
|
|
93
|
+
};
|
|
81
94
|
penMode: boolean;
|
|
82
95
|
penDetected: boolean;
|
|
83
96
|
exportBackground: boolean;
|
|
@@ -86,47 +99,53 @@ export declare const actionToggleLinearEditor: {
|
|
|
86
99
|
exportScale: number;
|
|
87
100
|
currentItemStrokeColor: string;
|
|
88
101
|
currentItemBackgroundColor: string;
|
|
89
|
-
currentItemFillStyle: import("@excalidraw/element/types").
|
|
90
|
-
|
|
91
|
-
currentItemStrokeStyle: import("@excalidraw/element/types").
|
|
102
|
+
currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
|
|
103
|
+
currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
|
|
104
|
+
currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
|
|
92
105
|
currentItemRoughness: number;
|
|
106
|
+
currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
|
|
93
107
|
currentItemOpacity: number;
|
|
94
|
-
currentItemFontFamily:
|
|
108
|
+
currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
95
109
|
currentItemFontSize: number;
|
|
96
|
-
currentItemTextAlign:
|
|
110
|
+
currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
|
|
97
111
|
currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
98
112
|
currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
99
|
-
currentHoveredFontFamily:
|
|
113
|
+
currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
|
|
100
114
|
currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
|
|
101
|
-
currentItemArrowType: "
|
|
115
|
+
currentItemArrowType: "sharp" | "round" | "elbow";
|
|
102
116
|
viewBackgroundColor: string;
|
|
103
117
|
scrollX: number;
|
|
104
118
|
scrollY: number;
|
|
119
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
105
120
|
cursorButton: "up" | "down";
|
|
106
121
|
scrolledOutside: boolean;
|
|
107
122
|
name: string | null;
|
|
108
123
|
isResizing: boolean;
|
|
109
124
|
isRotating: boolean;
|
|
110
|
-
zoom:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
openMenu: "canvas" | "shape" | null;
|
|
114
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
125
|
+
zoom: import("../types").Zoom;
|
|
126
|
+
openMenu: "canvas" | null;
|
|
127
|
+
openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
115
128
|
openSidebar: {
|
|
116
|
-
name:
|
|
117
|
-
tab?:
|
|
129
|
+
name: import("../types").SidebarName;
|
|
130
|
+
tab?: import("../types").SidebarTabName;
|
|
118
131
|
} | null;
|
|
119
|
-
openDialog: {
|
|
132
|
+
openDialog: null | {
|
|
120
133
|
name: "imageExport" | "help" | "jsonExport";
|
|
121
134
|
} | {
|
|
122
135
|
name: "ttd";
|
|
123
|
-
tab: "
|
|
136
|
+
tab: "text-to-diagram" | "mermaid";
|
|
124
137
|
} | {
|
|
125
138
|
name: "commandPalette";
|
|
139
|
+
} | {
|
|
140
|
+
name: "settings";
|
|
126
141
|
} | {
|
|
127
142
|
name: "elementLinkSelector";
|
|
128
|
-
sourceElementId:
|
|
129
|
-
} |
|
|
143
|
+
sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
|
|
144
|
+
} | {
|
|
145
|
+
name: "charts";
|
|
146
|
+
data: import("../charts").Spreadsheet;
|
|
147
|
+
rawText: string;
|
|
148
|
+
};
|
|
130
149
|
defaultSidebarDockedPreference: boolean;
|
|
131
150
|
lastPointerDownWith: import("@excalidraw/element/types").PointerType;
|
|
132
151
|
selectedElementIds: Readonly<{
|
|
@@ -141,9 +160,9 @@ export declare const actionToggleLinearEditor: {
|
|
|
141
160
|
selectedElementsAreBeingDragged: boolean;
|
|
142
161
|
shouldCacheIgnoreZoom: boolean;
|
|
143
162
|
toast: {
|
|
144
|
-
message:
|
|
145
|
-
closable?: boolean
|
|
146
|
-
duration?: number
|
|
163
|
+
message: React.ReactNode;
|
|
164
|
+
closable?: boolean;
|
|
165
|
+
duration?: number;
|
|
147
166
|
} | null;
|
|
148
167
|
zenModeEnabled: boolean;
|
|
149
168
|
theme: import("@excalidraw/element/types").Theme;
|
|
@@ -154,45 +173,18 @@ export declare const actionToggleLinearEditor: {
|
|
|
154
173
|
selectedGroupIds: {
|
|
155
174
|
[groupId: string]: boolean;
|
|
156
175
|
};
|
|
157
|
-
editingGroupId:
|
|
176
|
+
editingGroupId: import("@excalidraw/element/types").GroupId | null;
|
|
158
177
|
width: number;
|
|
159
178
|
height: number;
|
|
160
179
|
offsetTop: number;
|
|
161
180
|
offsetLeft: number;
|
|
162
|
-
fileHandle:
|
|
163
|
-
collaborators: Map<import("../types").SocketId,
|
|
164
|
-
pointer?: import("../types").CollaboratorPointer | undefined;
|
|
165
|
-
button?: "up" | "down" | undefined;
|
|
166
|
-
selectedElementIds?: Readonly<{
|
|
167
|
-
[id: string]: true;
|
|
168
|
-
}> | undefined;
|
|
169
|
-
username?: string | null | undefined;
|
|
170
|
-
userState?: import("@excalidraw/common").UserIdleState | undefined;
|
|
171
|
-
color?: {
|
|
172
|
-
background: string;
|
|
173
|
-
stroke: string;
|
|
174
|
-
} | undefined;
|
|
175
|
-
avatarUrl?: string | undefined;
|
|
176
|
-
id?: string | undefined;
|
|
177
|
-
socketId?: import("../types").SocketId | undefined;
|
|
178
|
-
isCurrentUser?: boolean | undefined;
|
|
179
|
-
isInCall?: boolean | undefined;
|
|
180
|
-
isSpeaking?: boolean | undefined;
|
|
181
|
-
isMuted?: boolean | undefined;
|
|
182
|
-
}>>;
|
|
181
|
+
fileHandle: FileSystemFileHandle | null;
|
|
182
|
+
collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
|
|
183
183
|
stats: {
|
|
184
184
|
open: boolean;
|
|
185
185
|
panels: number;
|
|
186
186
|
};
|
|
187
|
-
|
|
188
|
-
pasteDialog: {
|
|
189
|
-
shown: false;
|
|
190
|
-
data: null;
|
|
191
|
-
} | {
|
|
192
|
-
shown: true;
|
|
193
|
-
data: import("../charts").Spreadsheet;
|
|
194
|
-
};
|
|
195
|
-
showHyperlinkPopup: false | "editor" | "info";
|
|
187
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
196
188
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
197
189
|
originSnapOffset: {
|
|
198
190
|
x: number;
|
|
@@ -202,19 +194,20 @@ export declare const actionToggleLinearEditor: {
|
|
|
202
194
|
userToFollow: import("../types").UserToFollow | null;
|
|
203
195
|
followedBy: Set<import("../types").SocketId>;
|
|
204
196
|
isCropping: boolean;
|
|
205
|
-
croppingElementId:
|
|
197
|
+
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
206
198
|
searchMatches: Readonly<{
|
|
207
|
-
focusedId:
|
|
199
|
+
focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
208
200
|
matches: readonly import("../types").SearchMatch[];
|
|
209
201
|
}> | null;
|
|
210
202
|
activeLockedId: string | null;
|
|
211
203
|
lockedMultiSelections: {
|
|
212
204
|
[groupId: string]: true;
|
|
213
205
|
};
|
|
206
|
+
bindMode: import("@excalidraw/element/types").BindMode;
|
|
214
207
|
};
|
|
215
208
|
captureUpdate: "IMMEDIATELY";
|
|
216
209
|
};
|
|
217
|
-
PanelComponent: ({ appState, updateData, app }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
210
|
+
PanelComponent: ({ appState, updateData, app }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
218
211
|
} & {
|
|
219
212
|
keyTest?: undefined;
|
|
220
213
|
};
|
|
@@ -223,12 +216,12 @@ export declare const actionTogglePolygon: {
|
|
|
223
216
|
category: string;
|
|
224
217
|
icon: import("react/jsx-runtime").JSX.Element;
|
|
225
218
|
keywords: string[];
|
|
226
|
-
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").
|
|
219
|
+
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>, app: import("../types").AppClassProperties) => "labels.polygon.breakPolygon" | "labels.polygon.convertToPolygon";
|
|
227
220
|
trackEvent: {
|
|
228
221
|
category: "element";
|
|
229
222
|
};
|
|
230
223
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
231
|
-
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _:
|
|
224
|
+
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): false | {
|
|
232
225
|
elements: ((Readonly<{
|
|
233
226
|
id: string;
|
|
234
227
|
x: number;
|
|
@@ -238,36 +231,32 @@ export declare const actionTogglePolygon: {
|
|
|
238
231
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
239
232
|
strokeWidth: number;
|
|
240
233
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
241
|
-
roundness: {
|
|
234
|
+
roundness: null | {
|
|
242
235
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
243
|
-
value?: number
|
|
244
|
-
}
|
|
236
|
+
value?: number;
|
|
237
|
+
};
|
|
245
238
|
roughness: number;
|
|
246
239
|
opacity: number;
|
|
247
240
|
width: number;
|
|
248
241
|
height: number;
|
|
249
|
-
angle: import("
|
|
242
|
+
angle: import("@excalidraw/math").Radians;
|
|
250
243
|
seed: number;
|
|
251
244
|
version: number;
|
|
252
245
|
versionNonce: number;
|
|
253
246
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
254
247
|
isDeleted: boolean;
|
|
255
|
-
groupIds: readonly
|
|
248
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
256
249
|
frameId: string | null;
|
|
257
|
-
boundElements: readonly
|
|
258
|
-
id: string;
|
|
259
|
-
type: "arrow" | "text";
|
|
260
|
-
}>[] | null;
|
|
250
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
261
251
|
updated: number;
|
|
262
252
|
link: string | null;
|
|
263
253
|
locked: boolean;
|
|
264
|
-
customData?: Record<string, any
|
|
254
|
+
customData?: Record<string, any>;
|
|
265
255
|
}> & Readonly<{
|
|
266
256
|
type: "line" | "arrow";
|
|
267
|
-
points: readonly import("
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
endBinding: import("@excalidraw/element/types").PointBinding | null;
|
|
257
|
+
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
258
|
+
startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
259
|
+
endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
271
260
|
startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
272
261
|
endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
273
262
|
}> & {
|
|
@@ -281,30 +270,27 @@ export declare const actionTogglePolygon: {
|
|
|
281
270
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
282
271
|
strokeWidth: number;
|
|
283
272
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
284
|
-
roundness: {
|
|
273
|
+
roundness: null | {
|
|
285
274
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
286
|
-
value?: number
|
|
287
|
-
}
|
|
275
|
+
value?: number;
|
|
276
|
+
};
|
|
288
277
|
roughness: number;
|
|
289
278
|
opacity: number;
|
|
290
279
|
width: number;
|
|
291
280
|
height: number;
|
|
292
|
-
angle: import("
|
|
281
|
+
angle: import("@excalidraw/math").Radians;
|
|
293
282
|
seed: number;
|
|
294
283
|
version: number;
|
|
295
284
|
versionNonce: number;
|
|
296
285
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
297
286
|
isDeleted: boolean;
|
|
298
|
-
groupIds: readonly
|
|
287
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
299
288
|
frameId: string | null;
|
|
300
|
-
boundElements: readonly
|
|
301
|
-
id: string;
|
|
302
|
-
type: "arrow" | "text";
|
|
303
|
-
}>[] | null;
|
|
289
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
304
290
|
updated: number;
|
|
305
291
|
link: string | null;
|
|
306
292
|
locked: boolean;
|
|
307
|
-
customData?: Record<string, any
|
|
293
|
+
customData?: Record<string, any>;
|
|
308
294
|
}> & {
|
|
309
295
|
type: "selection";
|
|
310
296
|
} & {
|
|
@@ -318,30 +304,27 @@ export declare const actionTogglePolygon: {
|
|
|
318
304
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
319
305
|
strokeWidth: number;
|
|
320
306
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
321
|
-
roundness: {
|
|
307
|
+
roundness: null | {
|
|
322
308
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
323
|
-
value?: number
|
|
324
|
-
}
|
|
309
|
+
value?: number;
|
|
310
|
+
};
|
|
325
311
|
roughness: number;
|
|
326
312
|
opacity: number;
|
|
327
313
|
width: number;
|
|
328
314
|
height: number;
|
|
329
|
-
angle: import("
|
|
315
|
+
angle: import("@excalidraw/math").Radians;
|
|
330
316
|
seed: number;
|
|
331
317
|
version: number;
|
|
332
318
|
versionNonce: number;
|
|
333
319
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
334
320
|
isDeleted: boolean;
|
|
335
|
-
groupIds: readonly
|
|
321
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
336
322
|
frameId: string | null;
|
|
337
|
-
boundElements: readonly
|
|
338
|
-
id: string;
|
|
339
|
-
type: "arrow" | "text";
|
|
340
|
-
}>[] | null;
|
|
323
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
341
324
|
updated: number;
|
|
342
325
|
link: string | null;
|
|
343
326
|
locked: boolean;
|
|
344
|
-
customData?: Record<string, any
|
|
327
|
+
customData?: Record<string, any>;
|
|
345
328
|
}> & {
|
|
346
329
|
type: "rectangle";
|
|
347
330
|
} & {
|
|
@@ -355,30 +338,27 @@ export declare const actionTogglePolygon: {
|
|
|
355
338
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
356
339
|
strokeWidth: number;
|
|
357
340
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
358
|
-
roundness: {
|
|
341
|
+
roundness: null | {
|
|
359
342
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
360
|
-
value?: number
|
|
361
|
-
}
|
|
343
|
+
value?: number;
|
|
344
|
+
};
|
|
362
345
|
roughness: number;
|
|
363
346
|
opacity: number;
|
|
364
347
|
width: number;
|
|
365
348
|
height: number;
|
|
366
|
-
angle: import("
|
|
349
|
+
angle: import("@excalidraw/math").Radians;
|
|
367
350
|
seed: number;
|
|
368
351
|
version: number;
|
|
369
352
|
versionNonce: number;
|
|
370
353
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
371
354
|
isDeleted: boolean;
|
|
372
|
-
groupIds: readonly
|
|
355
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
373
356
|
frameId: string | null;
|
|
374
|
-
boundElements: readonly
|
|
375
|
-
id: string;
|
|
376
|
-
type: "arrow" | "text";
|
|
377
|
-
}>[] | null;
|
|
357
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
378
358
|
updated: number;
|
|
379
359
|
link: string | null;
|
|
380
360
|
locked: boolean;
|
|
381
|
-
customData?: Record<string, any
|
|
361
|
+
customData?: Record<string, any>;
|
|
382
362
|
}> & {
|
|
383
363
|
type: "diamond";
|
|
384
364
|
} & {
|
|
@@ -392,30 +372,27 @@ export declare const actionTogglePolygon: {
|
|
|
392
372
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
393
373
|
strokeWidth: number;
|
|
394
374
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
395
|
-
roundness: {
|
|
375
|
+
roundness: null | {
|
|
396
376
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
397
|
-
value?: number
|
|
398
|
-
}
|
|
377
|
+
value?: number;
|
|
378
|
+
};
|
|
399
379
|
roughness: number;
|
|
400
380
|
opacity: number;
|
|
401
381
|
width: number;
|
|
402
382
|
height: number;
|
|
403
|
-
angle: import("
|
|
383
|
+
angle: import("@excalidraw/math").Radians;
|
|
404
384
|
seed: number;
|
|
405
385
|
version: number;
|
|
406
386
|
versionNonce: number;
|
|
407
387
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
408
388
|
isDeleted: boolean;
|
|
409
|
-
groupIds: readonly
|
|
389
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
410
390
|
frameId: string | null;
|
|
411
|
-
boundElements: readonly
|
|
412
|
-
id: string;
|
|
413
|
-
type: "arrow" | "text";
|
|
414
|
-
}>[] | null;
|
|
391
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
415
392
|
updated: number;
|
|
416
393
|
link: string | null;
|
|
417
394
|
locked: boolean;
|
|
418
|
-
customData?: Record<string, any
|
|
395
|
+
customData?: Record<string, any>;
|
|
419
396
|
}> & {
|
|
420
397
|
type: "ellipse";
|
|
421
398
|
} & {
|
|
@@ -429,30 +406,27 @@ export declare const actionTogglePolygon: {
|
|
|
429
406
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
430
407
|
strokeWidth: number;
|
|
431
408
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
432
|
-
roundness: {
|
|
409
|
+
roundness: null | {
|
|
433
410
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
434
|
-
value?: number
|
|
435
|
-
}
|
|
411
|
+
value?: number;
|
|
412
|
+
};
|
|
436
413
|
roughness: number;
|
|
437
414
|
opacity: number;
|
|
438
415
|
width: number;
|
|
439
416
|
height: number;
|
|
440
|
-
angle: import("
|
|
417
|
+
angle: import("@excalidraw/math").Radians;
|
|
441
418
|
seed: number;
|
|
442
419
|
version: number;
|
|
443
420
|
versionNonce: number;
|
|
444
421
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
445
422
|
isDeleted: boolean;
|
|
446
|
-
groupIds: readonly
|
|
423
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
447
424
|
frameId: string | null;
|
|
448
|
-
boundElements: readonly
|
|
449
|
-
id: string;
|
|
450
|
-
type: "arrow" | "text";
|
|
451
|
-
}>[] | null;
|
|
425
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
452
426
|
updated: number;
|
|
453
427
|
link: string | null;
|
|
454
428
|
locked: boolean;
|
|
455
|
-
customData?: Record<string, any
|
|
429
|
+
customData?: Record<string, any>;
|
|
456
430
|
}> & Readonly<{
|
|
457
431
|
type: "embeddable";
|
|
458
432
|
}> & {
|
|
@@ -466,35 +440,32 @@ export declare const actionTogglePolygon: {
|
|
|
466
440
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
467
441
|
strokeWidth: number;
|
|
468
442
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
469
|
-
roundness: {
|
|
443
|
+
roundness: null | {
|
|
470
444
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
471
|
-
value?: number
|
|
472
|
-
}
|
|
445
|
+
value?: number;
|
|
446
|
+
};
|
|
473
447
|
roughness: number;
|
|
474
448
|
opacity: number;
|
|
475
449
|
width: number;
|
|
476
450
|
height: number;
|
|
477
|
-
angle: import("
|
|
451
|
+
angle: import("@excalidraw/math").Radians;
|
|
478
452
|
seed: number;
|
|
479
453
|
version: number;
|
|
480
454
|
versionNonce: number;
|
|
481
455
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
482
456
|
isDeleted: boolean;
|
|
483
|
-
groupIds: readonly
|
|
457
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
484
458
|
frameId: string | null;
|
|
485
|
-
boundElements: readonly
|
|
486
|
-
id: string;
|
|
487
|
-
type: "arrow" | "text";
|
|
488
|
-
}>[] | null;
|
|
459
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
489
460
|
updated: number;
|
|
490
461
|
link: string | null;
|
|
491
462
|
locked: boolean;
|
|
492
|
-
customData?: Record<string, any
|
|
463
|
+
customData?: Record<string, any>;
|
|
493
464
|
}> & Readonly<{
|
|
494
465
|
type: "iframe";
|
|
495
466
|
customData?: {
|
|
496
|
-
generationData?: import("@excalidraw/element/types").MagicGenerationData
|
|
497
|
-
}
|
|
467
|
+
generationData?: import("@excalidraw/element/types").MagicGenerationData;
|
|
468
|
+
};
|
|
498
469
|
}> & {
|
|
499
470
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
500
471
|
}) | (Readonly<{
|
|
@@ -506,34 +477,31 @@ export declare const actionTogglePolygon: {
|
|
|
506
477
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
507
478
|
strokeWidth: number;
|
|
508
479
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
509
|
-
roundness: {
|
|
480
|
+
roundness: null | {
|
|
510
481
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
511
|
-
value?: number
|
|
512
|
-
}
|
|
482
|
+
value?: number;
|
|
483
|
+
};
|
|
513
484
|
roughness: number;
|
|
514
485
|
opacity: number;
|
|
515
486
|
width: number;
|
|
516
487
|
height: number;
|
|
517
|
-
angle: import("
|
|
488
|
+
angle: import("@excalidraw/math").Radians;
|
|
518
489
|
seed: number;
|
|
519
490
|
version: number;
|
|
520
491
|
versionNonce: number;
|
|
521
492
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
522
493
|
isDeleted: boolean;
|
|
523
|
-
groupIds: readonly
|
|
494
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
524
495
|
frameId: string | null;
|
|
525
|
-
boundElements: readonly
|
|
526
|
-
id: string;
|
|
527
|
-
type: "arrow" | "text";
|
|
528
|
-
}>[] | null;
|
|
496
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
529
497
|
updated: number;
|
|
530
498
|
link: string | null;
|
|
531
499
|
locked: boolean;
|
|
532
|
-
customData?: Record<string, any
|
|
500
|
+
customData?: Record<string, any>;
|
|
533
501
|
}> & Readonly<{
|
|
534
502
|
type: "image";
|
|
535
503
|
fileId: import("@excalidraw/element/types").FileId | null;
|
|
536
|
-
status: "pending" | "
|
|
504
|
+
status: "pending" | "saved" | "error";
|
|
537
505
|
scale: [number, number];
|
|
538
506
|
crop: import("@excalidraw/element/types").ImageCrop | null;
|
|
539
507
|
}> & {
|
|
@@ -547,30 +515,27 @@ export declare const actionTogglePolygon: {
|
|
|
547
515
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
548
516
|
strokeWidth: number;
|
|
549
517
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
550
|
-
roundness: {
|
|
518
|
+
roundness: null | {
|
|
551
519
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
552
|
-
value?: number
|
|
553
|
-
}
|
|
520
|
+
value?: number;
|
|
521
|
+
};
|
|
554
522
|
roughness: number;
|
|
555
523
|
opacity: number;
|
|
556
524
|
width: number;
|
|
557
525
|
height: number;
|
|
558
|
-
angle: import("
|
|
526
|
+
angle: import("@excalidraw/math").Radians;
|
|
559
527
|
seed: number;
|
|
560
528
|
version: number;
|
|
561
529
|
versionNonce: number;
|
|
562
530
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
563
531
|
isDeleted: boolean;
|
|
564
|
-
groupIds: readonly
|
|
532
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
565
533
|
frameId: string | null;
|
|
566
|
-
boundElements: readonly
|
|
567
|
-
id: string;
|
|
568
|
-
type: "arrow" | "text";
|
|
569
|
-
}>[] | null;
|
|
534
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
570
535
|
updated: number;
|
|
571
536
|
link: string | null;
|
|
572
537
|
locked: boolean;
|
|
573
|
-
customData?: Record<string, any
|
|
538
|
+
customData?: Record<string, any>;
|
|
574
539
|
}> & {
|
|
575
540
|
type: "frame";
|
|
576
541
|
name: string | null;
|
|
@@ -585,30 +550,27 @@ export declare const actionTogglePolygon: {
|
|
|
585
550
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
586
551
|
strokeWidth: number;
|
|
587
552
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
588
|
-
roundness: {
|
|
553
|
+
roundness: null | {
|
|
589
554
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
590
|
-
value?: number
|
|
591
|
-
}
|
|
555
|
+
value?: number;
|
|
556
|
+
};
|
|
592
557
|
roughness: number;
|
|
593
558
|
opacity: number;
|
|
594
559
|
width: number;
|
|
595
560
|
height: number;
|
|
596
|
-
angle: import("
|
|
561
|
+
angle: import("@excalidraw/math").Radians;
|
|
597
562
|
seed: number;
|
|
598
563
|
version: number;
|
|
599
564
|
versionNonce: number;
|
|
600
565
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
601
566
|
isDeleted: boolean;
|
|
602
|
-
groupIds: readonly
|
|
567
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
603
568
|
frameId: string | null;
|
|
604
|
-
boundElements: readonly
|
|
605
|
-
id: string;
|
|
606
|
-
type: "arrow" | "text";
|
|
607
|
-
}>[] | null;
|
|
569
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
608
570
|
updated: number;
|
|
609
571
|
link: string | null;
|
|
610
572
|
locked: boolean;
|
|
611
|
-
customData?: Record<string, any
|
|
573
|
+
customData?: Record<string, any>;
|
|
612
574
|
}> & {
|
|
613
575
|
type: "magicframe";
|
|
614
576
|
name: string | null;
|
|
@@ -623,38 +585,35 @@ export declare const actionTogglePolygon: {
|
|
|
623
585
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
624
586
|
strokeWidth: number;
|
|
625
587
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
626
|
-
roundness: {
|
|
588
|
+
roundness: null | {
|
|
627
589
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
628
|
-
value?: number
|
|
629
|
-
}
|
|
590
|
+
value?: number;
|
|
591
|
+
};
|
|
630
592
|
roughness: number;
|
|
631
593
|
opacity: number;
|
|
632
594
|
width: number;
|
|
633
595
|
height: number;
|
|
634
|
-
angle: import("
|
|
596
|
+
angle: import("@excalidraw/math").Radians;
|
|
635
597
|
seed: number;
|
|
636
598
|
version: number;
|
|
637
599
|
versionNonce: number;
|
|
638
600
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
639
601
|
isDeleted: boolean;
|
|
640
|
-
groupIds: readonly
|
|
602
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
641
603
|
frameId: string | null;
|
|
642
|
-
boundElements: readonly
|
|
643
|
-
id: string;
|
|
644
|
-
type: "arrow" | "text";
|
|
645
|
-
}>[] | null;
|
|
604
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
646
605
|
updated: number;
|
|
647
606
|
link: string | null;
|
|
648
607
|
locked: boolean;
|
|
649
|
-
customData?: Record<string, any
|
|
608
|
+
customData?: Record<string, any>;
|
|
650
609
|
}> & Readonly<{
|
|
651
610
|
type: "text";
|
|
652
611
|
fontSize: number;
|
|
653
|
-
fontFamily:
|
|
612
|
+
fontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
654
613
|
text: string;
|
|
655
|
-
textAlign:
|
|
656
|
-
verticalAlign:
|
|
657
|
-
containerId:
|
|
614
|
+
textAlign: import("@excalidraw/element/types").TextAlign;
|
|
615
|
+
verticalAlign: import("@excalidraw/element/types").VerticalAlign;
|
|
616
|
+
containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
|
|
658
617
|
originalText: string;
|
|
659
618
|
autoResize: boolean;
|
|
660
619
|
lineHeight: number & {
|
|
@@ -671,36 +630,33 @@ export declare const actionTogglePolygon: {
|
|
|
671
630
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
672
631
|
strokeWidth: number;
|
|
673
632
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
674
|
-
roundness: {
|
|
633
|
+
roundness: null | {
|
|
675
634
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
676
|
-
value?: number
|
|
677
|
-
}
|
|
635
|
+
value?: number;
|
|
636
|
+
};
|
|
678
637
|
roughness: number;
|
|
679
638
|
opacity: number;
|
|
680
639
|
width: number;
|
|
681
640
|
height: number;
|
|
682
|
-
angle: import("
|
|
641
|
+
angle: import("@excalidraw/math").Radians;
|
|
683
642
|
seed: number;
|
|
684
643
|
version: number;
|
|
685
644
|
versionNonce: number;
|
|
686
645
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
687
646
|
isDeleted: boolean;
|
|
688
|
-
groupIds: readonly
|
|
647
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
689
648
|
frameId: string | null;
|
|
690
|
-
boundElements: readonly
|
|
691
|
-
id: string;
|
|
692
|
-
type: "arrow" | "text";
|
|
693
|
-
}>[] | null;
|
|
649
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
694
650
|
updated: number;
|
|
695
651
|
link: string | null;
|
|
696
652
|
locked: boolean;
|
|
697
|
-
customData?: Record<string, any
|
|
653
|
+
customData?: Record<string, any>;
|
|
698
654
|
}> & Readonly<{
|
|
699
655
|
type: "freedraw";
|
|
700
|
-
points: readonly import("
|
|
656
|
+
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
701
657
|
pressures: readonly number[];
|
|
702
658
|
simulatePressure: boolean;
|
|
703
|
-
|
|
659
|
+
strokeOptions: import("@excalidraw/element/types").StrokeOptions;
|
|
704
660
|
}> & {
|
|
705
661
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
706
662
|
}))[];
|