@zsviczian/excalidraw 0.15.2-obsidian-12 → 0.15.3-obsidian

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 (101) hide show
  1. package/dist/excalidraw.development.js +119 -42
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/package.json +1 -1
  4. package/types/actions/actionAddToLibrary.d.ts +12 -3
  5. package/types/actions/actionBoundText.d.ts +8 -2
  6. package/types/actions/actionCanvas.d.ts +48 -12
  7. package/types/actions/actionClipboard.d.ts +20 -5
  8. package/types/actions/actionDeleteSelected.d.ts +12 -3
  9. package/types/actions/actionElementLock.d.ts +8 -2
  10. package/types/actions/actionExport.d.ts +36 -9
  11. package/types/actions/actionFinalize.d.ts +9 -3
  12. package/types/actions/actionFrame.d.ts +12 -3
  13. package/types/actions/actionGroup.d.ts +291 -3
  14. package/types/actions/actionLinearEditor.d.ts +4 -1
  15. package/types/actions/actionMenu.d.ts +12 -3
  16. package/types/actions/actionProperties.d.ts +52 -13
  17. package/types/actions/actionSelectAll.d.ts +146 -1
  18. package/types/actions/actionStyles.d.ts +4 -1
  19. package/types/actions/actionToggleGridMode.d.ts +4 -1
  20. package/types/actions/actionToggleStats.d.ts +4 -1
  21. package/types/actions/actionToggleViewMode.d.ts +4 -1
  22. package/types/actions/actionToggleZenMode.d.ts +4 -1
  23. package/types/clipboard.d.ts +1 -0
  24. package/types/components/Actions.d.ts +2 -2
  25. package/types/components/App.d.ts +8 -6
  26. package/types/components/JSONExportDialog.d.ts +1 -1
  27. package/types/components/LayerUI.d.ts +3 -2
  28. package/types/components/MobileMenu.d.ts +2 -2
  29. package/types/components/canvases/InteractiveCanvas.d.ts +27 -0
  30. package/types/components/canvases/StaticCanvas.d.ts +18 -0
  31. package/types/components/canvases/index.d.ts +3 -0
  32. package/types/constants.d.ts +1 -0
  33. package/types/data/transform.d.ts +71 -0
  34. package/types/element/Hyperlink.d.ts +5 -2
  35. package/types/element/binding.d.ts +1 -0
  36. package/types/element/embeddable.d.ts +4 -1
  37. package/types/element/linearElementEditor.d.ts +7 -4
  38. package/types/element/newElement.d.ts +9 -5
  39. package/types/element/sizeHelpers.d.ts +8 -1
  40. package/types/element/textElement.d.ts +3 -1
  41. package/types/element/textWysiwyg.d.ts +1 -1
  42. package/types/element/transformHandles.d.ts +2 -2
  43. package/types/frame.d.ts +3 -3
  44. package/types/groups.d.ts +11 -11
  45. package/types/packages/excalidraw/example/initialData.d.ts +182 -70
  46. package/types/packages/excalidraw/index.d.ts +1 -0
  47. package/types/renderer/renderElement.d.ts +9 -21
  48. package/types/renderer/renderScene.d.ts +16 -36
  49. package/types/scene/Renderer.d.ts +25 -0
  50. package/types/scene/Scene.d.ts +2 -0
  51. package/types/scene/Shape.d.ts +12 -0
  52. package/types/scene/ShapeCache.d.ts +20 -0
  53. package/types/scene/scroll.d.ts +1 -1
  54. package/types/scene/scrollbars.d.ts +2 -6
  55. package/types/scene/selection.d.ts +2 -2
  56. package/types/scene/types.d.ts +57 -24
  57. package/types/types.d.ts +49 -4
  58. package/types/utils.d.ts +12 -4
  59. package/types/actions/actionToggleLock.d.ts +0 -139
  60. package/types/bug-issue-template.d.ts +0 -2
  61. package/types/components/ActiveFile.d.ts +0 -7
  62. package/types/components/BackgroundPickerAndDarkModeToggle.d.ts +0 -4
  63. package/types/components/ClearCanvas.d.ts +0 -4
  64. package/types/components/CollabButton.d.ts +0 -7
  65. package/types/components/ColorPicker.d.ts +0 -19
  66. package/types/components/EncryptedIcon.d.ts +0 -2
  67. package/types/components/Footer.d.ts +0 -10
  68. package/types/components/HelpIcon.d.ts +0 -8
  69. package/types/components/LibraryButton.d.ts +0 -8
  70. package/types/components/MenuItem.d.ts +0 -11
  71. package/types/components/MenuUtils.d.ts +0 -2
  72. package/types/components/SidebarLockButton.d.ts +0 -8
  73. package/types/components/SingleLibraryItem.d.ts +0 -10
  74. package/types/components/TopErrorBoundary.d.ts +0 -15
  75. package/types/components/WelcomeScreen.d.ts +0 -8
  76. package/types/components/WelcomeScreenDecor.d.ts +0 -6
  77. package/types/components/context/tunnels.d.ts +0 -16
  78. package/types/components/hoc/withUpstreamOverride.d.ts +0 -10
  79. package/types/components/mainMenu/DefaultItems.d.ts +0 -44
  80. package/types/components/mainMenu/MainMenu.d.ts +0 -63
  81. package/types/element/iframe.d.ts +0 -167
  82. package/types/excalidraw-app/CustomStats.d.ts +0 -9
  83. package/types/excalidraw-app/app_constants.d.ts +0 -32
  84. package/types/excalidraw-app/collab/Collab.d.ts +0 -163
  85. package/types/excalidraw-app/collab/Portal.d.ts +0 -28
  86. package/types/excalidraw-app/collab/RoomDialog.d.ts +0 -13
  87. package/types/excalidraw-app/collab/reconciliation.d.ts +0 -10
  88. package/types/excalidraw-app/components/ExportToExcalidrawPlus.d.ts +0 -9
  89. package/types/excalidraw-app/components/LanguageList.d.ts +0 -4
  90. package/types/excalidraw-app/components/icons.d.ts +0 -1
  91. package/types/excalidraw-app/data/FileManager.d.ts +0 -66
  92. package/types/excalidraw-app/data/LocalData.d.ts +0 -32
  93. package/types/excalidraw-app/data/Locker.d.ts +0 -8
  94. package/types/excalidraw-app/data/firebase.d.ts +0 -25
  95. package/types/excalidraw-app/data/index.d.ts +0 -190
  96. package/types/excalidraw-app/data/localStorage.d.ts +0 -116
  97. package/types/excalidraw-app/data/tabSync.d.ts +0 -9
  98. package/types/excalidraw-app/index.d.ts +0 -26
  99. package/types/packages/common.webpack.dev.config.d.ts +0 -72
  100. package/types/packages/common.webpack.prod.config.d.ts +0 -84
  101. package/types/packages/excalidraw/example/sidebar/Sidebar.d.ts +0 -5

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.