@dwelle/excalidraw 0.4.0-cfd6fb7 → 0.4.0-d8d86cf

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.
Files changed (116) hide show
  1. package/CHANGELOG.md +100 -756
  2. package/README.md +85 -25
  3. package/dist/excalidraw-assets/Assistant-Bold.woff2 +0 -0
  4. package/dist/excalidraw-assets/Assistant-Medium.woff2 +0 -0
  5. package/dist/excalidraw-assets/Assistant-Regular.woff2 +0 -0
  6. package/dist/excalidraw-assets/Assistant-SemiBold.woff2 +0 -0
  7. package/dist/excalidraw-assets/vendor-2002fe1b8862917b36c1.js +2 -0
  8. package/dist/excalidraw-assets/{vendor-52b1f3361986b6c6a4fe.js.LICENSE.txt → vendor-2002fe1b8862917b36c1.js.LICENSE.txt} +0 -0
  9. package/dist/excalidraw-assets-dev/Assistant-Bold.woff2 +0 -0
  10. package/dist/excalidraw-assets-dev/Assistant-Medium.woff2 +0 -0
  11. package/dist/excalidraw-assets-dev/Assistant-Regular.woff2 +0 -0
  12. package/dist/excalidraw-assets-dev/Assistant-SemiBold.woff2 +0 -0
  13. package/dist/excalidraw-assets-dev/{vendor-c0592035c3911af79359.js → vendor-e6df8519da951026ff69.js} +1 -1
  14. package/dist/excalidraw.development.js +649 -301
  15. package/dist/excalidraw.production.min.js +1 -1
  16. package/dist/excalidraw.production.min.js.LICENSE.txt +1 -8
  17. package/package.json +1 -1
  18. package/types/actions/actionAddToLibrary.d.ts +15 -12
  19. package/types/actions/actionAlign.d.ts +18 -6
  20. package/types/actions/actionBoundText.d.ts +5 -4
  21. package/types/actions/actionCanvas.d.ts +69 -47
  22. package/types/actions/actionClipboard.d.ts +35 -21
  23. package/types/actions/actionDeleteSelected.d.ts +28 -14
  24. package/types/actions/actionDistribute.d.ts +6 -2
  25. package/types/actions/actionDuplicateSelection.d.ts +3 -1
  26. package/types/actions/actionExport.d.ts +78 -53
  27. package/types/actions/actionFinalize.d.ts +13 -9
  28. package/types/actions/actionGroup.d.ts +6 -2
  29. package/types/actions/actionLinearEditor.d.ts +115 -0
  30. package/types/actions/actionMenu.d.ts +24 -15
  31. package/types/actions/actionNavigate.d.ts +3 -1
  32. package/types/actions/actionProperties.d.ts +104 -65
  33. package/types/actions/actionStyles.d.ts +5 -4
  34. package/types/actions/actionToggleGridMode.d.ts +5 -4
  35. package/types/actions/actionToggleLock.d.ts +5 -4
  36. package/types/actions/actionToggleStats.d.ts +5 -4
  37. package/types/actions/actionToggleViewMode.d.ts +5 -4
  38. package/types/actions/actionToggleZenMode.d.ts +5 -4
  39. package/types/actions/actionZindex.d.ts +12 -4
  40. package/types/actions/index.d.ts +1 -0
  41. package/types/actions/manager.d.ts +1 -1
  42. package/types/actions/shortcuts.d.ts +1 -1
  43. package/types/actions/types.d.ts +4 -2
  44. package/types/appState.d.ts +13 -12
  45. package/types/clients.d.ts +1 -1
  46. package/types/clipboard.d.ts +6 -1
  47. package/types/components/Actions.d.ts +13 -0
  48. package/types/components/App.d.ts +54 -2
  49. package/types/components/Avatar.d.ts +1 -1
  50. package/types/components/CollabButton.d.ts +2 -3
  51. package/types/components/DialogActionButton.d.ts +10 -0
  52. package/types/components/Footer.d.ts +10 -0
  53. package/types/components/HelpButton.d.ts +8 -0
  54. package/types/components/HintViewer.d.ts +3 -2
  55. package/types/components/HomeButton.d.ts +5 -0
  56. package/types/components/ImageExportDialog.d.ts +3 -1
  57. package/types/components/InitializeApp.d.ts +2 -0
  58. package/types/components/JSONExportDialog.d.ts +2 -2
  59. package/types/components/LayerUI.d.ts +6 -4
  60. package/types/components/LibraryButton.d.ts +1 -0
  61. package/types/components/LibraryMenu.d.ts +14 -5
  62. package/types/components/LibraryMenuBrowseButton.d.ts +7 -0
  63. package/types/components/LibraryMenuHeaderContent.d.ts +12 -0
  64. package/types/components/LibraryMenuItems.d.ts +5 -14
  65. package/types/components/LibraryUnit.d.ts +2 -3
  66. package/types/components/LoadingMessage.d.ts +2 -0
  67. package/types/components/MenuItem.d.ts +11 -0
  68. package/types/components/MenuUtils.d.ts +1 -0
  69. package/types/components/MobileMenu.d.ts +10 -9
  70. package/types/components/Sidebar/Sidebar.d.ts +73 -0
  71. package/types/components/Sidebar/SidebarHeader.d.ts +20 -0
  72. package/types/components/Sidebar/common.d.ts +16 -0
  73. package/types/components/Stats.d.ts +1 -1
  74. package/types/components/UserList.d.ts +0 -1
  75. package/types/components/WelcomeScreen.d.ts +10 -0
  76. package/types/components/WelcomeScreenDecor.d.ts +6 -0
  77. package/types/components/hoc/withUpstreamOverride.d.ts +10 -0
  78. package/types/components/icons.d.ts +81 -122
  79. package/types/constants.d.ts +15 -7
  80. package/types/data/blob.d.ts +1 -1
  81. package/types/data/restore.d.ts +1 -1
  82. package/types/data/types.d.ts +16 -1
  83. package/types/element/Hyperlink.d.ts +8 -5
  84. package/types/element/bounds.d.ts +2 -1
  85. package/types/element/image.d.ts +1 -1
  86. package/types/element/index.d.ts +1 -1
  87. package/types/element/linearElementEditor.d.ts +54 -14
  88. package/types/element/newElement.d.ts +16 -3
  89. package/types/element/resizeElements.d.ts +0 -1
  90. package/types/element/textElement.d.ts +23 -4
  91. package/types/element/transformHandles.d.ts +3 -4
  92. package/types/element/typeChecks.d.ts +1 -0
  93. package/types/element/types.d.ts +6 -3
  94. package/types/hooks/useOutsideClick.d.ts +2 -0
  95. package/types/keys.d.ts +13 -3
  96. package/types/math.d.ts +8 -1
  97. package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-52b1f3361986b6c6a4fe.d.ts → vendor-2002fe1b8862917b36c1.d.ts} +0 -0
  98. package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-c0592035c3911af79359.d.ts → vendor-e6df8519da951026ff69.d.ts} +0 -0
  99. package/types/packages/excalidraw/example/App.d.ts +2 -1
  100. package/types/packages/excalidraw/example/sidebar/{Sidebar.d.ts → ExampleSidebar.d.ts} +1 -1
  101. package/types/packages/excalidraw/index.d.ts +2 -1
  102. package/types/packages/utils.d.ts +4 -1
  103. package/types/renderer/renderElement.d.ts +4 -3
  104. package/types/renderer/renderScene.d.ts +1 -1
  105. package/types/scene/Fonts.d.ts +21 -0
  106. package/types/scene/Scene.d.ts +15 -0
  107. package/types/scene/comparisons.d.ts +1 -2
  108. package/types/scene/index.d.ts +1 -1
  109. package/types/scene/types.d.ts +1 -0
  110. package/types/shapes.d.ts +27 -3
  111. package/types/types.d.ts +32 -14
  112. package/dist/excalidraw-assets/vendor-52b1f3361986b6c6a4fe.js +0 -2
  113. package/types/components/BackgroundPickerAndDarkModeToggle.d.ts +0 -9
  114. package/types/components/Card.d.ts +0 -7
  115. package/types/components/HelpIcon.d.ts +0 -8
  116. package/types/components/SidebarLockButton.d.ts +0 -8

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.