@zsviczian/excalidraw 0.17.1-obsidian-20 → 0.17.1-obsidian-21

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 (82) hide show
  1. package/dist/excalidraw.development.js +190 -80
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/styles.development.css +78 -50
  4. package/dist/styles.production.css +5 -5
  5. package/package.json +2 -1
  6. package/types/excalidraw/actions/actionAddToLibrary.d.ts +4 -4
  7. package/types/excalidraw/actions/actionAlign.d.ts +20 -20
  8. package/types/excalidraw/actions/actionBoundText.d.ts +7 -7
  9. package/types/excalidraw/actions/actionCanvas.d.ts +65 -65
  10. package/types/excalidraw/actions/actionClipboard.d.ts +24 -24
  11. package/types/excalidraw/actions/actionDeleteSelected.d.ts +8 -8
  12. package/types/excalidraw/actions/actionDistribute.d.ts +8 -8
  13. package/types/excalidraw/actions/actionDuplicateSelection.d.ts +5 -6
  14. package/types/excalidraw/actions/actionElementLock.d.ts +8 -8
  15. package/types/excalidraw/actions/actionExport.d.ts +32 -32
  16. package/types/excalidraw/actions/actionFinalize.d.ts +8 -8
  17. package/types/excalidraw/actions/actionFlip.d.ts +9 -9
  18. package/types/excalidraw/actions/actionFrame.d.ts +14 -202
  19. package/types/excalidraw/actions/actionGroup.d.ts +11 -387
  20. package/types/excalidraw/actions/actionHistory.d.ts +3 -2
  21. package/types/excalidraw/actions/actionLinearEditor.d.ts +2 -2
  22. package/types/excalidraw/actions/actionLink.d.ts +5 -5
  23. package/types/excalidraw/actions/actionMenu.d.ts +8 -8
  24. package/types/excalidraw/actions/actionNavigate.d.ts +3 -3
  25. package/types/excalidraw/actions/actionProperties.d.ts +32 -32
  26. package/types/excalidraw/actions/actionSelectAll.d.ts +4 -4
  27. package/types/excalidraw/actions/actionStyles.d.ts +9 -12
  28. package/types/excalidraw/actions/actionToggleGridMode.d.ts +6 -4
  29. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +4 -4
  30. package/types/excalidraw/actions/actionToggleStats.d.ts +4 -4
  31. package/types/excalidraw/actions/actionToggleViewMode.d.ts +4 -4
  32. package/types/excalidraw/actions/actionToggleZenMode.d.ts +4 -4
  33. package/types/excalidraw/actions/actionZindex.d.ts +18 -19
  34. package/types/excalidraw/actions/manager.d.ts +3 -3
  35. package/types/excalidraw/actions/types.d.ts +4 -4
  36. package/types/excalidraw/appState.d.ts +4 -4
  37. package/types/excalidraw/change.d.ts +191 -0
  38. package/types/excalidraw/components/App.d.ts +22 -8
  39. package/types/excalidraw/components/RadioGroup.d.ts +2 -1
  40. package/types/excalidraw/components/ToolButton.d.ts +1 -0
  41. package/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +2 -1
  42. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +17 -0
  43. package/types/excalidraw/components/icons.d.ts +4 -0
  44. package/types/excalidraw/components/main-menu/DefaultItems.d.ts +12 -2
  45. package/types/excalidraw/constants.d.ts +3 -0
  46. package/types/excalidraw/data/reconcile.d.ts +6 -0
  47. package/types/excalidraw/data/restore.d.ts +3 -3
  48. package/types/excalidraw/data/transform.d.ts +1 -1
  49. package/types/excalidraw/data/url.d.ts +1 -0
  50. package/types/excalidraw/element/binding.d.ts +52 -9
  51. package/types/excalidraw/element/bounds.d.ts +0 -1
  52. package/types/excalidraw/element/collision.d.ts +14 -19
  53. package/types/excalidraw/element/embeddable.d.ts +7 -4
  54. package/types/excalidraw/element/index.d.ts +0 -1
  55. package/types/excalidraw/element/linearElementEditor.d.ts +12 -12
  56. package/types/excalidraw/element/mutateElement.d.ts +1 -2
  57. package/types/excalidraw/element/newElement.d.ts +1 -1
  58. package/types/excalidraw/element/resizeElements.d.ts +1 -1
  59. package/types/excalidraw/element/resizeTest.d.ts +4 -4
  60. package/types/excalidraw/element/textElement.d.ts +1 -2
  61. package/types/excalidraw/element/transformHandles.d.ts +22 -4
  62. package/types/excalidraw/element/typeChecks.d.ts +2 -2
  63. package/types/excalidraw/element/types.d.ts +22 -6
  64. package/types/excalidraw/errors.d.ts +3 -0
  65. package/types/excalidraw/fractionalIndex.d.ts +40 -0
  66. package/types/excalidraw/frame.d.ts +1 -1
  67. package/types/excalidraw/groups.d.ts +2 -0
  68. package/types/excalidraw/history.d.ts +34 -46
  69. package/types/excalidraw/hooks/useEmitter.d.ts +2 -0
  70. package/types/excalidraw/index.d.ts +2 -0
  71. package/types/excalidraw/renderer/interactiveScene.d.ts +1 -1
  72. package/types/excalidraw/scene/Scene.d.ts +7 -6
  73. package/types/excalidraw/scene/types.d.ts +2 -1
  74. package/types/excalidraw/store.d.ts +99 -0
  75. package/types/excalidraw/types.d.ts +18 -4
  76. package/types/excalidraw/utils.d.ts +7 -0
  77. package/types/excalidraw/webpack.prod.config.d.ts +1 -1
  78. package/types/excalidraw/zindex.d.ts +2 -2
  79. package/types/utils/collision.d.ts +4 -0
  80. package/types/utils/export.d.ts +2 -2
  81. package/types/utils/geometry/geometry.d.ts +71 -0
  82. package/types/utils/geometry/shape.d.ts +56 -0

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.