@zsviczian/excalidraw 0.15.2-obsidian-4 → 0.15.2-obsidian-6

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 (73) hide show
  1. package/README.md +4 -0
  2. package/dist/excalidraw.development.js +273 -143
  3. package/dist/excalidraw.production.min.js +1 -1
  4. package/dist/excalidraw.production.min.js.LICENSE.txt +2 -0
  5. package/package.json +1 -1
  6. package/types/actions/actionAddToLibrary.d.ts +30 -3
  7. package/types/actions/actionAlign.d.ts +12 -6
  8. package/types/actions/actionBoundText.d.ts +21 -3
  9. package/types/actions/actionCanvas.d.ts +397 -17
  10. package/types/actions/actionClipboard.d.ts +47 -5
  11. package/types/actions/actionDeleteSelected.d.ts +27 -3
  12. package/types/actions/actionDistribute.d.ts +2 -2
  13. package/types/actions/actionElementLock.d.ts +21 -2
  14. package/types/actions/actionExport.d.ts +90 -9
  15. package/types/actions/actionFinalize.d.ts +20 -2
  16. package/types/actions/actionFlip.d.ts +2 -2
  17. package/types/actions/actionFrame.d.ts +475 -0
  18. package/types/actions/actionGroup.d.ts +2 -2
  19. package/types/actions/actionLinearEditor.d.ts +10 -1
  20. package/types/actions/actionMenu.d.ts +30 -3
  21. package/types/actions/actionNavigate.d.ts +1 -1
  22. package/types/actions/actionProperties.d.ts +130 -13
  23. package/types/actions/actionStyles.d.ts +10 -1
  24. package/types/actions/actionToggleGridMode.d.ts +10 -1
  25. package/types/actions/actionToggleStats.d.ts +10 -1
  26. package/types/actions/actionToggleViewMode.d.ts +10 -1
  27. package/types/actions/actionToggleZenMode.d.ts +10 -1
  28. package/types/actions/actionZindex.d.ts +4 -4
  29. package/types/actions/types.d.ts +1 -1
  30. package/types/appState.d.ts +1 -1
  31. package/types/clients.d.ts +1 -5
  32. package/types/components/App.d.ts +29 -2
  33. package/types/components/Avatar.d.ts +0 -1
  34. package/types/components/Dialog.d.ts +2 -1
  35. package/types/components/FilledButton.d.ts +2 -1
  36. package/types/components/OverwriteConfirm/OverwriteConfirm.d.ts +17 -0
  37. package/types/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +17 -0
  38. package/types/components/OverwriteConfirm/OverwriteConfirmState.d.ts +22 -0
  39. package/types/components/ToolButton.d.ts +2 -1
  40. package/types/components/dropdownMenu/DropdownMenu.d.ts +3 -2
  41. package/types/components/dropdownMenu/DropdownMenuTrigger.d.ts +4 -2
  42. package/types/components/icons.d.ts +4 -0
  43. package/types/components/main-menu/MainMenu.d.ts +3 -2
  44. package/types/constants.d.ts +23 -1
  45. package/types/context/tunnels.d.ts +1 -0
  46. package/types/data/url.d.ts +2 -0
  47. package/types/element/Hyperlink.d.ts +20 -7
  48. package/types/element/binding.d.ts +1 -1
  49. package/types/element/bounds.d.ts +31 -6
  50. package/types/element/collision.d.ts +7 -7
  51. package/types/element/dragElements.d.ts +2 -1
  52. package/types/element/iframe.d.ts +167 -0
  53. package/types/element/index.d.ts +3 -2
  54. package/types/element/linearElementEditor.d.ts +11 -2
  55. package/types/element/newElement.d.ts +7 -2
  56. package/types/element/transformHandles.d.ts +8 -1
  57. package/types/element/typeChecks.d.ts +5 -3
  58. package/types/element/types.d.ts +20 -4
  59. package/types/frame.d.ts +40 -0
  60. package/types/groups.d.ts +4 -0
  61. package/types/keys.d.ts +3 -0
  62. package/types/math.d.ts +1 -0
  63. package/types/packages/excalidraw/example/initialData.d.ts +6 -0
  64. package/types/packages/excalidraw/index.d.ts +1 -0
  65. package/types/renderer/renderElement.d.ts +3 -2
  66. package/types/renderer/renderScene.d.ts +12 -3
  67. package/types/renderer/roundRect.d.ts +1 -1
  68. package/types/scene/Scene.d.ts +8 -1
  69. package/types/scene/export.d.ts +1 -0
  70. package/types/scene/selection.d.ts +13 -3
  71. package/types/types.d.ts +38 -3
  72. package/types/utils.d.ts +46 -16
  73. package/types/zindex.d.ts +4 -4
package/README.md CHANGED
@@ -43,3 +43,7 @@ Head over to the [docs](https://docs.excalidraw.com/docs/@excalidraw/excalidraw/
43
43
  ## API
44
44
 
45
45
  Head over to the [docs](https://docs.excalidraw.com/docs/@excalidraw/excalidraw/api)
46
+
47
+ ## Contributing
48
+
49
+ Head over to the [docs](https://docs.excalidraw.com/docs/@excalidraw/excalidraw/contributing)