@excalidraw/excalidraw 0.17.1-7441-0269e5a → 0.17.1-7441-4c9a6f4
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/browser/excalidraw-assets/{chunk-V52YQ6TH.js → chunk-LZCCI7PN.js} +1181 -1675
- package/dist/browser/excalidraw-assets/{image-MZHH7VY4.js → image-CG4AV2NT.js} +1 -1
- package/dist/browser/excalidraw-assets/{image-2MHILQWB.css → image-EO7USLQY.css} +1 -1
- package/dist/browser/index.css +1 -1
- package/dist/browser/index.js +1 -1
- package/dist/packages/excalidraw/actions/actionAddToLibrary.js +59 -0
- package/dist/packages/excalidraw/actions/actionAlign.js +124 -0
- package/dist/packages/excalidraw/actions/actionBoundText.js +213 -0
- package/dist/packages/excalidraw/actions/actionCanvas.js +354 -0
- package/dist/packages/excalidraw/actions/actionClipboard.js +221 -0
- package/dist/packages/excalidraw/actions/actionDeleteSelected.js +129 -0
- package/dist/packages/excalidraw/actions/actionDistribute.js +56 -0
- package/dist/packages/excalidraw/actions/actionDuplicateSelection.js +181 -0
- package/dist/packages/excalidraw/actions/actionElementLock.js +89 -0
- package/dist/packages/excalidraw/actions/actionExport.js +195 -0
- package/dist/packages/excalidraw/actions/actionFinalize.js +150 -0
- package/dist/packages/excalidraw/actions/actionFlip.js +52 -0
- package/dist/packages/excalidraw/actions/actionFrame.js +113 -0
- package/dist/packages/excalidraw/actions/actionGroup.js +162 -0
- package/dist/packages/excalidraw/actions/actionHistory.js +57 -0
- package/dist/packages/excalidraw/actions/actionLinearEditor.js +41 -0
- package/dist/packages/excalidraw/actions/actionMenu.js +53 -0
- package/dist/packages/excalidraw/actions/actionNavigate.js +43 -0
- package/dist/packages/excalidraw/actions/actionProperties.js +683 -0
- package/dist/packages/excalidraw/actions/actionSelectAll.js +40 -0
- package/dist/packages/excalidraw/actions/actionStyles.js +118 -0
- package/dist/packages/excalidraw/actions/actionToggleGridMode.js +27 -0
- package/dist/packages/excalidraw/actions/actionToggleObjectsSnapMode.js +26 -0
- package/dist/packages/excalidraw/actions/actionToggleStats.js +19 -0
- package/dist/packages/excalidraw/actions/actionToggleViewMode.js +25 -0
- package/dist/packages/excalidraw/actions/actionToggleZenMode.js +25 -0
- package/dist/packages/excalidraw/actions/actionZindex.js +86 -0
- package/dist/packages/excalidraw/actions/index.js +25 -0
- package/dist/packages/excalidraw/actions/manager.js +110 -0
- package/dist/packages/excalidraw/actions/register.js +5 -0
- package/dist/packages/excalidraw/actions/shortcuts.js +52 -0
- package/dist/packages/excalidraw/align.js +36 -0
- package/dist/packages/excalidraw/analytics.js +30 -0
- package/dist/packages/excalidraw/appState.js +222 -0
- package/dist/packages/excalidraw/charts.js +365 -0
- package/dist/packages/excalidraw/clients.js +34 -0
- package/dist/packages/excalidraw/clipboard.js +351 -0
- package/dist/packages/excalidraw/colors.js +124 -0
- package/dist/packages/excalidraw/components/Actions.js +127 -0
- package/dist/packages/excalidraw/components/Actions.scss +92 -0
- package/dist/packages/excalidraw/components/ActiveConfirmDialog.js +22 -0
- package/dist/packages/excalidraw/components/App.js +6177 -0
- package/dist/packages/excalidraw/components/Avatar.js +15 -0
- package/dist/packages/excalidraw/components/Avatar.scss +7 -0
- package/dist/packages/excalidraw/components/BraveMeasureTextError.js +6 -0
- package/dist/packages/excalidraw/components/Button.js +14 -0
- package/dist/packages/excalidraw/components/Button.scss +7 -0
- package/dist/packages/excalidraw/components/ButtonIconCycle.js +11 -0
- package/dist/packages/excalidraw/components/ButtonIconSelect.js +6 -0
- package/dist/packages/excalidraw/components/ButtonSelect.js +3 -0
- package/dist/packages/excalidraw/components/Card.js +14 -0
- package/dist/packages/excalidraw/components/Card.scss +57 -0
- package/dist/packages/excalidraw/components/CheckboxItem.js +10 -0
- package/dist/packages/excalidraw/components/CheckboxItem.scss +91 -0
- package/dist/packages/excalidraw/components/ColorPicker/ColorInput.js +67 -0
- package/dist/packages/excalidraw/components/ColorPicker/ColorPicker.js +138 -0
- package/dist/packages/excalidraw/components/ColorPicker/ColorPicker.scss +441 -0
- package/dist/packages/excalidraw/components/ColorPicker/CustomColorList.js +24 -0
- package/dist/packages/excalidraw/components/ColorPicker/HotkeyLabel.js +8 -0
- package/dist/packages/excalidraw/components/ColorPicker/Picker.js +86 -0
- package/dist/packages/excalidraw/components/ColorPicker/PickerColorList.js +33 -0
- package/dist/packages/excalidraw/components/ColorPicker/PickerHeading.js +3 -0
- package/dist/packages/excalidraw/components/ColorPicker/ShadeList.js +44 -0
- package/dist/packages/excalidraw/components/ColorPicker/TopPicks.js +27 -0
- package/dist/packages/excalidraw/components/ColorPicker/colorPickerUtils.js +83 -0
- package/dist/packages/excalidraw/components/ColorPicker/keyboardNavHandlers.js +174 -0
- package/dist/packages/excalidraw/components/ConfirmDialog.js +27 -0
- package/dist/packages/excalidraw/components/ConfirmDialog.scss +11 -0
- package/dist/packages/excalidraw/components/ContextMenu.js +56 -0
- package/dist/packages/excalidraw/components/ContextMenu.scss +98 -0
- package/dist/packages/excalidraw/components/DarkModeToggle.js +16 -0
- package/dist/packages/excalidraw/components/DefaultSidebar.js +48 -0
- package/dist/packages/excalidraw/components/Dialog.js +74 -0
- package/dist/packages/excalidraw/components/Dialog.scss +48 -0
- package/dist/packages/excalidraw/components/DialogActionButton.js +9 -0
- package/dist/packages/excalidraw/components/DialogActionButton.scss +47 -0
- package/dist/packages/excalidraw/components/ErrorDialog.js +18 -0
- package/dist/packages/excalidraw/components/ExcalidrawLogo.js +7 -0
- package/dist/packages/excalidraw/components/ExcalidrawLogo.scss +73 -0
- package/dist/packages/excalidraw/components/ExportDialog.scss +129 -0
- package/dist/packages/excalidraw/components/EyeDropper.js +130 -0
- package/dist/packages/excalidraw/components/EyeDropper.scss +48 -0
- package/dist/packages/excalidraw/components/FilledButton.js +7 -0
- package/dist/packages/excalidraw/components/FilledButton.scss +191 -0
- package/dist/packages/excalidraw/components/FixedSideContainer.js +4 -0
- package/dist/packages/excalidraw/components/FixedSideContainer.scss +40 -0
- package/dist/packages/excalidraw/components/FollowMode/FollowMode.js +7 -0
- package/dist/packages/excalidraw/components/FollowMode/FollowMode.scss +59 -0
- package/dist/packages/excalidraw/components/HandButton.js +9 -0
- package/dist/packages/excalidraw/components/HelpButton.js +4 -0
- package/dist/packages/excalidraw/components/HelpDialog.js +79 -0
- package/dist/packages/excalidraw/components/HelpDialog.scss +130 -0
- package/dist/packages/excalidraw/components/HintViewer.js +97 -0
- package/dist/packages/excalidraw/components/HintViewer.scss +37 -0
- package/dist/packages/excalidraw/components/IconPicker.js +99 -0
- package/dist/packages/excalidraw/components/IconPicker.scss +143 -0
- package/dist/packages/excalidraw/components/ImageExportDialog.js +127 -0
- package/dist/packages/excalidraw/components/ImageExportDialog.scss +173 -0
- package/dist/packages/excalidraw/components/InitializeApp.js +16 -0
- package/dist/packages/excalidraw/components/InlineIcon.js +10 -0
- package/dist/packages/excalidraw/components/Island.js +5 -0
- package/dist/packages/excalidraw/components/Island.scss +16 -0
- package/dist/packages/excalidraw/components/JSONExportDialog.js +35 -0
- package/dist/packages/excalidraw/components/LaserTool/LaserPathManager.js +225 -0
- package/dist/packages/excalidraw/components/LaserTool/LaserPointerButton.js +10 -0
- package/dist/packages/excalidraw/components/LaserTool/LaserTool.js +15 -0
- package/dist/packages/excalidraw/components/LaserTool/LaserToolOverlay.scss +20 -0
- package/dist/packages/excalidraw/components/LayerUI.js +189 -0
- package/dist/packages/excalidraw/components/LayerUI.scss +112 -0
- package/dist/packages/excalidraw/components/LibraryMenu.js +99 -0
- package/dist/packages/excalidraw/components/LibraryMenu.scss +150 -0
- package/dist/packages/excalidraw/components/LibraryMenuBrowseButton.js +8 -0
- package/dist/packages/excalidraw/components/LibraryMenuControlButtons.js +6 -0
- package/dist/packages/excalidraw/components/LibraryMenuHeaderContent.js +126 -0
- package/dist/packages/excalidraw/components/LibraryMenuItems.js +138 -0
- package/dist/packages/excalidraw/components/LibraryMenuItems.scss +99 -0
- package/dist/packages/excalidraw/components/LibraryMenuSection.js +21 -0
- package/dist/packages/excalidraw/components/LibraryUnit.js +52 -0
- package/dist/packages/excalidraw/components/LibraryUnit.scss +185 -0
- package/dist/packages/excalidraw/components/LoadingMessage.js +24 -0
- package/dist/packages/excalidraw/components/LockButton.js +14 -0
- package/dist/packages/excalidraw/components/MagicButton.js +9 -0
- package/dist/packages/excalidraw/components/MagicSettings.js +46 -0
- package/dist/packages/excalidraw/components/MagicSettings.scss +18 -0
- package/dist/packages/excalidraw/components/MobileMenu.js +45 -0
- package/dist/packages/excalidraw/components/Modal.js +23 -0
- package/dist/packages/excalidraw/components/Modal.scss +121 -0
- package/dist/packages/excalidraw/components/OverwriteConfirm/OverwriteConfirm.js +31 -0
- package/dist/packages/excalidraw/components/OverwriteConfirm/OverwriteConfirm.scss +126 -0
- package/dist/packages/excalidraw/components/OverwriteConfirm/OverwriteConfirmActions.js +32 -0
- package/dist/packages/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.js +19 -0
- package/dist/packages/excalidraw/components/Paragraph.js +4 -0
- package/dist/packages/excalidraw/components/PasteChartDialog.js +63 -0
- package/dist/packages/excalidraw/components/PasteChartDialog.scss +46 -0
- package/dist/packages/excalidraw/components/PenModeButton.js +13 -0
- package/dist/packages/excalidraw/components/Popover.js +111 -0
- package/dist/packages/excalidraw/components/Popover.scss +8 -0
- package/dist/packages/excalidraw/components/ProjectName.js +30 -0
- package/dist/packages/excalidraw/components/ProjectName.scss +25 -0
- package/dist/packages/excalidraw/components/PublishLibrary.js +214 -0
- package/dist/packages/excalidraw/components/PublishLibrary.scss +172 -0
- package/dist/packages/excalidraw/components/RadioGroup.js +8 -0
- package/dist/packages/excalidraw/components/RadioGroup.scss +91 -0
- package/dist/packages/excalidraw/components/Section.js +8 -0
- package/dist/packages/excalidraw/components/ShareableLinkDialog.js +33 -0
- package/dist/packages/excalidraw/components/ShareableLinkDialog.scss +91 -0
- package/dist/packages/excalidraw/components/Sidebar/Sidebar.js +145 -0
- package/dist/packages/excalidraw/components/Sidebar/Sidebar.scss +176 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarHeader.js +16 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTab.js +6 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTabTrigger.js +6 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTabTriggers.js +6 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTabs.js +17 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTrigger.js +18 -0
- package/dist/packages/excalidraw/components/Sidebar/SidebarTrigger.scss +37 -0
- package/dist/packages/excalidraw/components/Sidebar/common.js +2 -0
- package/dist/packages/excalidraw/components/Spinner.js +14 -0
- package/dist/packages/excalidraw/components/Spinner.scss +49 -0
- package/dist/packages/excalidraw/components/Stack.js +24 -0
- package/dist/packages/excalidraw/components/Stack.scss +19 -0
- package/dist/packages/excalidraw/components/Stats.js +13 -0
- package/dist/packages/excalidraw/components/Stats.scss +54 -0
- package/dist/packages/excalidraw/components/Switch.js +10 -0
- package/dist/packages/excalidraw/components/Switch.scss +118 -0
- package/dist/packages/excalidraw/components/TTDDialog/MermaidToExcalidraw.js +58 -0
- package/dist/packages/excalidraw/components/TTDDialog/MermaidToExcalidraw.scss +10 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialog.js +194 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialog.scss +315 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogInput.js +28 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogOutput.js +8 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogPanel.js +11 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogPanels.js +4 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogSubmitShortcut.js +5 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogTab.js +6 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogTabTrigger.js +6 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogTabTriggers.js +6 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogTabs.js +39 -0
- package/dist/packages/excalidraw/components/TTDDialog/TTDDialogTrigger.js +16 -0
- package/dist/packages/excalidraw/components/TTDDialog/common.js +88 -0
- package/dist/packages/excalidraw/components/TextField.js +25 -0
- package/dist/packages/excalidraw/components/TextField.scss +109 -0
- package/dist/packages/excalidraw/components/TextInput.scss +7 -0
- package/dist/packages/excalidraw/components/Toast.js +30 -0
- package/dist/packages/excalidraw/components/Toast.scss +49 -0
- package/dist/packages/excalidraw/components/ToolButton.js +72 -0
- package/dist/packages/excalidraw/components/ToolIcon.scss +184 -0
- package/dist/packages/excalidraw/components/Toolbar.scss +50 -0
- package/dist/packages/excalidraw/components/Tooltip.js +60 -0
- package/dist/packages/excalidraw/components/Tooltip.scss +47 -0
- package/dist/packages/excalidraw/components/Trans.js +139 -0
- package/dist/packages/excalidraw/components/UserList.js +96 -0
- package/dist/packages/excalidraw/components/UserList.scss +136 -0
- package/dist/packages/excalidraw/components/canvases/InteractiveCanvas.js +120 -0
- package/dist/packages/excalidraw/components/canvases/StaticCanvas.js +85 -0
- package/dist/packages/excalidraw/components/canvases/index.js +3 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenu.js +24 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenu.scss +148 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuContent.js +21 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuGroup.js +6 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuItem.js +23 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuItemContent.js +7 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.js +5 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuItemLink.js +9 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuSeparator.js +8 -0
- package/dist/packages/excalidraw/components/dropdownMenu/DropdownMenuTrigger.js +12 -0
- package/dist/packages/excalidraw/components/dropdownMenu/common.js +20 -0
- package/dist/packages/excalidraw/components/dropdownMenu/dropdownMenuUtils.js +27 -0
- package/dist/packages/excalidraw/components/footer/Footer.js +25 -0
- package/dist/packages/excalidraw/components/footer/FooterCenter.js +14 -0
- package/dist/packages/excalidraw/components/footer/FooterCenter.scss +11 -0
- package/dist/packages/excalidraw/components/hoc/withInternalFallback.js +57 -0
- package/dist/packages/excalidraw/components/icons.js +220 -0
- package/dist/packages/excalidraw/components/live-collaboration/LiveCollaborationTrigger.js +13 -0
- package/dist/packages/excalidraw/components/live-collaboration/LiveCollaborationTrigger.scss +72 -0
- package/dist/packages/excalidraw/components/main-menu/DefaultItems.js +116 -0
- package/dist/packages/excalidraw/components/main-menu/DefaultItems.scss +21 -0
- package/dist/packages/excalidraw/components/main-menu/MainMenu.js +36 -0
- package/dist/packages/excalidraw/components/welcome-screen/WelcomeScreen.Center.js +69 -0
- package/dist/packages/excalidraw/components/welcome-screen/WelcomeScreen.Hints.js +20 -0
- package/dist/packages/excalidraw/components/welcome-screen/WelcomeScreen.js +11 -0
- package/dist/packages/excalidraw/components/welcome-screen/WelcomeScreen.scss +285 -0
- package/dist/packages/excalidraw/constants.js +312 -0
- package/dist/packages/excalidraw/context/tunnels.js +21 -0
- package/dist/packages/excalidraw/context/ui-appState.js +3 -0
- package/dist/packages/excalidraw/css/app.scss +39 -0
- package/dist/packages/excalidraw/css/styles.scss +757 -0
- package/dist/packages/excalidraw/css/theme.scss +252 -0
- package/dist/packages/excalidraw/css/variables.module.scss +174 -0
- package/dist/packages/excalidraw/cursor.js +72 -0
- package/dist/packages/excalidraw/data/EditorLocalStorage.js +42 -0
- package/dist/packages/excalidraw/data/ai/types.js +1 -0
- package/dist/packages/excalidraw/data/blob.js +378 -0
- package/dist/packages/excalidraw/data/encode.js +231 -0
- package/dist/packages/excalidraw/data/encryption.js +53 -0
- package/dist/packages/excalidraw/data/filesystem.js +65 -0
- package/dist/packages/excalidraw/data/image.js +91 -0
- package/dist/packages/excalidraw/data/index.js +120 -0
- package/dist/packages/excalidraw/data/json.js +93 -0
- package/dist/packages/excalidraw/data/library.js +376 -0
- package/dist/packages/excalidraw/data/magic.js +73 -0
- package/dist/packages/excalidraw/data/resave.js +22 -0
- package/dist/packages/excalidraw/data/restore.js +438 -0
- package/dist/packages/excalidraw/data/transform.js +442 -0
- package/dist/packages/excalidraw/data/types.js +1 -0
- package/dist/packages/excalidraw/data/url.js +30 -0
- package/dist/packages/excalidraw/distribute.js +58 -0
- package/dist/packages/excalidraw/element/ElementCanvasButtons.js +31 -0
- package/dist/packages/excalidraw/element/ElementCanvasButtons.scss +14 -0
- package/dist/packages/excalidraw/element/Hyperlink.js +350 -0
- package/dist/packages/excalidraw/element/Hyperlink.scss +70 -0
- package/dist/packages/excalidraw/element/binding.js +412 -0
- package/dist/packages/excalidraw/element/bounds.js +613 -0
- package/dist/packages/excalidraw/element/collision.js +727 -0
- package/dist/packages/excalidraw/element/dragElements.js +119 -0
- package/dist/packages/excalidraw/element/embeddable.js +305 -0
- package/dist/packages/excalidraw/element/image.js +91 -0
- package/dist/packages/excalidraw/element/index.js +24 -0
- package/dist/packages/excalidraw/element/linearElementEditor.js +867 -0
- package/dist/packages/excalidraw/element/mutateElement.js +112 -0
- package/dist/packages/excalidraw/element/newElement.js +389 -0
- package/dist/packages/excalidraw/element/resizeElements.js +597 -0
- package/dist/packages/excalidraw/element/resizeTest.js +95 -0
- package/dist/packages/excalidraw/element/showSelectedShapeActions.js +9 -0
- package/dist/packages/excalidraw/element/sizeHelpers.js +131 -0
- package/dist/packages/excalidraw/element/sortElements.js +104 -0
- package/dist/packages/excalidraw/element/textElement.js +716 -0
- package/dist/packages/excalidraw/element/textWysiwyg.js +500 -0
- package/dist/packages/excalidraw/element/transformHandles.js +155 -0
- package/dist/packages/excalidraw/element/typeChecks.js +141 -0
- package/dist/packages/excalidraw/element/types.js +1 -0
- package/dist/packages/excalidraw/emitter.js +36 -0
- package/dist/packages/excalidraw/errors.js +20 -0
- package/dist/packages/excalidraw/frame.js +373 -0
- package/dist/packages/excalidraw/ga.js +268 -0
- package/dist/packages/excalidraw/gadirections.js +18 -0
- package/dist/packages/excalidraw/galines.js +32 -0
- package/dist/packages/excalidraw/gapoints.js +30 -0
- package/dist/packages/excalidraw/gatransforms.js +23 -0
- package/dist/packages/excalidraw/gesture.js +9 -0
- package/dist/packages/excalidraw/groups.js +225 -0
- package/dist/packages/excalidraw/history.js +190 -0
- package/dist/packages/excalidraw/hooks/useCallbackRefState.js +6 -0
- package/dist/packages/excalidraw/hooks/useCreatePortalContainer.js +32 -0
- package/dist/packages/excalidraw/hooks/useLibraryItemSvg.js +62 -0
- package/dist/packages/excalidraw/hooks/useOutsideClick.js +67 -0
- package/dist/packages/excalidraw/hooks/useScrollPosition.js +23 -0
- package/dist/packages/excalidraw/hooks/useStable.js +6 -0
- package/dist/packages/excalidraw/hooks/useTransition.js +7 -0
- package/dist/packages/excalidraw/i18n.js +137 -0
- package/dist/packages/excalidraw/index-node.d.ts +1 -0
- package/dist/packages/excalidraw/index-node.js +73 -0
- package/{types → dist/packages}/excalidraw/index.d.ts +1 -1
- package/dist/packages/excalidraw/index.js +116 -0
- package/dist/packages/excalidraw/jotai.js +18 -0
- package/dist/packages/excalidraw/keys.js +84 -0
- package/dist/packages/excalidraw/locales/ar-SA.json +525 -0
- package/dist/packages/excalidraw/locales/az-AZ.json +525 -0
- package/dist/packages/excalidraw/locales/bg-BG.json +525 -0
- package/dist/packages/excalidraw/locales/bn-BD.json +525 -0
- package/dist/packages/excalidraw/locales/ca-ES.json +525 -0
- package/dist/packages/excalidraw/locales/cs-CZ.json +525 -0
- package/dist/packages/excalidraw/locales/da-DK.json +525 -0
- package/dist/packages/excalidraw/locales/de-DE.json +525 -0
- package/dist/packages/excalidraw/locales/el-GR.json +525 -0
- package/dist/packages/excalidraw/locales/en.json +535 -0
- package/dist/packages/excalidraw/locales/es-ES.json +525 -0
- package/dist/packages/excalidraw/locales/eu-ES.json +525 -0
- package/dist/packages/excalidraw/locales/fa-IR.json +525 -0
- package/dist/packages/excalidraw/locales/fi-FI.json +525 -0
- package/dist/packages/excalidraw/locales/fr-FR.json +525 -0
- package/dist/packages/excalidraw/locales/gl-ES.json +525 -0
- package/dist/packages/excalidraw/locales/he-IL.json +525 -0
- package/dist/packages/excalidraw/locales/hi-IN.json +525 -0
- package/dist/packages/excalidraw/locales/hu-HU.json +525 -0
- package/dist/packages/excalidraw/locales/id-ID.json +525 -0
- package/dist/packages/excalidraw/locales/it-IT.json +525 -0
- package/dist/packages/excalidraw/locales/ja-JP.json +525 -0
- package/dist/packages/excalidraw/locales/kaa.json +525 -0
- package/dist/packages/excalidraw/locales/kab-KAB.json +525 -0
- package/dist/packages/excalidraw/locales/kk-KZ.json +525 -0
- package/dist/packages/excalidraw/locales/km-KH.json +525 -0
- package/dist/packages/excalidraw/locales/ko-KR.json +525 -0
- package/dist/packages/excalidraw/locales/ku-TR.json +525 -0
- package/dist/packages/excalidraw/locales/lt-LT.json +525 -0
- package/dist/packages/excalidraw/locales/lv-LV.json +525 -0
- package/dist/packages/excalidraw/locales/mr-IN.json +525 -0
- package/dist/packages/excalidraw/locales/my-MM.json +525 -0
- package/dist/packages/excalidraw/locales/nb-NO.json +525 -0
- package/dist/packages/excalidraw/locales/nl-NL.json +525 -0
- package/dist/packages/excalidraw/locales/nn-NO.json +525 -0
- package/dist/packages/excalidraw/locales/oc-FR.json +525 -0
- package/dist/packages/excalidraw/locales/pa-IN.json +525 -0
- package/dist/packages/excalidraw/locales/percentages.json +56 -0
- package/dist/packages/excalidraw/locales/pl-PL.json +525 -0
- package/dist/packages/excalidraw/locales/pt-BR.json +525 -0
- package/dist/packages/excalidraw/locales/pt-PT.json +525 -0
- package/dist/packages/excalidraw/locales/ro-RO.json +525 -0
- package/dist/packages/excalidraw/locales/ru-RU.json +525 -0
- package/dist/packages/excalidraw/locales/si-LK.json +525 -0
- package/dist/packages/excalidraw/locales/sk-SK.json +525 -0
- package/dist/packages/excalidraw/locales/sl-SI.json +525 -0
- package/dist/packages/excalidraw/locales/sv-SE.json +525 -0
- package/dist/packages/excalidraw/locales/ta-IN.json +525 -0
- package/dist/packages/excalidraw/locales/th-TH.json +525 -0
- package/dist/packages/excalidraw/locales/tr-TR.json +525 -0
- package/dist/packages/excalidraw/locales/uk-UA.json +525 -0
- package/dist/packages/excalidraw/locales/vi-VN.json +525 -0
- package/dist/packages/excalidraw/locales/zh-CN.json +525 -0
- package/dist/packages/excalidraw/locales/zh-HK.json +525 -0
- package/dist/packages/excalidraw/locales/zh-TW.json +525 -0
- package/dist/packages/excalidraw/math.js +364 -0
- package/dist/packages/excalidraw/points.js +38 -0
- package/dist/packages/excalidraw/polyfill.js +32 -0
- package/dist/packages/excalidraw/random.js +11 -0
- package/dist/packages/excalidraw/renderer/renderElement.js +871 -0
- package/dist/packages/excalidraw/renderer/renderScene.js +859 -0
- package/dist/packages/excalidraw/renderer/renderSnaps.js +114 -0
- package/dist/packages/excalidraw/renderer/roundRect.js +28 -0
- package/dist/packages/excalidraw/scene/Fonts.js +71 -0
- package/dist/packages/excalidraw/scene/Renderer.js +65 -0
- package/dist/packages/excalidraw/scene/Scene.js +230 -0
- package/dist/packages/excalidraw/scene/Shape.js +322 -0
- package/dist/packages/excalidraw/scene/ShapeCache.js +42 -0
- package/dist/packages/excalidraw/scene/comparisons.js +67 -0
- package/dist/packages/excalidraw/scene/export.js +304 -0
- package/dist/packages/excalidraw/scene/index.js +5 -0
- package/dist/packages/excalidraw/scene/scroll.js +35 -0
- package/dist/packages/excalidraw/scene/scrollbars.js +85 -0
- package/dist/packages/excalidraw/scene/selection.js +134 -0
- package/dist/packages/excalidraw/scene/types.js +1 -0
- package/dist/packages/excalidraw/scene/zoom.js +22 -0
- package/dist/packages/excalidraw/shapes.js +84 -0
- package/dist/packages/excalidraw/snapping.js +838 -0
- package/dist/packages/excalidraw/types.js +6 -0
- package/dist/packages/excalidraw/utility-types.js +1 -0
- package/dist/packages/excalidraw/utils.js +668 -0
- package/dist/packages/excalidraw/zindex.js +349 -0
- package/dist/packages/utils/bbox.js +42 -0
- package/dist/packages/utils/export.js +109 -0
- package/dist/packages/utils/withinBounds.js +125 -0
- package/dist/public/fonts/Assistant-Bold.woff2 +0 -0
- package/dist/public/fonts/Assistant-Medium.woff2 +0 -0
- package/dist/public/fonts/Assistant-Regular.woff2 +0 -0
- package/dist/public/fonts/Assistant-SemiBold.woff2 +0 -0
- package/dist/public/fonts/Cascadia.ttf +0 -0
- package/dist/public/fonts/Cascadia.woff2 +0 -0
- package/dist/public/fonts/FG_Virgil.ttf +0 -0
- package/dist/public/fonts/FG_Virgil.woff2 +0 -0
- package/dist/public/fonts/Virgil.woff2 +0 -0
- package/dist/public/fonts/fonts.css +38 -0
- package/package.json +8 -5
- package/dist/index.css +0 -5796
- package/dist/index.js +0 -71898
- /package/{types → dist/packages}/excalidraw/actions/actionAddToLibrary.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionAlign.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionBoundText.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionCanvas.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionClipboard.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionDeleteSelected.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionDistribute.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionDuplicateSelection.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionElementLock.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionExport.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionFinalize.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionFlip.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionFrame.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionGroup.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionHistory.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionLinearEditor.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionNavigate.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionProperties.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionSelectAll.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionStyles.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionToggleGridMode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionToggleStats.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionToggleViewMode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionToggleZenMode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/actionZindex.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/index.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/manager.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/register.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/shortcuts.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/actions/types.d.ts +0 -0
- /package/{types/excalidraw/index-node.d.ts → dist/packages/excalidraw/actions/types.js} +0 -0
- /package/{types → dist/packages}/excalidraw/align.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/analytics.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/appState.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/charts.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/clients.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/clipboard.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/colors.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Actions.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ActiveConfirmDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/App.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Avatar.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/BraveMeasureTextError.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Button.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ButtonIconCycle.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ButtonIconSelect.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ButtonSelect.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Card.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/CheckboxItem.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/ColorInput.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/CustomColorList.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/Picker.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/PickerColorList.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/PickerHeading.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/ShadeList.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/TopPicks.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ConfirmDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ContextMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/DarkModeToggle.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/DefaultSidebar.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Dialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/DialogActionButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ErrorDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ExcalidrawLogo.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/EyeDropper.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/FilledButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/FixedSideContainer.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/FollowMode/FollowMode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/HandButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/HelpButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/HelpDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/HintViewer.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/IconPicker.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ImageExportDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/InitializeApp.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/InlineIcon.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Island.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/JSONExportDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LaserTool/LaserPathManager.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LaserTool/LaserPointerButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LaserTool/LaserTool.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LayerUI.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenuBrowseButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenuControlButtons.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenuHeaderContent.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenuItems.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryMenuSection.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LibraryUnit.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LoadingMessage.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/LockButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/MagicButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/MagicSettings.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/MobileMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Modal.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Paragraph.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/PasteChartDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/PenModeButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Popover.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ProjectName.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/PublishLibrary.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/RadioGroup.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Section.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ShareableLinkDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/Sidebar.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarHeader.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarTab.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarTabs.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/SidebarTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Sidebar/common.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Spinner.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Stack.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Stats.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Switch.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialog.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogPanels.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogTabs.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TTDDialog/common.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/TextField.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Toast.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/ToolButton.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Tooltip.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/Trans.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/UserList.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/canvases/InteractiveCanvas.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/canvases/StaticCanvas.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/canvases/index.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuSeparator.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/common.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/footer/Footer.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/footer/FooterCenter.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/hoc/withInternalFallback.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/icons.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/main-menu/DefaultItems.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/main-menu/MainMenu.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/constants.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/context/tunnels.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/context/ui-appState.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/cursor.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/EditorLocalStorage.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/ai/types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/blob.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/encode.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/encryption.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/filesystem.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/image.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/index.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/json.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/library.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/magic.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/resave.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/restore.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/transform.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/data/url.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/distribute.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/ElementCanvasButtons.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/Hyperlink.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/binding.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/bounds.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/collision.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/dragElements.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/embeddable.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/image.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/index.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/linearElementEditor.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/mutateElement.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/newElement.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/resizeElements.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/resizeTest.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/showSelectedShapeActions.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/sizeHelpers.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/sortElements.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/textElement.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/textWysiwyg.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/transformHandles.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/typeChecks.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/element/types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/emitter.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/errors.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/frame.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/ga.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/gadirections.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/galines.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/gapoints.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/gatransforms.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/gesture.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/groups.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/history.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useCallbackRefState.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useCreatePortalContainer.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useLibraryItemSvg.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useOutsideClick.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useScrollPosition.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useStable.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/hooks/useTransition.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/i18n.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/jotai.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/keys.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/math.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/points.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/polyfill.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/random.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/renderer/renderElement.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/renderer/renderScene.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/renderer/renderSnaps.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/renderer/roundRect.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/Fonts.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/Renderer.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/Scene.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/Shape.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/ShapeCache.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/comparisons.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/export.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/index.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/scroll.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/scrollbars.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/selection.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/scene/zoom.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/shapes.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/snapping.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/utility-types.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/utils.d.ts +0 -0
- /package/{types → dist/packages}/excalidraw/zindex.d.ts +0 -0
- /package/{types → dist/packages}/utils/bbox.d.ts +0 -0
- /package/{types → dist/packages}/utils/export.d.ts +0 -0
- /package/{types → dist/packages}/utils/withinBounds.d.ts +0 -0
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
{
|
|
2
|
+
"labels": {
|
|
3
|
+
"paste": "貼上",
|
|
4
|
+
"pasteAsPlaintext": "以純文字貼上",
|
|
5
|
+
"pasteCharts": "貼上圖表",
|
|
6
|
+
"selectAll": "全選",
|
|
7
|
+
"multiSelect": "將物件加入選取範圍",
|
|
8
|
+
"moveCanvas": "移動畫布",
|
|
9
|
+
"cut": "剪下",
|
|
10
|
+
"copy": "複製",
|
|
11
|
+
"copyAsPng": "以PNG格式儲存到剪貼板",
|
|
12
|
+
"copyAsSvg": "以SVG格式複製到剪貼板",
|
|
13
|
+
"copyText": "以文字格式複製至剪貼簿",
|
|
14
|
+
"copySource": "複製來源至剪貼簿",
|
|
15
|
+
"convertToCode": "轉換為程式碼",
|
|
16
|
+
"bringForward": "上移一層",
|
|
17
|
+
"sendToBack": "移到最底層",
|
|
18
|
+
"bringToFront": "置於最頂層",
|
|
19
|
+
"sendBackward": "往後移一層",
|
|
20
|
+
"delete": "刪除",
|
|
21
|
+
"copyStyles": "複製樣式",
|
|
22
|
+
"pasteStyles": "貼上樣式",
|
|
23
|
+
"stroke": "筆畫",
|
|
24
|
+
"background": "背景",
|
|
25
|
+
"fill": "填滿",
|
|
26
|
+
"strokeWidth": "筆跡寬度",
|
|
27
|
+
"strokeStyle": "筆畫樣式",
|
|
28
|
+
"strokeStyle_solid": "實線",
|
|
29
|
+
"strokeStyle_dashed": "虛線",
|
|
30
|
+
"strokeStyle_dotted": "點線",
|
|
31
|
+
"sloppiness": "線條風格",
|
|
32
|
+
"opacity": "透明度",
|
|
33
|
+
"textAlign": "文字對齊",
|
|
34
|
+
"edges": "邊緣",
|
|
35
|
+
"sharp": "尖銳",
|
|
36
|
+
"round": "平滑",
|
|
37
|
+
"arrowheads": "箭頭",
|
|
38
|
+
"arrowhead_none": "無",
|
|
39
|
+
"arrowhead_arrow": "箭頭",
|
|
40
|
+
"arrowhead_bar": "條狀箭頭",
|
|
41
|
+
"arrowhead_circle": "圓形",
|
|
42
|
+
"arrowhead_circle_outline": "圓形(外框)",
|
|
43
|
+
"arrowhead_triangle": "三角形",
|
|
44
|
+
"arrowhead_triangle_outline": "三角形(外框)",
|
|
45
|
+
"arrowhead_diamond": "菱形",
|
|
46
|
+
"arrowhead_diamond_outline": "菱形(外框)",
|
|
47
|
+
"fontSize": "字型大小",
|
|
48
|
+
"fontFamily": "字體集",
|
|
49
|
+
"addWatermark": "加上 \"Made with Excalidraw\" 浮水印",
|
|
50
|
+
"handDrawn": "手寫",
|
|
51
|
+
"normal": "一般",
|
|
52
|
+
"code": "代碼",
|
|
53
|
+
"small": "小",
|
|
54
|
+
"medium": "中",
|
|
55
|
+
"large": "大",
|
|
56
|
+
"veryLarge": "特大",
|
|
57
|
+
"solid": "實心",
|
|
58
|
+
"hachure": "斜線筆觸",
|
|
59
|
+
"zigzag": "Z字形",
|
|
60
|
+
"crossHatch": "交叉筆觸",
|
|
61
|
+
"thin": "細",
|
|
62
|
+
"bold": "粗",
|
|
63
|
+
"left": "左側",
|
|
64
|
+
"center": "置中",
|
|
65
|
+
"right": "右側",
|
|
66
|
+
"extraBold": "極粗",
|
|
67
|
+
"architect": "精確",
|
|
68
|
+
"artist": "藝術",
|
|
69
|
+
"cartoonist": "卡通",
|
|
70
|
+
"fileTitle": "檔案名稱",
|
|
71
|
+
"colorPicker": "色彩選擇工具",
|
|
72
|
+
"canvasColors": "使用於畫布",
|
|
73
|
+
"canvasBackground": "Canvas 背景",
|
|
74
|
+
"drawingCanvas": "繪圖 canvas",
|
|
75
|
+
"layers": "圖層",
|
|
76
|
+
"actions": "動作",
|
|
77
|
+
"language": "語言",
|
|
78
|
+
"liveCollaboration": "即時協作...",
|
|
79
|
+
"duplicateSelection": "複製",
|
|
80
|
+
"untitled": "無標題",
|
|
81
|
+
"name": "名稱",
|
|
82
|
+
"yourName": "你的名稱",
|
|
83
|
+
"madeWithExcalidraw": "以 Excalidraw 製作",
|
|
84
|
+
"group": "建立群組",
|
|
85
|
+
"ungroup": "取消群組",
|
|
86
|
+
"collaborators": "協作者",
|
|
87
|
+
"showGrid": "顯示格線",
|
|
88
|
+
"addToLibrary": "加入資料庫",
|
|
89
|
+
"removeFromLibrary": "從資料庫中移除",
|
|
90
|
+
"libraryLoadingMessage": "資料庫讀取中…",
|
|
91
|
+
"libraries": "瀏覽資料庫",
|
|
92
|
+
"loadingScene": "場景讀取中…",
|
|
93
|
+
"align": "對齊",
|
|
94
|
+
"alignTop": "對齊頂部",
|
|
95
|
+
"alignBottom": "對齊底部",
|
|
96
|
+
"alignLeft": "對齊左側",
|
|
97
|
+
"alignRight": "對齊右側",
|
|
98
|
+
"centerVertically": "垂直置中",
|
|
99
|
+
"centerHorizontally": "水平置中",
|
|
100
|
+
"distributeHorizontally": "水平分布",
|
|
101
|
+
"distributeVertically": "垂直分布",
|
|
102
|
+
"flipHorizontal": "水平翻轉",
|
|
103
|
+
"flipVertical": "垂直翻轉",
|
|
104
|
+
"viewMode": "檢視模式",
|
|
105
|
+
"share": "共享",
|
|
106
|
+
"showStroke": "顯示線條檢色器",
|
|
107
|
+
"showBackground": "顯示背景檢色器",
|
|
108
|
+
"toggleTheme": "切換主題",
|
|
109
|
+
"personalLib": "個人資料庫",
|
|
110
|
+
"excalidrawLib": "Excalidraw 資料庫",
|
|
111
|
+
"decreaseFontSize": "縮小文字",
|
|
112
|
+
"increaseFontSize": "放大文字",
|
|
113
|
+
"unbindText": "取消綁定文字",
|
|
114
|
+
"bindText": "結合文字至容器",
|
|
115
|
+
"createContainerFromText": "將文字包於容器中",
|
|
116
|
+
"link": {
|
|
117
|
+
"edit": "編輯連結",
|
|
118
|
+
"editEmbed": "編輯連結&嵌入",
|
|
119
|
+
"create": "建立連結",
|
|
120
|
+
"createEmbed": "建立連結&嵌入",
|
|
121
|
+
"label": "連結",
|
|
122
|
+
"labelEmbed": "連結&嵌入",
|
|
123
|
+
"empty": "未設定連結"
|
|
124
|
+
},
|
|
125
|
+
"lineEditor": {
|
|
126
|
+
"edit": "編輯線條",
|
|
127
|
+
"exit": "結束線條編輯"
|
|
128
|
+
},
|
|
129
|
+
"elementLock": {
|
|
130
|
+
"lock": "鎖定",
|
|
131
|
+
"unlock": "解鎖",
|
|
132
|
+
"lockAll": "全部鎖定",
|
|
133
|
+
"unlockAll": "全部解鎖"
|
|
134
|
+
},
|
|
135
|
+
"statusPublished": "已發布",
|
|
136
|
+
"sidebarLock": "側欄維持開啟",
|
|
137
|
+
"selectAllElementsInFrame": "選取框架內的所有元素",
|
|
138
|
+
"removeAllElementsFromFrame": "從框架內移除所有元素",
|
|
139
|
+
"eyeDropper": "從畫布中選取顏色",
|
|
140
|
+
"textToDiagram": "文字轉圖表",
|
|
141
|
+
"prompt": "提示詞"
|
|
142
|
+
},
|
|
143
|
+
"library": {
|
|
144
|
+
"noItems": "尚未加入任何物件...",
|
|
145
|
+
"hint_emptyLibrary": "選取畫布上的物件以加入,或從下方的公開 repository 中安裝資料庫",
|
|
146
|
+
"hint_emptyPrivateLibrary": "選擇畫布上的物件以在此加入"
|
|
147
|
+
},
|
|
148
|
+
"buttons": {
|
|
149
|
+
"clearReset": "重置 canvas",
|
|
150
|
+
"exportJSON": "匯出至檔案",
|
|
151
|
+
"exportImage": "匯出圖片",
|
|
152
|
+
"export": "儲存至...",
|
|
153
|
+
"copyToClipboard": "複製至剪貼簿",
|
|
154
|
+
"save": "儲存目前檔案",
|
|
155
|
+
"saveAs": "儲存為",
|
|
156
|
+
"load": "開啟",
|
|
157
|
+
"getShareableLink": "取得共享連結",
|
|
158
|
+
"close": "關閉",
|
|
159
|
+
"selectLanguage": "選擇語言",
|
|
160
|
+
"scrollBackToContent": "捲動回到內容",
|
|
161
|
+
"zoomIn": "放大",
|
|
162
|
+
"zoomOut": "縮小",
|
|
163
|
+
"resetZoom": "重設縮放",
|
|
164
|
+
"menu": "選單",
|
|
165
|
+
"done": "完成",
|
|
166
|
+
"edit": "編輯",
|
|
167
|
+
"undo": "復原",
|
|
168
|
+
"redo": "重做",
|
|
169
|
+
"resetLibrary": "重設資料庫",
|
|
170
|
+
"createNewRoom": "建立新協作會議室",
|
|
171
|
+
"fullScreen": "全螢幕",
|
|
172
|
+
"darkMode": "深色模式",
|
|
173
|
+
"lightMode": "淺色模式",
|
|
174
|
+
"zenMode": "專注模式",
|
|
175
|
+
"objectsSnapMode": "吸附至物件",
|
|
176
|
+
"exitZenMode": "離開專注模式",
|
|
177
|
+
"cancel": "取消",
|
|
178
|
+
"clear": "清除",
|
|
179
|
+
"remove": "刪除",
|
|
180
|
+
"embed": "切換嵌入",
|
|
181
|
+
"publishLibrary": "發布",
|
|
182
|
+
"submit": "送出",
|
|
183
|
+
"confirm": "確認",
|
|
184
|
+
"embeddableInteractionButton": "點擊以互動"
|
|
185
|
+
},
|
|
186
|
+
"alerts": {
|
|
187
|
+
"clearReset": "這將會清除整個 canvas。你確定嗎?",
|
|
188
|
+
"couldNotCreateShareableLink": "無法建立共享連結。",
|
|
189
|
+
"couldNotCreateShareableLinkTooBig": "無法建立共享連結:場景太大",
|
|
190
|
+
"couldNotLoadInvalidFile": "無法讀取失效的檔案。",
|
|
191
|
+
"importBackendFailed": "後端讀取失敗。",
|
|
192
|
+
"cannotExportEmptyCanvas": "無法輸出空白的 canvas。",
|
|
193
|
+
"couldNotCopyToClipboard": "無法複製到剪貼簿",
|
|
194
|
+
"decryptFailed": "無法解密資料。",
|
|
195
|
+
"uploadedSecurly": "上傳已通過 end-to-end 加密,Excalidraw 伺服器和第三方無法皆讀取其內容。",
|
|
196
|
+
"loadSceneOverridePrompt": "讀取外部圖樣將取代目前的內容。是否要繼續?",
|
|
197
|
+
"collabStopOverridePrompt": "停止連線將覆蓋您先前於本機儲存的繪圖進度,是否確認?\n\n(如要保留原有的本機繪圖進度,直接關閉瀏覽器分頁即可。)",
|
|
198
|
+
"errorAddingToLibrary": "無法於此資料庫加入項目",
|
|
199
|
+
"errorRemovingFromLibrary": "無法由此資料庫移除項目",
|
|
200
|
+
"confirmAddLibrary": "這將會將 {{numShapes}} 個圖形加入你的資料庫,你確定嗎?",
|
|
201
|
+
"imageDoesNotContainScene": "此圖檔中未包含場景資料。輸出檔案時是否有包含場景資料?",
|
|
202
|
+
"cannotRestoreFromImage": "無法由此檔案回復場景。",
|
|
203
|
+
"invalidSceneUrl": "無法由提供的 URL 匯入場景。可能是發生異常,或未包含有效的 Excalidraw JSON 資料。",
|
|
204
|
+
"resetLibrary": "這會清除您的資料庫,是否確定?",
|
|
205
|
+
"removeItemsFromsLibrary": "從資料庫刪除 {{count}} 項?",
|
|
206
|
+
"invalidEncryptionKey": "加密鍵必須為22字元。即時協作已停用。",
|
|
207
|
+
"collabOfflineWarning": "沒有可用的網路連線。\n變更無法儲存!"
|
|
208
|
+
},
|
|
209
|
+
"errors": {
|
|
210
|
+
"unsupportedFileType": "不支援的檔案類型。",
|
|
211
|
+
"imageInsertError": "無法插入圖片。請稍後再試…",
|
|
212
|
+
"fileTooBig": "檔案過大。可接受的最大尺寸為 {{maxSize}} 。",
|
|
213
|
+
"svgImageInsertError": "無法插入 SVG 圖片。此 SVG 檔案有問題。",
|
|
214
|
+
"failedToFetchImage": "無法獲取圖片。",
|
|
215
|
+
"invalidSVGString": "無效的 SVG。",
|
|
216
|
+
"cannotResolveCollabServer": "無法連結至 collab 伺服器。請重新整理後再試一次。",
|
|
217
|
+
"importLibraryError": "無法載入資料庫",
|
|
218
|
+
"collabSaveFailed": "無法儲存至後端資料庫。若此問題持續發生,請將檔案儲存於本機以確保資料不會遺失。",
|
|
219
|
+
"collabSaveFailed_sizeExceeded": "無法儲存至後端資料庫,可能的原因為畫布尺寸過大。請將檔案儲存於本機以確保資料不會遺失。",
|
|
220
|
+
"imageToolNotSupported": "圖片已停用",
|
|
221
|
+
"brave_measure_text_error": {
|
|
222
|
+
"line1": "看起來您開啟了 Brave 瀏覽器的 <bold>Aggressively Block Fingerprinting</bold> 設定。",
|
|
223
|
+
"line2": "這可能造成您畫布中 <bold>文字元素</bold> 的異常。",
|
|
224
|
+
"line3": "我們強烈建議您關閉此設定。您可以依照 <link>這些步驟</link> 來進行。",
|
|
225
|
+
"line4": "若關閉此設定並未修復文字元素的顯示問題,請回報於我們 GitHub 上的 <issueLink>issue</issueLink>,或在 <discordLink>Discord</discordLink> 上告訴我們。"
|
|
226
|
+
},
|
|
227
|
+
"libraryElementTypeError": {
|
|
228
|
+
"embeddable": "可嵌入元素無法加入資料庫",
|
|
229
|
+
"iframe": "IFrame 元素無法加入資料庫",
|
|
230
|
+
"image": "即將支援加入圖片至資料庫!"
|
|
231
|
+
},
|
|
232
|
+
"asyncPasteFailedOnRead": "無法貼上(無法由系統剪貼簿讀入)",
|
|
233
|
+
"asyncPasteFailedOnParse": "無法貼上",
|
|
234
|
+
"copyToSystemClipboardFailed": "無法複製至剪貼簿"
|
|
235
|
+
},
|
|
236
|
+
"toolBar": {
|
|
237
|
+
"selection": "選取",
|
|
238
|
+
"image": "插入圖片",
|
|
239
|
+
"rectangle": "長方形",
|
|
240
|
+
"diamond": "菱形",
|
|
241
|
+
"ellipse": "橢圓",
|
|
242
|
+
"arrow": "箭頭",
|
|
243
|
+
"line": "線條",
|
|
244
|
+
"freedraw": "繪圖",
|
|
245
|
+
"text": "文字",
|
|
246
|
+
"library": "資料庫",
|
|
247
|
+
"lock": "可連續使用選取的工具",
|
|
248
|
+
"penMode": "筆模式 - 避免觸摸",
|
|
249
|
+
"link": "為所選的形狀增加\b/更新連結",
|
|
250
|
+
"eraser": "橡皮擦",
|
|
251
|
+
"frame": "框架工具",
|
|
252
|
+
"magicframe": "線框稿轉為程式碼",
|
|
253
|
+
"embeddable": "嵌入網站",
|
|
254
|
+
"laser": "雷射筆",
|
|
255
|
+
"hand": "手形(平移工具)",
|
|
256
|
+
"extraTools": "更多工具",
|
|
257
|
+
"mermaidToExcalidraw": "Mermaid 至 Excalidraw",
|
|
258
|
+
"magicSettings": "AI 設定"
|
|
259
|
+
},
|
|
260
|
+
"headings": {
|
|
261
|
+
"canvasActions": "canvas 動作",
|
|
262
|
+
"selectedShapeActions": "選取圖形動作",
|
|
263
|
+
"shapes": "形狀"
|
|
264
|
+
},
|
|
265
|
+
"hints": {
|
|
266
|
+
"canvasPanning": "若要移動畫布,請在拖曳時按住滑鼠滾輪或空白鍵,或使用手形工具",
|
|
267
|
+
"linearElement": "點擊以繪製多點曲線;或拖曳以繪製直線",
|
|
268
|
+
"freeDraw": "點擊並拖曳來繪圖,放開即結束",
|
|
269
|
+
"text": "提示:亦可使用選取工具在任何地方雙擊來加入文字",
|
|
270
|
+
"embeddable": "點擊並拖移以建立嵌入網站",
|
|
271
|
+
"text_selected": "雙擊滑鼠或按 Enter 以編輯文字",
|
|
272
|
+
"text_editing": "按跳脫鍵或 Ctrl 或 Cmd + Enter 以結束編輯",
|
|
273
|
+
"linearElementMulti": "按下 Escape 或 Enter 以結束繪製",
|
|
274
|
+
"lockAngle": "按住 SHIFT 可限制旋轉角度",
|
|
275
|
+
"resize": "縮放時按住 Shift 可保持原比例縮放;\\n按住 Alt 可由中心點進行縮放",
|
|
276
|
+
"resizeImage": "按住 SHIFT 可任意縮放,按住 ALT 可由中央縮放。",
|
|
277
|
+
"rotate": "旋轉時按住 Shift 可限制旋轉角度",
|
|
278
|
+
"lineEditor_info": "按住 Ctrl 或 Cmd 並雙擊或按住 Ctrl 或 Cmd + Enter 來編輯控制點",
|
|
279
|
+
"lineEditor_pointSelected": "按下 Delete 可移除錨點;Ctrl 或 Cmd + D 可複製;或可拖曳來移動",
|
|
280
|
+
"lineEditor_nothingSelected": "選擇要編輯的錨點(按住 SHIFT 可多選),\n或按住 Alt 並點擊以增加新錨點。",
|
|
281
|
+
"placeImage": "點擊以放置圖片,或點擊並拖曳以手動調整其尺寸。",
|
|
282
|
+
"publishLibrary": "發布個人資料庫",
|
|
283
|
+
"bindTextToElement": "按下 Enter 以加入文字。",
|
|
284
|
+
"deepBoxSelect": "按住 Ctrl 或 Cmd 以深度選取並避免拖曳",
|
|
285
|
+
"eraserRevert": "按住 Alt 以反選取已標記待刪除的元素",
|
|
286
|
+
"firefox_clipboard_write": "此功能有機會透過將 \"dom.events.asyncClipboard.clipboardItem\" 設定為 \"true\" 來開啟。\n若要變更 Firefox 瀏覽器的此設定值,請至 \"about:config\" 頁面。",
|
|
287
|
+
"disableSnapping": "按住 Ctrl 或 Cmd 以禁用吸附"
|
|
288
|
+
},
|
|
289
|
+
"canvasError": {
|
|
290
|
+
"cannotShowPreview": "無法顯示預覽",
|
|
291
|
+
"canvasTooBig": "畫布可能過大",
|
|
292
|
+
"canvasTooBigTip": "提示:可嘗試將最遠的元素移動至較集中的位置"
|
|
293
|
+
},
|
|
294
|
+
"errorSplash": {
|
|
295
|
+
"headingMain": "發生錯誤,嘗試<button>重新載入頁面。</button>",
|
|
296
|
+
"clearCanvasMessage": "若重新載入仍無法解決問題,嘗試<button>清除 canvas。</button>",
|
|
297
|
+
"clearCanvasCaveat": "此動作將造成目前的作品被移除。",
|
|
298
|
+
"trackedToSentry": "此錯誤與其識別碼{{eventId}}將由系統記錄。",
|
|
299
|
+
"openIssueMessage": "我們將謹慎處理,你的作品內容不會被包含在錯誤報告中。若你的作品不需保持私密,請考慮使用我們的<button>bug tracker。</button>請將下列資訊複製貼上至 GitHub issue 中。",
|
|
300
|
+
"sceneContent": "作品內容:"
|
|
301
|
+
},
|
|
302
|
+
"roomDialog": {
|
|
303
|
+
"desc_intro": "你可以邀請其他人一起協作目前的作品。",
|
|
304
|
+
"desc_privacy": "連線使用 end-to-end 加密故無須擔心作品的安全性。即使是我們的伺服器也無法取得其內容。",
|
|
305
|
+
"button_startSession": "開始連線",
|
|
306
|
+
"button_stopSession": "停止連線",
|
|
307
|
+
"desc_inProgressIntro": "即時協作連線正在進行中。",
|
|
308
|
+
"desc_shareLink": "將此連結分享給欲協作的對象:",
|
|
309
|
+
"desc_exitSession": "停止連線將中斷你與協作會議室的連結,但你仍可於本機編輯此作品。意指停止連線後你的編輯不會被先前共同協作的人看見,且他們可繼續共同協作另一個版本。",
|
|
310
|
+
"shareTitle": "加入 Excalidraw 上的即時協作會議室"
|
|
311
|
+
},
|
|
312
|
+
"errorDialog": {
|
|
313
|
+
"title": "錯誤"
|
|
314
|
+
},
|
|
315
|
+
"exportDialog": {
|
|
316
|
+
"disk_title": "儲存至硬碟",
|
|
317
|
+
"disk_details": "將場景匯出為可供匯入之檔案",
|
|
318
|
+
"disk_button": "儲存至檔案",
|
|
319
|
+
"link_title": "可共享連結",
|
|
320
|
+
"link_details": "匯出為唯讀連結",
|
|
321
|
+
"link_button": "匯出為連結",
|
|
322
|
+
"excalidrawplus_description": "將此場景儲存至你的 Excalidraw+ 工作區",
|
|
323
|
+
"excalidrawplus_button": "輸出",
|
|
324
|
+
"excalidrawplus_exportError": "目前無法輸出至 Excalidraw+"
|
|
325
|
+
},
|
|
326
|
+
"helpDialog": {
|
|
327
|
+
"blog": "閱讀部落格",
|
|
328
|
+
"click": "點擊",
|
|
329
|
+
"deepSelect": "深度選取",
|
|
330
|
+
"deepBoxSelect": "在容器內深度選取並避免拖曳",
|
|
331
|
+
"curvedArrow": "曲箭頭",
|
|
332
|
+
"curvedLine": "曲線",
|
|
333
|
+
"documentation": "文件",
|
|
334
|
+
"doubleClick": "雙擊",
|
|
335
|
+
"drag": "拖曳",
|
|
336
|
+
"editor": "編輯器",
|
|
337
|
+
"editLineArrowPoints": "編輯線/箭頭控制點",
|
|
338
|
+
"editText": "編輯文字/增加標籤",
|
|
339
|
+
"github": "發現異常?回報問題",
|
|
340
|
+
"howto": "參照我們的說明",
|
|
341
|
+
"or": "或",
|
|
342
|
+
"preventBinding": "避免箭號連結",
|
|
343
|
+
"tools": "工具",
|
|
344
|
+
"shortcuts": "鍵盤快速鍵",
|
|
345
|
+
"textFinish": "完成編輯(文字編輯器)",
|
|
346
|
+
"textNewLine": "換行(文字編輯器)",
|
|
347
|
+
"title": "說明",
|
|
348
|
+
"view": "檢視",
|
|
349
|
+
"zoomToFit": "放大至填滿畫面",
|
|
350
|
+
"zoomToSelection": "縮放至選取區",
|
|
351
|
+
"toggleElementLock": "鎖定/解鎖已選的項目",
|
|
352
|
+
"movePageUpDown": "向上/下移動頁面",
|
|
353
|
+
"movePageLeftRight": "向左/右移動頁面"
|
|
354
|
+
},
|
|
355
|
+
"clearCanvasDialog": {
|
|
356
|
+
"title": "清除畫布"
|
|
357
|
+
},
|
|
358
|
+
"publishDialog": {
|
|
359
|
+
"title": "發布資料庫",
|
|
360
|
+
"itemName": "項目名稱",
|
|
361
|
+
"authorName": "作者名稱",
|
|
362
|
+
"githubUsername": "GitHub 帳號",
|
|
363
|
+
"twitterUsername": "Twitter 帳號",
|
|
364
|
+
"libraryName": "資料庫名稱",
|
|
365
|
+
"libraryDesc": "資料庫說明",
|
|
366
|
+
"website": "網站",
|
|
367
|
+
"placeholder": {
|
|
368
|
+
"authorName": "您的名稱或帳號",
|
|
369
|
+
"libraryName": "您的資料庫名稱",
|
|
370
|
+
"libraryDesc": "提供您的資料庫說明以利他人理解其用途",
|
|
371
|
+
"githubHandle": "Github handle(選填),填寫後您可編輯已送出待審查的資料庫",
|
|
372
|
+
"twitterHandle": "Twitter 帳號(選填),填寫後若我們在 Twitter 推廣時可提及您",
|
|
373
|
+
"website": "您個人網站或其他網站的連結(選填)"
|
|
374
|
+
},
|
|
375
|
+
"errors": {
|
|
376
|
+
"required": "必填",
|
|
377
|
+
"website": "請輸入有效的 URL"
|
|
378
|
+
},
|
|
379
|
+
"noteDescription": "送出您的資料庫後將被包含於<link>公開資料庫 repository</link>以利他人在其繪圖中使用。",
|
|
380
|
+
"noteGuidelines": "資料庫需先經人工審查。請閱讀<link>說明文件</link>再送出。若需溝通與修改時要透過 GitHub 帳號來進行,但並非強制需求。",
|
|
381
|
+
"noteLicense": "送出即代表您同意此資料庫將發布時使用 <link>MIT 授權,</link>簡單來說是指任何人都能不受限制的使用。",
|
|
382
|
+
"noteItems": "每個資料庫項目都有獨立的名稱故可篩選。會包含下列資料庫項目:",
|
|
383
|
+
"atleastOneLibItem": "請選擇至少一項資料庫項目",
|
|
384
|
+
"republishWarning": "注意:部分選取中的物件先前已發布/送出過。建議僅在要更新現存資料庫或已送出的物件時才重新送出這些物件。"
|
|
385
|
+
},
|
|
386
|
+
"publishSuccessDialog": {
|
|
387
|
+
"title": "資料庫已送出",
|
|
388
|
+
"content": "感謝 {{authorName}} 。您的資料庫已送出待審查。您可查看目前狀態<link>在此</link>"
|
|
389
|
+
},
|
|
390
|
+
"confirmDialog": {
|
|
391
|
+
"resetLibrary": "重設資料庫",
|
|
392
|
+
"removeItemsFromLib": "從資料庫移除所選的項目"
|
|
393
|
+
},
|
|
394
|
+
"imageExportDialog": {
|
|
395
|
+
"header": "匯出圖片",
|
|
396
|
+
"label": {
|
|
397
|
+
"withBackground": "背景",
|
|
398
|
+
"onlySelected": "僅選取物件",
|
|
399
|
+
"darkMode": "深色模式",
|
|
400
|
+
"embedScene": "嵌入場景",
|
|
401
|
+
"scale": "縮放比例",
|
|
402
|
+
"padding": "內間距"
|
|
403
|
+
},
|
|
404
|
+
"tooltip": {
|
|
405
|
+
"embedScene": "用於回復場景的場景資料會被包含在輸出的 PNG/SVG 檔案中。\n會增加輸出的檔案大小。"
|
|
406
|
+
},
|
|
407
|
+
"title": {
|
|
408
|
+
"exportToPng": "輸出成 PNG",
|
|
409
|
+
"exportToSvg": "輸出成 SVG",
|
|
410
|
+
"copyPngToClipboard": "複製 PNG 至剪貼簿"
|
|
411
|
+
},
|
|
412
|
+
"button": {
|
|
413
|
+
"exportToPng": "PNG",
|
|
414
|
+
"exportToSvg": "SVG",
|
|
415
|
+
"copyPngToClipboard": "複製至剪貼簿"
|
|
416
|
+
}
|
|
417
|
+
},
|
|
418
|
+
"encrypted": {
|
|
419
|
+
"tooltip": "你的作品已使用 end-to-end 方式加密,Excalidraw 的伺服器也無法取得其內容。",
|
|
420
|
+
"link": "Excalidraw 端到端加密的相關部落格文章"
|
|
421
|
+
},
|
|
422
|
+
"stats": {
|
|
423
|
+
"angle": "角度",
|
|
424
|
+
"element": "元素",
|
|
425
|
+
"elements": "元素",
|
|
426
|
+
"height": "高度",
|
|
427
|
+
"scene": "場景",
|
|
428
|
+
"selected": "已選",
|
|
429
|
+
"storage": "儲存",
|
|
430
|
+
"title": "詳細統計",
|
|
431
|
+
"total": "合計",
|
|
432
|
+
"version": "版本",
|
|
433
|
+
"versionCopy": "點擊複製",
|
|
434
|
+
"versionNotAvailable": "無法取得版本",
|
|
435
|
+
"width": "寬度"
|
|
436
|
+
},
|
|
437
|
+
"toast": {
|
|
438
|
+
"addedToLibrary": "加入資料庫",
|
|
439
|
+
"copyStyles": "已複製樣式",
|
|
440
|
+
"copyToClipboard": "複製至剪貼簿。",
|
|
441
|
+
"copyToClipboardAsPng": "以 PNG 格式將 {{exportSelection}} 複製至剪貼簿\n({{exportColorScheme}})",
|
|
442
|
+
"fileSaved": "已儲存檔案。",
|
|
443
|
+
"fileSavedToFilename": "儲存為 {filename}",
|
|
444
|
+
"canvas": "畫布",
|
|
445
|
+
"selection": "已選項目",
|
|
446
|
+
"pasteAsSingleElement": "使用 {{shortcut}} 以做為單一物件貼上,\n或貼上至現有的文字編輯器",
|
|
447
|
+
"unableToEmbed": "目前不允許嵌入此網址。您可至 GitHub 提出 issue 以要求將此網址加入合格名單。",
|
|
448
|
+
"unrecognizedLinkFormat": "您嵌入的連結格式不符。請嘗試貼入原網站所提供的「嵌入」字串。"
|
|
449
|
+
},
|
|
450
|
+
"colors": {
|
|
451
|
+
"transparent": "透明",
|
|
452
|
+
"black": "黑",
|
|
453
|
+
"white": "白",
|
|
454
|
+
"red": "紅",
|
|
455
|
+
"pink": "粉紅",
|
|
456
|
+
"grape": "深紫",
|
|
457
|
+
"violet": "藍紫",
|
|
458
|
+
"gray": "灰",
|
|
459
|
+
"blue": "藍",
|
|
460
|
+
"cyan": "青",
|
|
461
|
+
"teal": "藍綠",
|
|
462
|
+
"green": "綠",
|
|
463
|
+
"yellow": "黃",
|
|
464
|
+
"orange": "橘",
|
|
465
|
+
"bronze": "銅"
|
|
466
|
+
},
|
|
467
|
+
"welcomeScreen": {
|
|
468
|
+
"app": {
|
|
469
|
+
"center_heading": "所有資料皆已在瀏覽器中儲存於本機",
|
|
470
|
+
"center_heading_plus": "您是否是要前往 Excalidraw+ ?",
|
|
471
|
+
"menuHint": "輸出、偏好設定、語言..."
|
|
472
|
+
},
|
|
473
|
+
"defaults": {
|
|
474
|
+
"menuHint": "輸出、偏好設定及其他...",
|
|
475
|
+
"center_heading": "圖表。製作。超簡單。",
|
|
476
|
+
"toolbarHint": "選個工具開始畫圖吧!",
|
|
477
|
+
"helpHint": "快速鍵與說明"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"colorPicker": {
|
|
481
|
+
"mostUsedCustomColors": "最常使用的自訂顏色",
|
|
482
|
+
"colors": "顏色",
|
|
483
|
+
"shades": "漸變色",
|
|
484
|
+
"hexCode": "Hex 碼",
|
|
485
|
+
"noShades": "沒有此顏色的漸變色"
|
|
486
|
+
},
|
|
487
|
+
"overwriteConfirm": {
|
|
488
|
+
"action": {
|
|
489
|
+
"exportToImage": {
|
|
490
|
+
"title": "匯出為圖片",
|
|
491
|
+
"button": "匯出為圖片",
|
|
492
|
+
"description": "將場景匯出為可供匯入的圖片檔案"
|
|
493
|
+
},
|
|
494
|
+
"saveToDisk": {
|
|
495
|
+
"title": "儲存至硬碟",
|
|
496
|
+
"button": "儲存至硬碟",
|
|
497
|
+
"description": "將場景匯出為可供匯入的檔案"
|
|
498
|
+
},
|
|
499
|
+
"excalidrawPlus": {
|
|
500
|
+
"title": "Excalidraw+",
|
|
501
|
+
"button": "匯出至 Excalidraw+",
|
|
502
|
+
"description": "將此場景儲存至您的 Excalidraw+ 工作區"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"modal": {
|
|
506
|
+
"loadFromFile": {
|
|
507
|
+
"title": "從檔案載入",
|
|
508
|
+
"button": "從檔案載入",
|
|
509
|
+
"description": "從檔案載入將<bold>取代您目前的內容</bold>。<br></br>可先使用下方的選項備份您的繪圖。"
|
|
510
|
+
},
|
|
511
|
+
"shareableLink": {
|
|
512
|
+
"title": "從連結載入",
|
|
513
|
+
"button": "取代我的內容",
|
|
514
|
+
"description": "載入外部繪圖將<bold>取代您目前的內容</bold>。<br></br>可先使用下方的選項備份您的繪圖。"
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"mermaid": {
|
|
519
|
+
"title": "Mermaid 至 Excalidraw",
|
|
520
|
+
"button": "插入",
|
|
521
|
+
"description": "目前僅支援 <flowchartLink>Flowchart</flowchartLink> 、 <sequenceLink>Sequence</sequenceLink> 及 <classLink>Class </classLink> 圖表。其餘檔案類型在 Excalidraw 將會以圖像呈現。",
|
|
522
|
+
"syntax": "Mermaid 語法",
|
|
523
|
+
"preview": "預覽"
|
|
524
|
+
}
|
|
525
|
+
}
|