@zsviczian/excalidraw 0.18.112 → 0.18.113-beta.1

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 (92) hide show
  1. package/dist/excalidraw.development.js +149 -138
  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 -9
  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 +9 -9
  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 +6 -3
  30. package/types/excalidraw/actions/actionAlign.d.ts +6 -6
  31. package/types/excalidraw/actions/actionBoundText.d.ts +4 -2
  32. package/types/excalidraw/actions/actionCanvas.d.ts +48 -463
  33. package/types/excalidraw/actions/actionClipboard.d.ts +4 -2
  34. package/types/excalidraw/actions/actionCropEditor.d.ts +2 -1
  35. package/types/excalidraw/actions/actionDeleteSelected.d.ts +7 -4
  36. package/types/excalidraw/actions/actionDeselect.d.ts +2 -1
  37. package/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  38. package/types/excalidraw/actions/actionElementLink.d.ts +2 -1
  39. package/types/excalidraw/actions/actionElementLock.d.ts +5 -3
  40. package/types/excalidraw/actions/actionEmbeddable.d.ts +2 -1
  41. package/types/excalidraw/actions/actionExport.d.ts +6 -4
  42. package/types/excalidraw/actions/actionFrame.d.ts +20 -16
  43. package/types/excalidraw/actions/actionGroup.d.ts +19 -17
  44. package/types/excalidraw/actions/actionLinearEditor.d.ts +4 -3
  45. package/types/excalidraw/actions/actionLink.d.ts +3 -2
  46. package/types/excalidraw/actions/actionMenu.d.ts +2 -1
  47. package/types/excalidraw/actions/actionProperties.d.ts +30 -27
  48. package/types/excalidraw/actions/actionSelectAll.d.ts +7 -6
  49. package/types/excalidraw/actions/actionStyles.d.ts +2 -1
  50. package/types/excalidraw/actions/actionToggleArrowBinding.d.ts +3 -2
  51. package/types/excalidraw/actions/actionToggleGridMode.d.ts +6 -6
  52. package/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +3 -2
  53. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +3 -2
  54. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +6 -6
  55. package/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  56. package/types/excalidraw/actions/actionToggleStats.d.ts +3 -2
  57. package/types/excalidraw/actions/actionToggleViewMode.d.ts +3 -2
  58. package/types/excalidraw/actions/actionToggleZenMode.d.ts +3 -2
  59. package/types/excalidraw/actions/actionTrayMenu.d.ts +2 -1
  60. package/types/excalidraw/actions/types.d.ts +3 -3
  61. package/types/excalidraw/appState.d.ts +4 -4
  62. package/types/excalidraw/components/Actions.d.ts +2 -3
  63. package/types/excalidraw/components/App.d.ts +62 -6
  64. package/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +2 -2
  65. package/types/excalidraw/components/ConvertElementTypePopup.d.ts +1 -1
  66. package/types/excalidraw/components/CursorHint.d.ts +46 -0
  67. package/types/excalidraw/components/Island.d.ts +7 -0
  68. package/types/excalidraw/components/Stats/Angle.d.ts +2 -2
  69. package/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
  70. package/types/excalidraw/components/Stats/DragInput.d.ts +2 -2
  71. package/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
  72. package/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
  73. package/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
  74. package/types/excalidraw/components/Stats/Position.d.ts +3 -3
  75. package/types/excalidraw/components/Stats/utils.d.ts +1 -1
  76. package/types/excalidraw/components/hyperlink/helpers.d.ts +2 -2
  77. package/types/excalidraw/data/blob.d.ts +8 -6
  78. package/types/excalidraw/data/index.d.ts +4 -4
  79. package/types/excalidraw/data/json.d.ts +10 -9
  80. package/types/excalidraw/index.d.ts +1 -1
  81. package/types/excalidraw/renderer/interactiveScene.d.ts +1 -3
  82. package/types/excalidraw/scene/Renderer.d.ts +11 -11
  83. package/types/excalidraw/scene/export.d.ts +3 -3
  84. package/types/excalidraw/scene/index.d.ts +1 -1
  85. package/types/excalidraw/scene/types.d.ts +1 -3
  86. package/types/excalidraw/snapping.d.ts +7 -7
  87. package/types/excalidraw/types.d.ts +151 -8
  88. package/types/excalidraw/viewport.d.ts +355 -0
  89. package/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -3
  90. package/types/utils/src/export.d.ts +3 -3
  91. package/types/excalidraw/scene/scroll.d.ts +0 -18
  92. package/types/excalidraw/scroll.d.ts +0 -46

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.