@zsviczian/excalidraw 0.18.113-beta.0 → 0.18.113-beta.2

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 (83) hide show
  1. package/dist/excalidraw.development.js +135 -102
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/styles.development.css +36 -0
  4. package/dist/styles.production.css +2 -1
  5. package/package.json +1 -1
  6. package/types/common/src/points.d.ts +1 -1
  7. package/types/element/src/Scene.d.ts +1 -1
  8. package/types/element/src/align.d.ts +2 -2
  9. package/types/element/src/binding.d.ts +9 -7
  10. package/types/element/src/bounds.d.ts +5 -5
  11. package/types/element/src/collision.d.ts +1 -1
  12. package/types/element/src/distribute.d.ts +2 -2
  13. package/types/element/src/duplicate.d.ts +3 -3
  14. package/types/element/src/embeddable.d.ts +2 -2
  15. package/types/element/src/flowchart.d.ts +3 -3
  16. package/types/element/src/fractionalIndex.d.ts +2 -2
  17. package/types/element/src/frame.d.ts +4 -4
  18. package/types/element/src/groups.d.ts +7 -7
  19. package/types/element/src/index.d.ts +1 -1
  20. package/types/element/src/linearElementEditor.d.ts +10 -10
  21. package/types/element/src/renderElement.d.ts +0 -3
  22. package/types/element/src/resizeElements.d.ts +1 -1
  23. package/types/element/src/selection.d.ts +5 -5
  24. package/types/element/src/textElement.d.ts +7 -7
  25. package/types/element/src/transform.d.ts +2 -2
  26. package/types/element/src/typeChecks.d.ts +25 -25
  27. package/types/element/src/types.d.ts +2 -1
  28. package/types/element/src/zindex.d.ts +2 -2
  29. package/types/excalidraw/actions/actionAddToLibrary.d.ts +3 -3
  30. package/types/excalidraw/actions/actionAlign.d.ts +6 -6
  31. package/types/excalidraw/actions/actionBoundText.d.ts +2 -2
  32. package/types/excalidraw/actions/actionCanvas.d.ts +12 -12
  33. package/types/excalidraw/actions/actionClipboard.d.ts +2 -2
  34. package/types/excalidraw/actions/actionCropEditor.d.ts +1 -1
  35. package/types/excalidraw/actions/actionDeleteSelected.d.ts +4 -4
  36. package/types/excalidraw/actions/actionDeselect.d.ts +1 -1
  37. package/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  38. package/types/excalidraw/actions/actionElementLink.d.ts +1 -1
  39. package/types/excalidraw/actions/actionElementLock.d.ts +2 -2
  40. package/types/excalidraw/actions/actionEmbeddable.d.ts +1 -1
  41. package/types/excalidraw/actions/actionExport.d.ts +4 -4
  42. package/types/excalidraw/actions/actionFrame.d.ts +4 -4
  43. package/types/excalidraw/actions/actionGroup.d.ts +2 -2
  44. package/types/excalidraw/actions/actionLinearEditor.d.ts +1 -1
  45. package/types/excalidraw/actions/actionLink.d.ts +1 -1
  46. package/types/excalidraw/actions/actionMenu.d.ts +1 -1
  47. package/types/excalidraw/actions/actionProperties.d.ts +26 -26
  48. package/types/excalidraw/actions/actionSelectAll.d.ts +6 -6
  49. package/types/excalidraw/actions/actionStyles.d.ts +1 -1
  50. package/types/excalidraw/actions/actionToggleArrowBinding.d.ts +1 -1
  51. package/types/excalidraw/actions/actionToggleGridMode.d.ts +1 -1
  52. package/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +1 -1
  53. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +1 -1
  54. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +1 -1
  55. package/types/excalidraw/actions/actionToggleStats.d.ts +1 -1
  56. package/types/excalidraw/actions/actionToggleViewMode.d.ts +1 -1
  57. package/types/excalidraw/actions/actionToggleZenMode.d.ts +1 -1
  58. package/types/excalidraw/actions/actionTrayMenu.d.ts +1 -1
  59. package/types/excalidraw/appState.d.ts +4 -4
  60. package/types/excalidraw/components/Actions.d.ts +15 -3
  61. package/types/excalidraw/components/App.d.ts +12 -1
  62. package/types/excalidraw/components/ConvertElementTypePopup.d.ts +1 -1
  63. package/types/excalidraw/components/CursorHint.d.ts +46 -0
  64. package/types/excalidraw/components/Stats/Angle.d.ts +2 -2
  65. package/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
  66. package/types/excalidraw/components/Stats/DragInput.d.ts +2 -2
  67. package/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
  68. package/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
  69. package/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
  70. package/types/excalidraw/components/Stats/Position.d.ts +3 -3
  71. package/types/excalidraw/components/Stats/utils.d.ts +1 -1
  72. package/types/excalidraw/components/shapeActionPredicates.d.ts +37 -0
  73. package/types/excalidraw/data/blob.d.ts +6 -6
  74. package/types/excalidraw/data/index.d.ts +4 -4
  75. package/types/excalidraw/data/json.d.ts +9 -9
  76. package/types/excalidraw/scene/Renderer.d.ts +11 -11
  77. package/types/excalidraw/scene/export.d.ts +3 -3
  78. package/types/excalidraw/scene/types.d.ts +1 -1
  79. package/types/excalidraw/snapping.d.ts +7 -7
  80. package/types/excalidraw/types.d.ts +6 -4
  81. package/types/excalidraw/viewport.d.ts +1 -1
  82. package/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -3
  83. package/types/utils/src/export.d.ts +3 -3

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.