@zsviczian/excalidraw 0.18.113-beta.1 → 0.18.113-beta.3

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 (89) hide show
  1. package/dist/excalidraw.development.js +233 -167
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/styles.development.css +267 -452
  4. package/dist/styles.production.css +16 -17
  5. package/package.json +1 -1
  6. package/types/common/src/constants.d.ts +2 -0
  7. package/types/common/src/utils.d.ts +1 -1
  8. package/types/element/src/arrows/focus.d.ts +5 -2
  9. package/types/element/src/comparisons.d.ts +4 -4
  10. package/types/element/src/convertToShape.d.ts +23 -0
  11. package/types/element/src/flowchart.d.ts +6 -6
  12. package/types/element/src/groups.d.ts +1 -1
  13. package/types/element/src/index.d.ts +1 -0
  14. package/types/element/src/linearElementEditor.d.ts +1 -0
  15. package/types/element/src/selection.d.ts +1 -1
  16. package/types/excalidraw/actions/actionAddToLibrary.d.ts +3 -3
  17. package/types/excalidraw/actions/actionBoundText.d.ts +2 -2
  18. package/types/excalidraw/actions/actionCanvas.d.ts +35 -851
  19. package/types/excalidraw/actions/actionClipboard.d.ts +2 -2
  20. package/types/excalidraw/actions/actionCropEditor.d.ts +1 -1
  21. package/types/excalidraw/actions/actionDeleteSelected.d.ts +4 -3
  22. package/types/excalidraw/actions/actionDeselect.d.ts +1 -1
  23. package/types/excalidraw/actions/actionElementLink.d.ts +1 -1
  24. package/types/excalidraw/actions/actionElementLock.d.ts +2 -2
  25. package/types/excalidraw/actions/actionExport.d.ts +2 -2
  26. package/types/excalidraw/actions/actionFrame.d.ts +3 -217
  27. package/types/excalidraw/actions/actionGroup.d.ts +2 -2
  28. package/types/excalidraw/actions/actionLinearEditor.d.ts +2 -1
  29. package/types/excalidraw/actions/actionLink.d.ts +1 -1
  30. package/types/excalidraw/actions/actionMenu.d.ts +1 -1
  31. package/types/excalidraw/actions/actionProperties.d.ts +3 -3
  32. package/types/excalidraw/actions/actionSelectAll.d.ts +1 -1
  33. package/types/excalidraw/actions/actionStyles.d.ts +1 -1
  34. package/types/excalidraw/actions/actionToggleArrowBinding.d.ts +1 -1
  35. package/types/excalidraw/actions/actionToggleGridMode.d.ts +1 -1
  36. package/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +1 -1
  37. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +1 -1
  38. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +1 -1
  39. package/types/excalidraw/actions/actionToggleStats.d.ts +1 -1
  40. package/types/excalidraw/actions/actionToggleViewMode.d.ts +2 -2
  41. package/types/excalidraw/actions/actionToggleZenMode.d.ts +1 -1
  42. package/types/excalidraw/actions/actionTrayMenu.d.ts +1 -1
  43. package/types/excalidraw/actions/index.d.ts +0 -1
  44. package/types/excalidraw/actions/manager.d.ts +1 -0
  45. package/types/excalidraw/actions/shortcuts.d.ts +1 -1
  46. package/types/excalidraw/actions/types.d.ts +5 -1
  47. package/types/excalidraw/components/Actions.d.ts +16 -10
  48. package/types/excalidraw/components/App.cursor.d.ts +31 -0
  49. package/types/excalidraw/components/App.d.ts +146 -71
  50. package/types/excalidraw/components/App.drawshape.d.ts +55 -0
  51. package/types/excalidraw/components/App.flowchart.d.ts +21 -0
  52. package/types/excalidraw/components/App.viewport.d.ts +73 -0
  53. package/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
  54. package/types/excalidraw/components/ImageMenu.d.ts +14 -0
  55. package/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
  56. package/types/excalidraw/components/LayerUI.d.ts +4 -2
  57. package/types/excalidraw/components/LockButton.d.ts +3 -4
  58. package/types/excalidraw/components/MagicButton.d.ts +0 -2
  59. package/types/excalidraw/components/MobileMenu.d.ts +4 -4
  60. package/types/excalidraw/components/MobileToolbar.d.ts +9 -0
  61. package/types/excalidraw/components/PenModeButton.d.ts +2 -5
  62. package/types/excalidraw/components/Popover.d.ts +1 -3
  63. package/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
  64. package/types/excalidraw/components/ToolPopover.d.ts +3 -6
  65. package/types/excalidraw/components/Toolbar.d.ts +11 -0
  66. package/types/excalidraw/components/Tools.d.ts +145 -0
  67. package/types/excalidraw/components/TrayMenu.d.ts +1 -2
  68. package/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +2 -0
  69. package/types/excalidraw/components/footer/Footer.d.ts +3 -1
  70. package/types/excalidraw/components/icons.d.ts +1 -1
  71. package/types/excalidraw/components/main-menu/DefaultItems.d.ts +1 -1
  72. package/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
  73. package/types/excalidraw/components/shapeActionPredicates.d.ts +40 -0
  74. package/types/excalidraw/data/blob.d.ts +2 -2
  75. package/types/excalidraw/data/json.d.ts +1 -1
  76. package/types/excalidraw/drawShapeTrail.d.ts +16 -0
  77. package/types/excalidraw/scene/types.d.ts +3 -0
  78. package/types/excalidraw/types.d.ts +185 -11
  79. package/types/excalidraw/viewport.d.ts +16 -64
  80. package/types/laser-pointer/src/state.d.ts +1 -0
  81. package/types/math/src/index.d.ts +1 -0
  82. package/types/math/src/pca.d.ts +79 -0
  83. package/types/math/src/polygon.d.ts +25 -1
  84. package/types/excalidraw/actions/actionEmbeddable.d.ts +0 -212
  85. package/types/excalidraw/components/HandButton.d.ts +0 -10
  86. package/types/excalidraw/components/MobileToolBar.d.ts +0 -10
  87. package/types/excalidraw/components/shapes.d.ts +0 -249
  88. package/types/excalidraw/cursor.d.ts +0 -6
  89. package/types/excalidraw/scene/zoom.d.ts +0 -12

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.