@dwelle/excalidraw 0.3.78 → 0.4.0-08c4fac
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/CHANGELOG.md +102 -754
- package/README.md +94 -26
- package/dist/excalidraw-assets/Assistant-Bold.woff2 +0 -0
- package/dist/excalidraw-assets/Assistant-Medium.woff2 +0 -0
- package/dist/excalidraw-assets/Assistant-Regular.woff2 +0 -0
- package/dist/excalidraw-assets/Assistant-SemiBold.woff2 +0 -0
- package/dist/excalidraw-assets/vendor-2002fe1b8862917b36c1.js +2 -0
- package/dist/excalidraw-assets/vendor-2002fe1b8862917b36c1.js.LICENSE.txt +12 -0
- package/dist/excalidraw-assets-dev/Assistant-Bold.woff2 +0 -0
- package/dist/excalidraw-assets-dev/Assistant-Medium.woff2 +0 -0
- package/dist/excalidraw-assets-dev/Assistant-Regular.woff2 +0 -0
- package/dist/excalidraw-assets-dev/Assistant-SemiBold.woff2 +0 -0
- package/dist/excalidraw-assets-dev/vendor-e6df8519da951026ff69.js +98 -0
- package/dist/excalidraw.development.js +1323 -1074
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/excalidraw.production.min.js.LICENSE.txt +2 -0
- package/package.json +2 -2
- package/types/actions/actionAddToLibrary.d.ts +314 -311
- package/types/actions/actionAlign.d.ts +103 -91
- package/types/actions/actionBoundText.d.ts +129 -128
- package/types/actions/actionCanvas.d.ts +923 -901
- package/types/actions/actionClipboard.d.ts +595 -589
- package/types/actions/actionDeleteSelected.d.ts +345 -339
- package/types/actions/actionDistribute.d.ts +37 -33
- package/types/actions/actionDuplicateSelection.d.ts +24 -22
- package/types/actions/actionExport.d.ts +1025 -1000
- package/types/actions/actionFinalize.d.ts +220 -216
- package/types/actions/actionFlip.d.ts +35 -35
- package/types/actions/actionGroup.d.ts +49 -45
- package/types/actions/actionHistory.d.ts +6 -6
- package/types/actions/actionLinearEditor.d.ts +115 -0
- package/types/actions/actionMenu.d.ts +358 -349
- package/types/actions/actionNavigate.d.ts +15 -13
- package/types/actions/actionProperties.d.ts +1493 -1454
- package/types/actions/actionSelectAll.d.ts +16 -16
- package/types/actions/actionStyles.d.ts +130 -129
- package/types/actions/actionToggleGridMode.d.ts +117 -116
- package/types/actions/actionToggleLock.d.ts +116 -115
- package/types/actions/actionToggleStats.d.ts +115 -114
- package/types/actions/actionToggleViewMode.d.ts +116 -115
- package/types/actions/actionToggleZenMode.d.ts +116 -115
- package/types/actions/actionZindex.d.ts +75 -67
- package/types/actions/index.d.ts +24 -23
- package/types/actions/manager.d.ts +20 -20
- package/types/actions/register.d.ts +5 -5
- package/types/actions/shortcuts.d.ts +3 -3
- package/types/actions/types.d.ts +42 -40
- package/types/align.d.ts +6 -6
- package/types/analytics.d.ts +1 -1
- package/types/appState.d.ts +77 -76
- package/types/charts.d.ts +27 -27
- package/types/clients.d.ts +6 -6
- package/types/clipboard.d.ts +20 -20
- package/types/colors.d.ts +6 -6
- package/types/components/Actions.d.ts +35 -23
- package/types/components/ActiveFile.d.ts +7 -7
- package/types/components/App.d.ts +420 -368
- package/types/components/Avatar.d.ts +11 -11
- package/types/components/ButtonIconSelect.d.ts +11 -11
- package/types/components/CheckboxItem.d.ts +8 -8
- package/types/components/ClearCanvas.d.ts +4 -4
- package/types/components/CollabButton.d.ts +6 -7
- package/types/components/ColorPicker.d.ts +14 -14
- package/types/components/ConfirmDialog.d.ts +10 -10
- package/types/components/ContextMenu.d.ts +28 -28
- package/types/components/DarkModeToggle.d.ts +7 -7
- package/types/components/Dialog.d.ts +14 -14
- package/types/components/DialogActionButton.d.ts +10 -0
- package/types/components/ErrorDialog.d.ts +4 -4
- package/types/components/FixedSideContainer.d.ts +9 -9
- package/types/components/Footer.d.ts +10 -0
- package/types/components/HelpButton.d.ts +8 -0
- package/types/components/HelpDialog.d.ts +4 -4
- package/types/components/HintViewer.d.ts +11 -10
- package/types/components/HomeButton.d.ts +5 -0
- package/types/components/IconPicker.d.ts +13 -13
- package/types/components/ImageExportDialog.d.ts +18 -16
- package/types/components/InitializeApp.d.ts +10 -8
- package/types/components/Island.d.ts +10 -10
- package/types/components/JSONExportDialog.d.ts +13 -13
- package/types/components/LayerUI.d.ts +40 -38
- package/types/components/LibraryButton.d.ts +8 -7
- package/types/components/LibraryMenu.d.ts +25 -17
- package/types/components/LibraryMenuBrowseButton.d.ts +7 -0
- package/types/components/LibraryMenuHeaderContent.d.ts +12 -0
- package/types/components/LibraryMenuItems.d.ts +15 -24
- package/types/components/LibraryUnit.d.ts +11 -12
- package/types/components/LoadingMessage.d.ts +6 -4
- package/types/components/LockButton.d.ts +11 -11
- package/types/components/MenuItem.d.ts +11 -0
- package/types/components/MenuUtils.d.ts +1 -0
- package/types/components/MobileMenu.d.ts +30 -29
- package/types/components/Modal.d.ts +12 -12
- package/types/components/PasteChartDialog.d.ts +9 -9
- package/types/components/PenModeButton.d.ts +12 -12
- package/types/components/Popover.d.ts +15 -15
- package/types/components/ProjectName.d.ts +10 -10
- package/types/components/PublishLibrary.d.ts +16 -16
- package/types/components/Section.d.ts +6 -6
- package/types/components/Sidebar/Sidebar.d.ts +73 -0
- package/types/components/Sidebar/SidebarHeader.d.ts +20 -0
- package/types/components/Sidebar/common.d.ts +16 -0
- package/types/components/SingleLibraryItem.d.ts +10 -10
- package/types/components/Spinner.d.ts +6 -6
- package/types/components/Stack.d.ts +15 -15
- package/types/components/Stats.d.ts +11 -11
- package/types/components/Toast.d.ts +7 -7
- package/types/components/ToolButton.d.ts +46 -46
- package/types/components/Tooltip.d.ts +17 -17
- package/types/components/UserList.d.ts +10 -11
- package/types/components/WelcomeScreen.d.ts +8 -0
- package/types/components/WelcomeScreenDecor.d.ts +6 -0
- package/types/components/hoc/withUpstreamOverride.d.ts +10 -0
- package/types/components/icons.d.ts +139 -180
- package/types/constants.d.ts +157 -149
- package/types/data/blob.d.ts +47 -47
- package/types/data/encode.d.ts +53 -53
- package/types/data/encryption.d.ts +9 -9
- package/types/data/filesystem.d.ts +18 -18
- package/types/data/image.d.ts +15 -15
- package/types/data/index.d.ts +13 -13
- package/types/data/json.d.ts +16 -16
- package/types/data/library.d.ts +96 -96
- package/types/data/resave.d.ts +5 -5
- package/types/data/restore.d.ts +15 -15
- package/types/data/types.d.ts +47 -32
- package/types/distribute.d.ts +6 -6
- package/types/element/Hyperlink.d.ts +138 -136
- package/types/element/binding.d.ts +33 -33
- package/types/element/bounds.d.ts +27 -27
- package/types/element/collision.d.ts +21 -21
- package/types/element/dragElements.d.ts +5 -5
- package/types/element/image.d.ts +22 -22
- package/types/element/index.d.ts +20 -20
- package/types/element/linearElementEditor.d.ts +223 -203
- package/types/element/mutateElement.d.ts +11 -11
- package/types/element/newElement.d.ts +63 -50
- package/types/element/resizeElements.d.ts +9 -9
- package/types/element/resizeTest.d.ts +13 -13
- package/types/element/showSelectedShapeActions.d.ts +3 -3
- package/types/element/sizeHelpers.d.ts +21 -21
- package/types/element/textElement.d.ts +30 -26
- package/types/element/textWysiwyg.d.ts +16 -16
- package/types/element/transformHandles.d.ts +29 -28
- package/types/element/typeChecks.d.ts +17 -17
- package/types/element/types.d.ts +134 -133
- package/types/emitter.d.ts +21 -21
- package/types/errors.d.ts +8 -8
- package/types/ga.d.ts +63 -63
- package/types/gadirections.d.ts +8 -8
- package/types/galines.d.ts +22 -22
- package/types/gapoints.d.ts +7 -7
- package/types/gatransforms.d.ts +10 -10
- package/types/gesture.d.ts +6 -6
- package/types/groups.d.ts +27 -27
- package/types/history.d.ts +52 -52
- package/types/hooks/useCallbackRefState.d.ts +1 -1
- package/types/hooks/useOutsideClick.d.ts +2 -0
- package/types/i18n.d.ts +15 -15
- package/types/jotai.d.ts +122 -122
- package/types/keys.d.ts +68 -68
- package/types/math.d.ts +27 -20
- package/types/packages/excalidraw/dist/{excalidraw-assets-dev/image-469d5bd946743969995a.d.ts → excalidraw-assets/vendor-2002fe1b8862917b36c1.d.ts} +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/{image-028ba554a42cc8a4995a.d.ts → vendor-e6df8519da951026ff69.d.ts} +0 -0
- package/types/packages/excalidraw/dist/excalidraw.development.d.ts +2 -2
- package/types/packages/excalidraw/dist/excalidraw.production.min.d.ts +1 -5
- package/types/packages/excalidraw/entry.d.ts +1 -1
- package/types/packages/excalidraw/env.d.ts +1 -1
- package/types/packages/excalidraw/example/App.d.ts +8 -7
- package/types/packages/excalidraw/example/index.d.ts +1 -1
- package/types/packages/excalidraw/example/initialData.d.ts +172 -172
- package/types/packages/excalidraw/example/sidebar/{Sidebar.d.ts → ExampleSidebar.d.ts} +5 -5
- package/types/packages/excalidraw/index.d.ts +19 -18
- package/types/packages/excalidraw/main.d.ts +2 -2
- package/types/packages/excalidraw/publicPath.d.ts +1 -1
- package/types/packages/excalidraw/webpack.dev-server.config.d.ts +19 -19
- package/types/packages/excalidraw/webpack.dev.config.d.ts +79 -79
- package/types/packages/excalidraw/webpack.prod.config.d.ts +92 -92
- package/types/packages/utils.d.ts +35 -32
- package/types/points.d.ts +7 -6
- package/types/polyfill.d.ts +2 -0
- package/types/random.d.ts +3 -3
- package/types/renderer/renderElement.d.ts +35 -35
- package/types/renderer/renderScene.d.ts +41 -25
- package/types/renderer/roundRect.d.ts +11 -11
- package/types/scene/Scene.d.ts +25 -25
- package/types/scene/comparisons.d.ts +11 -11
- package/types/scene/export.d.ts +20 -20
- package/types/scene/index.d.ts +5 -5
- package/types/scene/scroll.d.ts +17 -17
- package/types/scene/scrollbars.d.ts +16 -16
- package/types/scene/selection.d.ts +11 -11
- package/types/scene/types.d.ts +59 -58
- package/types/scene/zoom.d.ts +13 -13
- package/types/shapes.d.ts +52 -38
- package/types/types.d.ts +399 -393
- package/types/utils.d.ts +136 -136
- package/types/zindex.d.ts +6 -6
- package/dist/excalidraw-assets/vendor-b9b3a25c026c138e55b2.js +0 -2
- package/dist/excalidraw-assets/vendor-b9b3a25c026c138e55b2.js.LICENSE.txt +0 -6
- package/dist/excalidraw-assets-dev/vendor-33bd21df77fc9cda16d2.js +0 -98
- package/types/actions/actionUnbindText.d.ts +0 -11
- package/types/components/BackgroundPickerAndDarkModeToggle.d.ts +0 -9
- package/types/components/Card.d.ts +0 -7
- package/types/components/HelpIcon.d.ts +0 -8
- package/types/components/SidebarLockButton.d.ts +0 -8
- package/types/disitrubte.d.ts +0 -6
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ar-SA-json-9a3fdf94110439c2826a.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ar-SA-json-efd63375f9605b72c4af.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-bg-BG-json-047db6df7a74c0298938.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-bg-BG-json-35c0e8b92b0dba8a4e6d.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ca-ES-json-6acefe26cfe1d2f12349.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ca-ES-json-9924fbd53652d5f15134.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-cs-CZ-json-85a469d813bb069829e7.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-de-DE-json-a52c17c4bd1b1db22464.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-de-DE-json-f85a8a52534c04c3f3b8.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-el-GR-json-060595a09e0004e33936.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-el-GR-json-3b209ec86ca2ce69bdfa.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-es-ES-json-32dc3bf0f789ef18e65d.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-es-ES-json-af5c541f9ac1526a9eb7.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fa-IR-json-7ee232d4ef08da0903f6.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fa-IR-json-c732ff7772327332c259.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fi-FI-json-46abeda8d809d4091924.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fi-FI-json-c1d5c5510660a11a428e.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fr-FR-json-6a418571305eecefe9bc.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-fr-FR-json-79fa555bfea0a356f393.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-he-IL-json-157ae036fcf470528687.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-he-IL-json-d006423b531ab062bb85.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-hi-IN-json-3035c3b3ab3ce981dbc7.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-hi-IN-json-d959b869453c591a8861.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-hu-HU-json-50a13e322a60bb701615.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-hu-HU-json-a366989217753fe3d02b.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-id-ID-json-87212daac6113b5bf808.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-id-ID-json-8d13d29ee41be15a1f99.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-it-IT-json-59f2e9d3dac07f3264cb.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-it-IT-json-90283cd2809f4165506b.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ja-JP-json-9e0a78ddb43d5709fb29.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ja-JP-json-ccb5ffd0f8a0980c2ec0.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-kab-KAB-json-d9acc7b8ee952e356d06.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-kab-KAB-json-dac787e0446cdb747fe1.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ko-KR-json-d61af373bea59d1ff4c6.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ko-KR-json-e42ededaa35032a201b9.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-lv-LV-json-07f6bffcb44fdd9aad4f.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-lv-LV-json-7eea5c4054f8418fdd10.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-my-MM-json-26d1e27bab3b8ac4a3e6.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-my-MM-json-a8f9bb37a7b947e9dfba.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nb-NO-json-8ce0749d46f0b4a8defb.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nb-NO-json-c01fab8602e1b658d5d1.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nl-NL-json-23fdfd9f11bc8efbaf56.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nl-NL-json-cf922daa828029c1aff5.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nn-NO-json-b5931de6e1ed336bf087.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-nn-NO-json-d363be6b3dcdbf3a868a.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-oc-FR-json-29d6193adb907d4f5890.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-oc-FR-json-c6414107ad634b113aba.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pa-IN-json-27063e4865142ac11b1a.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pa-IN-json-f0c779291da384fb5173.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pl-PL-json-16af1b83ac16af57ad07.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pl-PL-json-a4a5c6e0a9877c43476a.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pt-BR-json-03a046855063512eb9ff.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pt-BR-json-db86828d6e3ced9f9854.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pt-PT-json-7ed352e9de6dc74ef503.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-pt-PT-json-bc0cd589bd87a3079407.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ro-RO-json-75692b7a0166d6ad27a4.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ro-RO-json-f13a2e7b7a63fbfb6ae7.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ru-RU-json-69b1a919b7f42adfd6ec.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-ru-RU-json-7c2a2061d0ca99cf7007.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-sk-SK-json-0ef09f90308059d22ae8.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-sk-SK-json-4757551ceb15fa0a29a9.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-sv-SE-json-dc7718d79b9bf93a4ba4.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-sv-SE-json-fa5bd09f128972b13ac2.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-tr-TR-json-b574833ee1c2f58fd24e.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-tr-TR-json-cba7e62d9610795a5ac3.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-uk-UA-json-a9a8ea7adb95c0a03680.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-uk-UA-json-f0cab296bdc4089ffa77.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-zh-CN-json-45da9983459601b845e8.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-zh-CN-json-94f562845a945a45e385.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-zh-TW-json-0e77c896018bcd221bf6.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/i18n-zh-TW-json-7dd3d9ba72493687c286.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-02a1f3ecd6baf42daaa6.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-0db17e06143a31f9772b.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-2be1c869cd5bacebdc3c.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-46f5e8e621bfedbf6d91.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-6f8d3b9873832b5f7a67.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-8e0c265e832504f62477.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-9592159c56d563857679.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-98a7b39bd21998c69c4b.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-a26261fb8a718f15853e.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-a97adda58b4c4d8d0107.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-af02967a8a4c328f2713.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-bd5991c772b4867c8d27.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-c198828284ec0dba28dc.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-eac20119cbc2ceb81523.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/image-eafab0c39ce13f7fea67.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-0e2ecbd1f46fc190ec01.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-1018b0a7e7e60d808384.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-405364e1fdefedf5d3d7.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-448ccb79e58765b61834.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-585a4c89d479fd91edeb.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-64ea3ed78bc76a895e61.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-6644c8f79d52085cf653.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-807e23d7531555236936.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-8698157b56eb5e0ee549.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-aed19b6e017f9f736254.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-b088910ac1ba8853a571.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-b9b3a25c026c138e55b2.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-cb708a4580b007d81177.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-ce466849186c701b6c48.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets/vendor-e5c6cd57013e8e575a61.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-664005f0b02c93342b89.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-73be8b3c1837ea26950c.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-821afe7d20de2d2ca898.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-8825d180ee32659f8996.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-89cddf27ef982ca154dc.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-9f771c114a0a3ad7b334.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-a98d24ea9aa42940a0df.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-b2befe1e2a0424a41fb3.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-cacb3d0c02eb2e346ecc.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-d7e941a51c2e0a7b3c23.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-e50a452aa26d28419e39.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-eddc6ed66acd3a3f3d46.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/image-f696fa36e3535df5e97a.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-0454f90696ac835aeb45.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-1bc8ceaafd8623c96dd4.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-26ccabf52930f0ce0ffd.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-33bd21df77fc9cda16d2.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-4534d6e506404cef7a9e.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-5d1c4700bd0fa2109ab5.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-7664c12c379862ed98a5.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-7fcb99cece261da4983f.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-86b56a69e7dddcf8f70d.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-a449655791956f151f51.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-bb07a412033591d5470d.d.ts +0 -0
- package/types/packages/excalidraw/dist/excalidraw-assets-dev/vendor-ec7db14ff9ba640888c4.d.ts +0 -0
- package/types/renderer/index.d.ts +0 -1
|
@@ -1,172 +1,172 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
const elements: ({
|
|
3
|
-
type: string;
|
|
4
|
-
version: number;
|
|
5
|
-
versionNonce: number;
|
|
6
|
-
isDeleted: boolean;
|
|
7
|
-
id: string;
|
|
8
|
-
fillStyle: string;
|
|
9
|
-
strokeWidth: number;
|
|
10
|
-
strokeStyle: string;
|
|
11
|
-
roughness: number;
|
|
12
|
-
opacity: number;
|
|
13
|
-
angle: number;
|
|
14
|
-
x: number;
|
|
15
|
-
y: number;
|
|
16
|
-
strokeColor: string;
|
|
17
|
-
backgroundColor: string;
|
|
18
|
-
width: number;
|
|
19
|
-
height: number;
|
|
20
|
-
seed: number;
|
|
21
|
-
groupIds: never[];
|
|
22
|
-
fileId?: undefined;
|
|
23
|
-
strokeSharpness?: undefined;
|
|
24
|
-
boundElements?: undefined;
|
|
25
|
-
updated?: undefined;
|
|
26
|
-
link?: undefined;
|
|
27
|
-
status?: undefined;
|
|
28
|
-
scale?: undefined;
|
|
29
|
-
} | {
|
|
30
|
-
fileId: string;
|
|
31
|
-
type: string;
|
|
32
|
-
x: number;
|
|
33
|
-
y: number;
|
|
34
|
-
width: number;
|
|
35
|
-
height: number;
|
|
36
|
-
angle: number;
|
|
37
|
-
strokeColor: string;
|
|
38
|
-
backgroundColor: string;
|
|
39
|
-
fillStyle: string;
|
|
40
|
-
strokeWidth: number;
|
|
41
|
-
strokeStyle: string;
|
|
42
|
-
roughness: number;
|
|
43
|
-
opacity: number;
|
|
44
|
-
groupIds: never[];
|
|
45
|
-
strokeSharpness: string;
|
|
46
|
-
seed: number;
|
|
47
|
-
version: number;
|
|
48
|
-
versionNonce: number;
|
|
49
|
-
isDeleted: boolean;
|
|
50
|
-
boundElements: null;
|
|
51
|
-
updated: number;
|
|
52
|
-
link: null;
|
|
53
|
-
status: string;
|
|
54
|
-
scale: number[];
|
|
55
|
-
id?: undefined;
|
|
56
|
-
})[];
|
|
57
|
-
namespace appState {
|
|
58
|
-
const viewBackgroundColor: string;
|
|
59
|
-
const currentItemFontFamily: number;
|
|
60
|
-
}
|
|
61
|
-
const scrollToContent: boolean;
|
|
62
|
-
const libraryItems: (({
|
|
63
|
-
type: string;
|
|
64
|
-
version: number;
|
|
65
|
-
versionNonce: number;
|
|
66
|
-
isDeleted: boolean;
|
|
67
|
-
id: string;
|
|
68
|
-
fillStyle: string;
|
|
69
|
-
strokeWidth: number;
|
|
70
|
-
strokeStyle: string;
|
|
71
|
-
roughness: number;
|
|
72
|
-
opacity: number;
|
|
73
|
-
angle: number;
|
|
74
|
-
x: number;
|
|
75
|
-
y: number;
|
|
76
|
-
strokeColor: string;
|
|
77
|
-
backgroundColor: string;
|
|
78
|
-
width: number;
|
|
79
|
-
height: number;
|
|
80
|
-
seed: number;
|
|
81
|
-
groupIds: string[];
|
|
82
|
-
strokeSharpness: string;
|
|
83
|
-
boundElementIds: never[];
|
|
84
|
-
startBinding: null;
|
|
85
|
-
endBinding: null;
|
|
86
|
-
points: number[][];
|
|
87
|
-
lastCommittedPoint: null;
|
|
88
|
-
startArrowhead: null;
|
|
89
|
-
endArrowhead: null;
|
|
90
|
-
} | {
|
|
91
|
-
type: string;
|
|
92
|
-
version: number;
|
|
93
|
-
versionNonce: number;
|
|
94
|
-
isDeleted: boolean;
|
|
95
|
-
id: string;
|
|
96
|
-
fillStyle: string;
|
|
97
|
-
strokeWidth: number;
|
|
98
|
-
strokeStyle: string;
|
|
99
|
-
roughness: number;
|
|
100
|
-
opacity: number;
|
|
101
|
-
angle: number;
|
|
102
|
-
x: number;
|
|
103
|
-
y: number;
|
|
104
|
-
strokeColor: string;
|
|
105
|
-
backgroundColor: string;
|
|
106
|
-
width: number;
|
|
107
|
-
height: number;
|
|
108
|
-
seed: number;
|
|
109
|
-
groupIds: string[];
|
|
110
|
-
strokeSharpness: string;
|
|
111
|
-
boundElementIds: string[];
|
|
112
|
-
startBinding?: undefined;
|
|
113
|
-
endBinding?: undefined;
|
|
114
|
-
points?: undefined;
|
|
115
|
-
lastCommittedPoint?: undefined;
|
|
116
|
-
startArrowhead?: undefined;
|
|
117
|
-
endArrowhead?: undefined;
|
|
118
|
-
})[] | ({
|
|
119
|
-
type: string;
|
|
120
|
-
version: number;
|
|
121
|
-
versionNonce: number;
|
|
122
|
-
isDeleted: boolean;
|
|
123
|
-
id: string;
|
|
124
|
-
fillStyle: string;
|
|
125
|
-
strokeWidth: number;
|
|
126
|
-
strokeStyle: string;
|
|
127
|
-
roughness: number;
|
|
128
|
-
opacity: number;
|
|
129
|
-
angle: number;
|
|
130
|
-
x: number;
|
|
131
|
-
y: number;
|
|
132
|
-
strokeColor: string;
|
|
133
|
-
backgroundColor: string;
|
|
134
|
-
width: number;
|
|
135
|
-
height: number;
|
|
136
|
-
seed: number;
|
|
137
|
-
groupIds: string[];
|
|
138
|
-
strokeSharpness: string;
|
|
139
|
-
boundElementIds: string[];
|
|
140
|
-
points?: undefined;
|
|
141
|
-
lastCommittedPoint?: undefined;
|
|
142
|
-
startArrowhead?: undefined;
|
|
143
|
-
endArrowhead?: undefined;
|
|
144
|
-
} | {
|
|
145
|
-
type: string;
|
|
146
|
-
version: number;
|
|
147
|
-
versionNonce: number;
|
|
148
|
-
isDeleted: boolean;
|
|
149
|
-
id: string;
|
|
150
|
-
fillStyle: string;
|
|
151
|
-
strokeWidth: number;
|
|
152
|
-
strokeStyle: string;
|
|
153
|
-
roughness: number;
|
|
154
|
-
opacity: number;
|
|
155
|
-
angle: number;
|
|
156
|
-
x: number;
|
|
157
|
-
y: number;
|
|
158
|
-
strokeColor: string;
|
|
159
|
-
backgroundColor: string;
|
|
160
|
-
width: number;
|
|
161
|
-
height: number;
|
|
162
|
-
seed: number;
|
|
163
|
-
groupIds: string[];
|
|
164
|
-
strokeSharpness: string;
|
|
165
|
-
boundElementIds: never[];
|
|
166
|
-
points: number[][];
|
|
167
|
-
lastCommittedPoint: null;
|
|
168
|
-
startArrowhead: null;
|
|
169
|
-
endArrowhead: null;
|
|
170
|
-
})[])[];
|
|
171
|
-
}
|
|
172
|
-
export default _default;
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
const elements: ({
|
|
3
|
+
type: string;
|
|
4
|
+
version: number;
|
|
5
|
+
versionNonce: number;
|
|
6
|
+
isDeleted: boolean;
|
|
7
|
+
id: string;
|
|
8
|
+
fillStyle: string;
|
|
9
|
+
strokeWidth: number;
|
|
10
|
+
strokeStyle: string;
|
|
11
|
+
roughness: number;
|
|
12
|
+
opacity: number;
|
|
13
|
+
angle: number;
|
|
14
|
+
x: number;
|
|
15
|
+
y: number;
|
|
16
|
+
strokeColor: string;
|
|
17
|
+
backgroundColor: string;
|
|
18
|
+
width: number;
|
|
19
|
+
height: number;
|
|
20
|
+
seed: number;
|
|
21
|
+
groupIds: never[];
|
|
22
|
+
fileId?: undefined;
|
|
23
|
+
strokeSharpness?: undefined;
|
|
24
|
+
boundElements?: undefined;
|
|
25
|
+
updated?: undefined;
|
|
26
|
+
link?: undefined;
|
|
27
|
+
status?: undefined;
|
|
28
|
+
scale?: undefined;
|
|
29
|
+
} | {
|
|
30
|
+
fileId: string;
|
|
31
|
+
type: string;
|
|
32
|
+
x: number;
|
|
33
|
+
y: number;
|
|
34
|
+
width: number;
|
|
35
|
+
height: number;
|
|
36
|
+
angle: number;
|
|
37
|
+
strokeColor: string;
|
|
38
|
+
backgroundColor: string;
|
|
39
|
+
fillStyle: string;
|
|
40
|
+
strokeWidth: number;
|
|
41
|
+
strokeStyle: string;
|
|
42
|
+
roughness: number;
|
|
43
|
+
opacity: number;
|
|
44
|
+
groupIds: never[];
|
|
45
|
+
strokeSharpness: string;
|
|
46
|
+
seed: number;
|
|
47
|
+
version: number;
|
|
48
|
+
versionNonce: number;
|
|
49
|
+
isDeleted: boolean;
|
|
50
|
+
boundElements: null;
|
|
51
|
+
updated: number;
|
|
52
|
+
link: null;
|
|
53
|
+
status: string;
|
|
54
|
+
scale: number[];
|
|
55
|
+
id?: undefined;
|
|
56
|
+
})[];
|
|
57
|
+
namespace appState {
|
|
58
|
+
const viewBackgroundColor: string;
|
|
59
|
+
const currentItemFontFamily: number;
|
|
60
|
+
}
|
|
61
|
+
const scrollToContent: boolean;
|
|
62
|
+
const libraryItems: (({
|
|
63
|
+
type: string;
|
|
64
|
+
version: number;
|
|
65
|
+
versionNonce: number;
|
|
66
|
+
isDeleted: boolean;
|
|
67
|
+
id: string;
|
|
68
|
+
fillStyle: string;
|
|
69
|
+
strokeWidth: number;
|
|
70
|
+
strokeStyle: string;
|
|
71
|
+
roughness: number;
|
|
72
|
+
opacity: number;
|
|
73
|
+
angle: number;
|
|
74
|
+
x: number;
|
|
75
|
+
y: number;
|
|
76
|
+
strokeColor: string;
|
|
77
|
+
backgroundColor: string;
|
|
78
|
+
width: number;
|
|
79
|
+
height: number;
|
|
80
|
+
seed: number;
|
|
81
|
+
groupIds: string[];
|
|
82
|
+
strokeSharpness: string;
|
|
83
|
+
boundElementIds: never[];
|
|
84
|
+
startBinding: null;
|
|
85
|
+
endBinding: null;
|
|
86
|
+
points: number[][];
|
|
87
|
+
lastCommittedPoint: null;
|
|
88
|
+
startArrowhead: null;
|
|
89
|
+
endArrowhead: null;
|
|
90
|
+
} | {
|
|
91
|
+
type: string;
|
|
92
|
+
version: number;
|
|
93
|
+
versionNonce: number;
|
|
94
|
+
isDeleted: boolean;
|
|
95
|
+
id: string;
|
|
96
|
+
fillStyle: string;
|
|
97
|
+
strokeWidth: number;
|
|
98
|
+
strokeStyle: string;
|
|
99
|
+
roughness: number;
|
|
100
|
+
opacity: number;
|
|
101
|
+
angle: number;
|
|
102
|
+
x: number;
|
|
103
|
+
y: number;
|
|
104
|
+
strokeColor: string;
|
|
105
|
+
backgroundColor: string;
|
|
106
|
+
width: number;
|
|
107
|
+
height: number;
|
|
108
|
+
seed: number;
|
|
109
|
+
groupIds: string[];
|
|
110
|
+
strokeSharpness: string;
|
|
111
|
+
boundElementIds: string[];
|
|
112
|
+
startBinding?: undefined;
|
|
113
|
+
endBinding?: undefined;
|
|
114
|
+
points?: undefined;
|
|
115
|
+
lastCommittedPoint?: undefined;
|
|
116
|
+
startArrowhead?: undefined;
|
|
117
|
+
endArrowhead?: undefined;
|
|
118
|
+
})[] | ({
|
|
119
|
+
type: string;
|
|
120
|
+
version: number;
|
|
121
|
+
versionNonce: number;
|
|
122
|
+
isDeleted: boolean;
|
|
123
|
+
id: string;
|
|
124
|
+
fillStyle: string;
|
|
125
|
+
strokeWidth: number;
|
|
126
|
+
strokeStyle: string;
|
|
127
|
+
roughness: number;
|
|
128
|
+
opacity: number;
|
|
129
|
+
angle: number;
|
|
130
|
+
x: number;
|
|
131
|
+
y: number;
|
|
132
|
+
strokeColor: string;
|
|
133
|
+
backgroundColor: string;
|
|
134
|
+
width: number;
|
|
135
|
+
height: number;
|
|
136
|
+
seed: number;
|
|
137
|
+
groupIds: string[];
|
|
138
|
+
strokeSharpness: string;
|
|
139
|
+
boundElementIds: string[];
|
|
140
|
+
points?: undefined;
|
|
141
|
+
lastCommittedPoint?: undefined;
|
|
142
|
+
startArrowhead?: undefined;
|
|
143
|
+
endArrowhead?: undefined;
|
|
144
|
+
} | {
|
|
145
|
+
type: string;
|
|
146
|
+
version: number;
|
|
147
|
+
versionNonce: number;
|
|
148
|
+
isDeleted: boolean;
|
|
149
|
+
id: string;
|
|
150
|
+
fillStyle: string;
|
|
151
|
+
strokeWidth: number;
|
|
152
|
+
strokeStyle: string;
|
|
153
|
+
roughness: number;
|
|
154
|
+
opacity: number;
|
|
155
|
+
angle: number;
|
|
156
|
+
x: number;
|
|
157
|
+
y: number;
|
|
158
|
+
strokeColor: string;
|
|
159
|
+
backgroundColor: string;
|
|
160
|
+
width: number;
|
|
161
|
+
height: number;
|
|
162
|
+
seed: number;
|
|
163
|
+
groupIds: string[];
|
|
164
|
+
strokeSharpness: string;
|
|
165
|
+
boundElementIds: never[];
|
|
166
|
+
points: number[][];
|
|
167
|
+
lastCommittedPoint: null;
|
|
168
|
+
startArrowhead: null;
|
|
169
|
+
endArrowhead: null;
|
|
170
|
+
})[])[];
|
|
171
|
+
}
|
|
172
|
+
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import "./
|
|
3
|
-
export default function Sidebar({ children }: {
|
|
4
|
-
children: React.ReactNode;
|
|
5
|
-
}): JSX.Element;
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "./ExampleSidebar.scss";
|
|
3
|
+
export default function Sidebar({ children }: {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}): JSX.Element;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import "../../css/app.scss";
|
|
3
|
-
import "../../css/styles.scss";
|
|
4
|
-
import { ExcalidrawAPIRefValue, ExcalidrawProps } from "../../types";
|
|
5
|
-
declare type PublicExcalidrawProps = Omit<ExcalidrawProps, "forwardedRef">;
|
|
6
|
-
export declare const Excalidraw: React.MemoExoticComponent<React.ForwardRefExoticComponent<PublicExcalidrawProps & React.RefAttributes<ExcalidrawAPIRefValue>>>;
|
|
7
|
-
export { getSceneVersion, isInvisiblySmallElement, getNonDeletedElements, } from "../../element";
|
|
8
|
-
export { defaultLang, languages } from "../../i18n";
|
|
9
|
-
export { restore, restoreAppState, restoreElements, restoreLibraryItems, } from "../../data/restore";
|
|
10
|
-
export {
|
|
11
|
-
export { isLinearElement } from "../../element/typeChecks";
|
|
12
|
-
export { FONT_FAMILY, THEME, MIME_TYPES } from "../../constants";
|
|
13
|
-
export { mutateElement, newElementWith, bumpVersion, } from "../../element/mutateElement";
|
|
14
|
-
export { parseLibraryTokensFromUrl, useHandleLibrary, } from "../../data/library";
|
|
15
|
-
export { sceneCoordsToViewportCoords, viewportCoordsToSceneCoords, } from "../../utils";
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "../../css/app.scss";
|
|
3
|
+
import "../../css/styles.scss";
|
|
4
|
+
import { ExcalidrawAPIRefValue, ExcalidrawProps } from "../../types";
|
|
5
|
+
declare type PublicExcalidrawProps = Omit<ExcalidrawProps, "forwardedRef">;
|
|
6
|
+
export declare const Excalidraw: React.MemoExoticComponent<React.ForwardRefExoticComponent<PublicExcalidrawProps & React.RefAttributes<ExcalidrawAPIRefValue>>>;
|
|
7
|
+
export { getSceneVersion, isInvisiblySmallElement, getNonDeletedElements, } from "../../element";
|
|
8
|
+
export { defaultLang, languages } from "../../i18n";
|
|
9
|
+
export { restore, restoreAppState, restoreElements, restoreLibraryItems, } from "../../data/restore";
|
|
10
|
+
export { exportToCanvas, exportToBlob, exportToSvg, serializeAsJSON, serializeLibraryAsJSON, loadLibraryFromBlob, loadFromBlob, loadSceneOrLibraryFromBlob, getFreeDrawSvgPath, exportToClipboard, mergeLibraryItems, } from "../../packages/utils";
|
|
11
|
+
export { isLinearElement } from "../../element/typeChecks";
|
|
12
|
+
export { FONT_FAMILY, THEME, MIME_TYPES } from "../../constants";
|
|
13
|
+
export { mutateElement, newElementWith, bumpVersion, } from "../../element/mutateElement";
|
|
14
|
+
export { parseLibraryTokensFromUrl, useHandleLibrary, } from "../../data/library";
|
|
15
|
+
export { sceneCoordsToViewportCoords, viewportCoordsToSceneCoords, } from "../../utils";
|
|
16
|
+
export { Sidebar } from "../../components/Sidebar/Sidebar";
|
|
17
|
+
export { getDefaultAppState, cleanAppStateForExport, clearAppStateForLocalStorage, } from "../../appState";
|
|
18
|
+
export { jotaiScope, jotaiStore } from "../../jotai";
|
|
19
|
+
export { libraryItemsAtom } from "../../data/library";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _exports: any;
|
|
2
|
-
export = _exports;
|
|
1
|
+
declare const _exports: any;
|
|
2
|
+
export = _exports;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {};
|
|
1
|
+
export {};
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export namespace entry {
|
|
2
|
-
const bundle: string;
|
|
3
|
-
}
|
|
4
|
-
export namespace devServer {
|
|
5
|
-
export const port: number;
|
|
6
|
-
export const host: string;
|
|
7
|
-
export const hot: boolean;
|
|
8
|
-
export const compress: boolean;
|
|
9
|
-
export namespace _static {
|
|
10
|
-
const directory: string;
|
|
11
|
-
}
|
|
12
|
-
export { _static as static };
|
|
13
|
-
export namespace client {
|
|
14
|
-
const progress: boolean;
|
|
15
|
-
const logging: string;
|
|
16
|
-
const overlay: boolean;
|
|
17
|
-
}
|
|
18
|
-
export const open: string[];
|
|
19
|
-
}
|
|
1
|
+
export namespace entry {
|
|
2
|
+
const bundle: string;
|
|
3
|
+
}
|
|
4
|
+
export namespace devServer {
|
|
5
|
+
export const port: number;
|
|
6
|
+
export const host: string;
|
|
7
|
+
export const hot: boolean;
|
|
8
|
+
export const compress: boolean;
|
|
9
|
+
export namespace _static {
|
|
10
|
+
const directory: string;
|
|
11
|
+
}
|
|
12
|
+
export { _static as static };
|
|
13
|
+
export namespace client {
|
|
14
|
+
const progress: boolean;
|
|
15
|
+
const logging: string;
|
|
16
|
+
const overlay: boolean;
|
|
17
|
+
}
|
|
18
|
+
export const open: string[];
|
|
19
|
+
}
|
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
import autoprefixer = require("autoprefixer");
|
|
2
|
-
import webpack = require("webpack");
|
|
3
|
-
export const mode: string;
|
|
4
|
-
export const devtool: boolean;
|
|
5
|
-
export const entry: {
|
|
6
|
-
"excalidraw.development": string;
|
|
7
|
-
};
|
|
8
|
-
export namespace output {
|
|
9
|
-
const path: string;
|
|
10
|
-
const library: string;
|
|
11
|
-
const libraryTarget: string;
|
|
12
|
-
const filename: string;
|
|
13
|
-
const chunkFilename: string;
|
|
14
|
-
const assetModuleFilename: string;
|
|
15
|
-
const publicPath: string;
|
|
16
|
-
}
|
|
17
|
-
export namespace resolve {
|
|
18
|
-
const extensions: string[];
|
|
19
|
-
}
|
|
20
|
-
export namespace module {
|
|
21
|
-
const rules: ({
|
|
22
|
-
test: RegExp;
|
|
23
|
-
exclude: RegExp;
|
|
24
|
-
use: (string | {
|
|
25
|
-
loader: string;
|
|
26
|
-
options?: undefined;
|
|
27
|
-
} | {
|
|
28
|
-
loader: string;
|
|
29
|
-
options: {
|
|
30
|
-
postcssOptions: {
|
|
31
|
-
plugins: (import("postcss").Plugin & autoprefixer.ExportedAPI)[];
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
})[];
|
|
35
|
-
type?: undefined;
|
|
36
|
-
} | {
|
|
37
|
-
test: RegExp;
|
|
38
|
-
exclude: RegExp;
|
|
39
|
-
use: {
|
|
40
|
-
loader: string;
|
|
41
|
-
options: {
|
|
42
|
-
transpileOnly: boolean;
|
|
43
|
-
configFile: string;
|
|
44
|
-
};
|
|
45
|
-
}[];
|
|
46
|
-
type?: undefined;
|
|
47
|
-
} | {
|
|
48
|
-
test: RegExp;
|
|
49
|
-
type: string;
|
|
50
|
-
exclude?: undefined;
|
|
51
|
-
use?: undefined;
|
|
52
|
-
})[];
|
|
53
|
-
}
|
|
54
|
-
export namespace optimization {
|
|
55
|
-
namespace splitChunks {
|
|
56
|
-
const chunks: string;
|
|
57
|
-
namespace cacheGroups {
|
|
58
|
-
namespace vendors {
|
|
59
|
-
const test: RegExp;
|
|
60
|
-
const name: string;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
export const plugins: (webpack.EvalSourceMapDevToolPlugin | webpack.DefinePlugin)[];
|
|
66
|
-
export const externals: {
|
|
67
|
-
react: {
|
|
68
|
-
root: string;
|
|
69
|
-
commonjs2: string;
|
|
70
|
-
commonjs: string;
|
|
71
|
-
amd: string;
|
|
72
|
-
};
|
|
73
|
-
"react-dom": {
|
|
74
|
-
root: string;
|
|
75
|
-
commonjs2: string;
|
|
76
|
-
commonjs: string;
|
|
77
|
-
amd: string;
|
|
78
|
-
};
|
|
79
|
-
};
|
|
1
|
+
import autoprefixer = require("autoprefixer");
|
|
2
|
+
import webpack = require("webpack");
|
|
3
|
+
export const mode: string;
|
|
4
|
+
export const devtool: boolean;
|
|
5
|
+
export const entry: {
|
|
6
|
+
"excalidraw.development": string;
|
|
7
|
+
};
|
|
8
|
+
export namespace output {
|
|
9
|
+
const path: string;
|
|
10
|
+
const library: string;
|
|
11
|
+
const libraryTarget: string;
|
|
12
|
+
const filename: string;
|
|
13
|
+
const chunkFilename: string;
|
|
14
|
+
const assetModuleFilename: string;
|
|
15
|
+
const publicPath: string;
|
|
16
|
+
}
|
|
17
|
+
export namespace resolve {
|
|
18
|
+
const extensions: string[];
|
|
19
|
+
}
|
|
20
|
+
export namespace module {
|
|
21
|
+
const rules: ({
|
|
22
|
+
test: RegExp;
|
|
23
|
+
exclude: RegExp;
|
|
24
|
+
use: (string | {
|
|
25
|
+
loader: string;
|
|
26
|
+
options?: undefined;
|
|
27
|
+
} | {
|
|
28
|
+
loader: string;
|
|
29
|
+
options: {
|
|
30
|
+
postcssOptions: {
|
|
31
|
+
plugins: (import("postcss").Plugin & autoprefixer.ExportedAPI)[];
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
})[];
|
|
35
|
+
type?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
test: RegExp;
|
|
38
|
+
exclude: RegExp;
|
|
39
|
+
use: {
|
|
40
|
+
loader: string;
|
|
41
|
+
options: {
|
|
42
|
+
transpileOnly: boolean;
|
|
43
|
+
configFile: string;
|
|
44
|
+
};
|
|
45
|
+
}[];
|
|
46
|
+
type?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
test: RegExp;
|
|
49
|
+
type: string;
|
|
50
|
+
exclude?: undefined;
|
|
51
|
+
use?: undefined;
|
|
52
|
+
})[];
|
|
53
|
+
}
|
|
54
|
+
export namespace optimization {
|
|
55
|
+
namespace splitChunks {
|
|
56
|
+
const chunks: string;
|
|
57
|
+
namespace cacheGroups {
|
|
58
|
+
namespace vendors {
|
|
59
|
+
const test: RegExp;
|
|
60
|
+
const name: string;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
export const plugins: (webpack.EvalSourceMapDevToolPlugin | webpack.DefinePlugin)[];
|
|
66
|
+
export const externals: {
|
|
67
|
+
react: {
|
|
68
|
+
root: string;
|
|
69
|
+
commonjs2: string;
|
|
70
|
+
commonjs: string;
|
|
71
|
+
amd: string;
|
|
72
|
+
};
|
|
73
|
+
"react-dom": {
|
|
74
|
+
root: string;
|
|
75
|
+
commonjs2: string;
|
|
76
|
+
commonjs: string;
|
|
77
|
+
amd: string;
|
|
78
|
+
};
|
|
79
|
+
};
|