@dwelle/excalidraw 0.3.33 → 0.3.34

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 CHANGED
@@ -66,10 +66,13 @@ Please add the latest change on the top under the correct section.
66
66
 
67
67
  ### Fixes
68
68
 
69
+ - Panning the canvas using `mousewheel-drag` and `space-drag` now prevents the browser from scrolling the container/page [#4489](https://github.com/excalidraw/excalidraw/pull/4489).
69
70
  - Scope drag and drop events to Excalidraw container to prevent overriding host application drag and drop events.
70
71
 
71
72
  ### Build
72
73
 
74
+ - Added an example to test and develop the package [locally](https://github.com/excalidraw/excalidraw/blob/master/src/packages/excalidraw/README.md#Development) using `yarn start`
75
+
73
76
  - Remove `file-loader` so font assets are not duplicated by webpack and use webpack asset modules for font generation [#4380](https://github.com/excalidraw/excalidraw/pull/4380)
74
77
 
75
78
  - We're now compiling to `es2017` target. Notably, `async/await` is not compiled down to generators. [#4341](https://github.com/excalidraw/excalidraw/pull/4341)
package/README_NEXT.md CHANGED
@@ -1008,3 +1008,21 @@ Defaults to `THEME.LIGHT` unless passed in `initialData.appState.theme`
1008
1008
  ## Need help?
1009
1009
 
1010
1010
  Check out the existing [Q&A](https://github.com/excalidraw/excalidraw/discussions?discussions_q=label%3Apackage%3Aexcalidraw). If you have any queries or need help, ask us [here](https://github.com/excalidraw/excalidraw/discussions?discussions_q=label%3Apackage%3Aexcalidraw).
1011
+
1012
+ ### Development
1013
+
1014
+ #### Install the dependencies
1015
+
1016
+ ```bash
1017
+ yarn
1018
+ ```
1019
+
1020
+ #### Start the server
1021
+
1022
+ ```bash
1023
+ yarn start
1024
+ ```
1025
+
1026
+ [http://localhost:3001](http://localhost:3001) will open in your default browser.
1027
+
1028
+ The example is same as the [codesandbox example](https://ehlz3.csb.app/)