@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.
- package/CHANGELOG.md +20 -0
- package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js → vendor-94b72f67bbf2d6c0da4f.js} +2 -2
- package/dist/excalidraw-assets-dev/{vendor-2466bf62a35e940e8f28.js → vendor-4b7e1a9df5f218d0a300.js} +2 -2
- package/dist/excalidraw-with-preact.development.js +30 -19
- package/dist/excalidraw-with-preact.production.min.js +1 -1
- package/dist/excalidraw.development.js +178 -156
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/excalidraw.production.min.js.LICENSE.txt +10 -0
- package/package.json +1 -1
- package/types/actions/actionAddToLibrary.d.ts +12 -9
- package/types/actions/actionBoundText.d.ts +8 -6
- package/types/actions/actionCanvas.d.ts +44 -33
- package/types/actions/actionClipboard.d.ts +28 -21
- package/types/actions/actionDeleteSelected.d.ts +12 -9
- package/types/actions/actionElementLock.d.ts +8 -6
- package/types/actions/actionExport.d.ts +32 -24
- package/types/actions/actionFinalize.d.ts +8 -6
- package/types/actions/actionFrame.d.ts +12 -9
- package/types/actions/actionGroup.d.ts +8 -6
- package/types/actions/actionLinearEditor.d.ts +4 -3
- package/types/actions/actionMenu.d.ts +8 -6
- package/types/actions/actionProperties.d.ts +52 -39
- package/types/actions/actionSelectAll.d.ts +4 -3
- package/types/actions/actionStyles.d.ts +4 -3
- package/types/actions/actionToggleGridMode.d.ts +4 -3
- package/types/actions/actionToggleObjectsSnapMode.d.ts +4 -3
- package/types/actions/actionToggleStats.d.ts +4 -3
- package/types/actions/actionToggleViewMode.d.ts +4 -3
- package/types/actions/actionToggleZenMode.d.ts +4 -3
- package/types/components/MagicSettings.d.ts +1 -1
- package/types/components/TTDDialog/TTDDialog.d.ts +1 -1
- package/types/components/TTDDialog/TTDDialogPanel.d.ts +2 -1
- package/types/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -0
- package/types/components/TTDDialog/TTDDialogTabs.d.ts +8 -3
- package/types/components/TTDDialog/common.d.ts +3 -4
- package/types/constants.d.ts +1 -0
- package/types/element/Hyperlink.d.ts +4 -3
- package/types/element/embeddable.d.ts +4 -3
- package/types/element/linearElementEditor.d.ts +4 -3
- package/types/packages/excalidraw/dist/excalidraw.development.d.ts +2 -2
- package/types/packages/excalidraw/webpack.preact.config.d.ts +127 -23
- package/types/types.d.ts +3 -2
- /package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js.LICENSE.txt → vendor-94b72f67bbf2d6c0da4f.js.LICENSE.txt} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.d.ts → vendor-94b72f67bbf2d6c0da4f.d.ts} +0 -0
- /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
|