@excalidraw/excalidraw 0.17.0-fe75f29 → 0.17.1-4bdeaf9

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 (45) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js → vendor-94b72f67bbf2d6c0da4f.js} +2 -2
  3. package/dist/excalidraw-assets-dev/{vendor-2466bf62a35e940e8f28.js → vendor-4b7e1a9df5f218d0a300.js} +2 -2
  4. package/dist/excalidraw-with-preact.development.js +30 -19
  5. package/dist/excalidraw-with-preact.production.min.js +1 -1
  6. package/dist/excalidraw.development.js +178 -156
  7. package/dist/excalidraw.production.min.js +1 -1
  8. package/dist/excalidraw.production.min.js.LICENSE.txt +10 -0
  9. package/package.json +1 -1
  10. package/types/actions/actionAddToLibrary.d.ts +12 -9
  11. package/types/actions/actionBoundText.d.ts +8 -6
  12. package/types/actions/actionCanvas.d.ts +44 -33
  13. package/types/actions/actionClipboard.d.ts +28 -21
  14. package/types/actions/actionDeleteSelected.d.ts +12 -9
  15. package/types/actions/actionElementLock.d.ts +8 -6
  16. package/types/actions/actionExport.d.ts +32 -24
  17. package/types/actions/actionFinalize.d.ts +8 -6
  18. package/types/actions/actionFrame.d.ts +12 -9
  19. package/types/actions/actionGroup.d.ts +8 -6
  20. package/types/actions/actionLinearEditor.d.ts +4 -3
  21. package/types/actions/actionMenu.d.ts +8 -6
  22. package/types/actions/actionProperties.d.ts +52 -39
  23. package/types/actions/actionSelectAll.d.ts +4 -3
  24. package/types/actions/actionStyles.d.ts +4 -3
  25. package/types/actions/actionToggleGridMode.d.ts +4 -3
  26. package/types/actions/actionToggleObjectsSnapMode.d.ts +4 -3
  27. package/types/actions/actionToggleStats.d.ts +4 -3
  28. package/types/actions/actionToggleViewMode.d.ts +4 -3
  29. package/types/actions/actionToggleZenMode.d.ts +4 -3
  30. package/types/components/MagicSettings.d.ts +1 -1
  31. package/types/components/TTDDialog/TTDDialog.d.ts +1 -1
  32. package/types/components/TTDDialog/TTDDialogPanel.d.ts +2 -1
  33. package/types/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -0
  34. package/types/components/TTDDialog/TTDDialogTabs.d.ts +8 -3
  35. package/types/components/TTDDialog/common.d.ts +3 -4
  36. package/types/constants.d.ts +1 -0
  37. package/types/element/Hyperlink.d.ts +4 -3
  38. package/types/element/embeddable.d.ts +4 -3
  39. package/types/element/linearElementEditor.d.ts +4 -3
  40. package/types/packages/excalidraw/dist/excalidraw.development.d.ts +2 -2
  41. package/types/packages/excalidraw/webpack.preact.config.d.ts +127 -23
  42. package/types/types.d.ts +3 -2
  43. /package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js.LICENSE.txt → vendor-94b72f67bbf2d6c0da4f.js.LICENSE.txt} +0 -0
  44. /package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.d.ts → vendor-94b72f67bbf2d6c0da4f.d.ts} +0 -0
  45. /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-2466bf62a35e940e8f28.d.ts → vendor-4b7e1a9df5f218d0a300.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -17,6 +17,26 @@ Please add the latest change on the top under the correct section.
17
17
 
18
18
  - `appState.openDialog` type was changed from `null | string` to `null | { name: string }`. [#7336](https://github.com/excalidraw/excalidraw/pull/7336)
19
19
 
20
+ ## 0.17.1 (2023-11-28)
21
+
22
+ ### Fixes
23
+
24
+ - Umd build for browser since it was breaking in v0.17.0 [#7349](https://github.com/excalidraw/excalidraw/pull/7349). Also make sure that when using `Vite`, the `process.env.IS_PREACT` is set as `"true"` (string) and not a boolean.
25
+
26
+ ```
27
+ define: {
28
+ "process.env.IS_PREACT": JSON.stringify("true"),
29
+ }
30
+ ```
31
+
32
+ ## Excalidraw Library
33
+
34
+ ### Fixes
35
+
36
+ - Disable caching bounds for arrow labels [#7343](https://github.com/excalidraw/excalidraw/pull/7343)
37
+
38
+ ---
39
+
20
40
  ## 0.17.0 (2023-11-14)
21
41
 
22
42
  ### Features