@excalidraw/excalidraw 0.16.0-f8b3692 → 0.16.1-26ff399

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 (62) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/excalidraw.development.js +149 -39
  3. package/dist/excalidraw.production.min.js +1 -1
  4. package/package.json +1 -1
  5. package/types/actions/actionAddToLibrary.d.ts +24 -24
  6. package/types/actions/actionAlign.d.ts +8 -8
  7. package/types/actions/actionBoundText.d.ts +16 -16
  8. package/types/actions/actionCanvas.d.ts +112 -112
  9. package/types/actions/actionClipboard.d.ts +44 -44
  10. package/types/actions/actionDeleteSelected.d.ts +26 -26
  11. package/types/actions/actionDistribute.d.ts +4 -4
  12. package/types/actions/actionDuplicateSelection.d.ts +2 -2
  13. package/types/actions/actionElementLock.d.ts +18 -18
  14. package/types/actions/actionExport.d.ts +87 -87
  15. package/types/actions/actionFinalize.d.ts +18 -18
  16. package/types/actions/actionFlip.d.ts +4 -4
  17. package/types/actions/actionFrame.d.ts +26 -26
  18. package/types/actions/actionGroup.d.ts +20 -20
  19. package/types/actions/actionLinearEditor.d.ts +8 -8
  20. package/types/actions/actionMenu.d.ts +26 -26
  21. package/types/actions/actionProperties.d.ts +108 -108
  22. package/types/actions/actionSelectAll.d.ts +10 -10
  23. package/types/actions/actionStyles.d.ts +12 -12
  24. package/types/actions/actionToggleGridMode.d.ts +10 -10
  25. package/types/actions/actionToggleObjectsSnapMode.d.ts +137 -0
  26. package/types/actions/actionToggleStats.d.ts +10 -10
  27. package/types/actions/actionToggleViewMode.d.ts +10 -10
  28. package/types/actions/actionToggleZenMode.d.ts +10 -10
  29. package/types/actions/actionZindex.d.ts +8 -8
  30. package/types/actions/index.d.ts +1 -0
  31. package/types/actions/shortcuts.d.ts +1 -1
  32. package/types/actions/types.d.ts +1 -1
  33. package/types/appState.d.ts +6 -11
  34. package/types/components/Actions.d.ts +3 -4
  35. package/types/components/App.d.ts +14 -5
  36. package/types/components/LaserTool/LaserPathManager.d.ts +28 -0
  37. package/types/components/LaserTool/LaserPointerButton.d.ts +10 -0
  38. package/types/components/LaserTool/LaserTool.d.ts +7 -0
  39. package/types/components/LayerUI.d.ts +2 -1
  40. package/types/components/Sidebar/Sidebar.d.ts +1 -1
  41. package/types/components/Stack.d.ts +2 -2
  42. package/types/components/dropdownMenu/DropdownMenu.d.ts +6 -3
  43. package/types/components/dropdownMenu/DropdownMenuItem.d.ts +2 -1
  44. package/types/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -1
  45. package/types/components/dropdownMenu/DropdownMenuItemLink.d.ts +2 -1
  46. package/types/components/dropdownMenu/common.d.ts +1 -1
  47. package/types/components/icons.d.ts +2 -0
  48. package/types/components/main-menu/MainMenu.d.ts +6 -3
  49. package/types/cursor.d.ts +5 -0
  50. package/types/element/Hyperlink.d.ts +10 -10
  51. package/types/element/bounds.d.ts +4 -5
  52. package/types/element/dragElements.d.ts +11 -2
  53. package/types/element/embeddable.d.ts +8 -8
  54. package/types/element/linearElementEditor.d.ts +8 -8
  55. package/types/element/resizeElements.d.ts +2 -2
  56. package/types/keys.d.ts +1 -0
  57. package/types/math.d.ts +2 -0
  58. package/types/renderer/renderSnaps.d.ts +2 -0
  59. package/types/scene/selection.d.ts +1 -0
  60. package/types/snapping.d.ts +108 -0
  61. package/types/types.d.ts +31 -16
  62. package/types/utils.d.ts +3 -8
package/CHANGELOG.md CHANGED
@@ -11,6 +11,28 @@ The change should be grouped under one of the below section and must contain PR
11
11
  Please add the latest change on the top under the correct section.
12
12
  -->
13
13
 
14
+ ## Unreleased
15
+
16
+ ### Features
17
+
18
+ - Add `selected` prop for `MainMenu.Item` and `MainMenu.ItemCustom` components to indicate active state. [7078](https://github.com/excalidraw/excalidraw/pull/7078)
19
+
20
+ ## 0.16.1 (2023-09-21)
21
+
22
+ ## Excalidraw Library
23
+
24
+ **_This section lists the updates made to the excalidraw library and will not affect the integration._**
25
+
26
+ ### Fixes
27
+
28
+ - More eye-droper fixes [#7019](https://github.com/excalidraw/excalidraw/pull/7019)
29
+
30
+ ### Refactor
31
+
32
+ - Move excalidraw-app outside src [#6987](https://github.com/excalidraw/excalidraw/pull/6987)
33
+
34
+ ---
35
+
14
36
  ## 0.16.0 (2023-09-19)
15
37
 
16
38
  - Support creating containers, linear elements, text containers, labelled arrows and arrow bindings programatically [#6546](https://github.com/excalidraw/excalidraw/pull/6546)