Aakansha Doshi and GitHub
eb24e8ffe4
fix: Wrap excalidraw in position relative & hide scrollbars in zen mode ( #3174 )
...
* fix: wrap excalidraw in position relative so that host need not add it explicitly to fix positioning when non zero offsets
* patch version
* Hide scrollbars on excalidraw container
* remove overflow hidden from index.html since its handled in excalidraw container
* review fix
* update changelog
2021-03-06 20:11:26 +05:30
07e71a8071
fix: Reduce the scroll debounce timeout to 100ms and update only if offset changes ( #3182 )
...
* fix: Reduce the scroll debounce timeout to 100ms so offsets get updated faster when the container scrolled
fixes https://github.com/excalidraw/excalidraw/issues/3175
* update changelog
* update offsets only when if it changes
* up
* Update src/components/App.tsx
Co-authored-by: David Luzar <luzar.david@gmail.com >
2021-03-06 19:06:42 +05:30
David Luzar and GitHub
c77c9ce65a
fix: cursor being leaked outside of canvas ( #3161 )
2021-03-03 14:04:02 +01:00
Aakansha Doshi and GitHub
7c5481b877
feat: Add support for scrollToCenter in initialData so host can control whether to scroll to center on mount ( #3070 )
...
* feat: Add support for scrollToCenter in initialData so host can control whether to scroll to center on mount
* fix
* update changelog and readme
* fix
* Scroll to center only for collab and shareable links in excalidraw app
* fix test
* update readme
* Update src/packages/excalidraw/README.md
2021-02-21 19:01:34 +05:30
Arun and GitHub
74e82d0d7c
fix: Hide scrollbars on mobile ( #3044 )
...
* Hide scrollbars on mobile
* Fix package build
* Revert "Fix package build"
This reverts commit 7bf4a0aac1 .
* Make requested changes
2021-02-19 12:55:58 +01:00
e6cd97c4f2
feat: adjust line-confirm-threshold based on zoom ( #2884 )
...
Co-authored-by: Lipis <lipiridis@gmail.com >
2021-02-14 14:43:23 +01:00
Aakansha Doshi and GitHub
830fb64a25
fix: Support Excalidraw inside scrollable container ( #3018 )
...
* refactor: remove position fixed from excalidraw container, modal and stats
* remove unused css
* remove position fixed from toast and scroll to content
* Make excal interactable by fixing offsets and set popover as fixed since position needs to be calculate from viewport top
* Assign 200px less than height of Excalidraw to the selected shapes actions o UI doesn't overflow
* update changelog, readme and package.json
2021-02-14 18:18:34 +05:30
Ivan Kurnosov and GitHub
f8beb305de
refactor: Removed redundant import from App.tsx ( #3040 )
...
Given it's followed by qualified import - unqualified import looks redundant, unless I'm missing some tricky edge case.
2021-02-14 11:25:57 +02:00
Aakansha Doshi and GitHub
b5fc8757a4
fix: allow to toggle between modes when view only mode to make UI consistent ( #3009 )
2021-02-12 10:40:40 +02:00
David Luzar and GitHub
4b253c7362
fix: refresh wysiwyg position on canvas resize ( #3008 )
2021-02-11 12:24:26 +01:00
066560311b
feat: add props zenModeEnabled and gridModeEnabled so host can control completely ( #2901 )
...
* feat: add props zenModeEnabled and gridModeEnabled so host can control completely
* dnt show exit zenmode button when prop present
* fix
* update when props change
* Add tests
* Add tests
* update changelog and readme
* update
* Update src/tests/excalidrawPackage.test.tsx
* Update src/packages/excalidraw/README.md
Co-authored-by: Lipis <lipiridis@gmail.com >
* Update src/packages/excalidraw/README.md
Co-authored-by: David Luzar <luzar.david@gmail.com >
* Apply suggestions from code review
Co-authored-by: David Luzar <luzar.david@gmail.com >
* fix specs
Co-authored-by: Lipis <lipiridis@gmail.com >
Co-authored-by: David Luzar <luzar.david@gmail.com >
2021-02-06 21:22:28 +05:30
David Luzar and GitHub
e18e945cd3
fix: incorrect z-index of text editor ( #2914 )
2021-02-04 14:54:00 +01:00
bd0c6e63ff
feat: Show version in the stats dialog ( #2908 )
...
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-02-04 13:47:46 +01:00
dbae33e4f8
fix: make scrollbars draggable when offsets are set ( #2916 )
...
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-02-04 13:07:29 +01:00
1837147c55
feat: Add idle detection to collaboration feature ( #2877 )
...
* Start idle detection implementation
* First working version
* Add screen state
* Add type safety
* Better rendering, enum types, localization
* Add origin trial token
* Fix
* Refactor idle detection to no longer use IdleDetector API
* Cleanup some leftovers
* Fix
* Apply suggestions from code review
* Three state: active 🟢 , idle 💤 , away ⚫ ️
* Address feedback from code review
Thanks, @lipis
* Deal with unmount
Co-authored-by: Panayiotis Lipiridis <lipiridis@gmail.com >
2021-02-04 11:55:43 +01:00
675da16ca4
feat: add view mode in Excalidraw ( #2840 )
...
Co-authored-by: Lipis <lipiridis@gmail.com >
2021-02-01 21:56:42 +01:00
David Luzar and GitHub
1973ae9444
fix: stop flooring scroll positions ( #2883 )
2021-01-31 10:47:43 +01:00
David Luzar and GitHub
10cd6a24b0
feat: increase max zoom ( #2881 )
2021-01-30 18:03:23 +01:00
David Luzar and GitHub
6abf4f52ff
refactor: remove duplicate key handling ( #2878 )
2021-01-30 10:30:00 +01:00
4624ec2bd6
fix: apply initialData appState for zenmode and grid stats and refactor check param for actions ( #2871 )
...
* fix: pass default value for grid mode / zen mode so it sets the value from initialData appState
fixes #2870
* change checked from boolean to be a function which recieves appState and returns boolean
* fix
* use clsx
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-01-29 23:38:37 +05:30
e8685c5236
feat: Remove copy & paste from context menu on desktop ( #2872 )
...
* Remove copy & paste from context menu on desktop
* fix build
* Make requested changes
* More changes
* make into function
* update changelog
* fix tests
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-01-28 22:02:00 +01:00
Aakansha Doshi and GitHub
6e9df2bae7
fix(app.tsx): show correct state of Nerd stats in context menu when nerd stats dialog closed ( #2874 )
...
fixes #2873
2021-01-29 02:21:10 +05:30
978e85a33b
feat: Add separators on context menu ( #2659 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dwelle <luzar.david@gmail.com >
Co-authored-by: Lipis <lipiridis@gmail.com >
2021-01-27 20:11:17 +01:00
David Luzar and GitHub
0a0be839b9
refactor: rewrite collabWrapper to remove TDZs and simplify ( #2834 )
2021-01-25 10:47:35 +01:00
ce2c341910
feat: Change shortcuts menu to help menu ( #2812 )
...
Co-authored-by: Panayiotis Lipiridis <lipiridis@gmail.com >
2021-01-17 18:46:23 +02:00
João Forja and GitHub
e26f374ca6
improvement: Enhance resize for non generic elements ( #2720 )
2021-01-16 19:49:13 +01:00
543c624405
feat: Add toast ( #2772 )
...
Co-authored-by: Lipis <lipiridis@gmail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-01-15 16:02:46 +01:00
David Luzar and GitHub
04c46fc01a
fix: don't render due to zoom after unmount ( #2779 )
...
* fix: don't render due to zoom after unmount
* update changelog
* remove unnecessary flush
2021-01-13 17:42:42 +01:00
Carl Sverre and GitHub
629341da4d
improvement: adding zen mode to context menu ( #2734 )
2021-01-06 17:23:05 +01:00
3aa01ad272
chore: Remove tracking ( #2722 )
...
* chore: Remove tracking
* process
* rename
* remove
* prod
* Update public/index.html
Co-authored-by: David Luzar <luzar.david@gmail.com >
* Update public/index.html
* eol
* more
* stats
Co-authored-by: David Luzar <luzar.david@gmail.com >
2021-01-05 19:06:14 +01:00
4acdc47ef0
improvement: do not reset to selection for draw tool ( #2721 )
...
Co-authored-by: Lipis <lipiridis@gmail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-01-05 14:04:06 +01:00
ade2565f49
feat: add langCode and renderFooter props ( #2644 )
...
Co-authored-by: Aakansha Doshi <aakansha1216@gmail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2021-01-03 21:51:52 +01:00
aef3644c93
fix: scene not initialized properly when tab not focused ( #2677 )
...
Co-authored-by: Lipis <lipiridis@gmail.com >
2020-12-29 21:03:34 +01:00
022f349dc6
feat: Add line chart and paste dialog selection ( #2670 )
...
Co-authored-by: dwelle <luzar.david@gmail.com >
Co-authored-by: Jed Fox <git@jedfox.com >
2020-12-27 18:26:30 +02:00
bc414ccaaf
feat: tweak editing behavior ( #2668 )
...
* feat: tweak editing behavior
* fix tests
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-25 19:34:47 +01:00
Lipis and GitHub
d7f314cda8
refactor: Remove duplicate entry from en.json ( #2654 )
2020-12-22 11:42:01 +02:00
Lipis and GitHub
6adb45ef5a
feat: Change title to Excalidraw after a timeout ( #2656 )
...
* feat: Change title to Excalidraw after a timeout
* clear timeout
2020-12-22 10:34:06 +01:00
Rene and GitHub
0faec7efb6
feat: Checkmark to toggle context-menu-items ( #2645 )
2020-12-21 00:20:03 +02:00
Christopher Chedeau and GitHub
9a3a3ecb44
fix: Center zoom on iPhone and iPad ( #2642 )
...
My last attempt removed the gesture handler altogether but broke macbooks. This one keeps it working on macbook but makes sure it zooms properly on iPhone and iPad.
2020-12-20 12:13:15 -08:00
Christopher Chedeau and GitHub
81f8039ec7
fix: Don't break zoom when zooming in on UI ( #2638 )
...
If you start the gesture on the chrome, gesture is not defined and the zoom will be set to NaN and you will have to refresh.
Typescript was actually right and we shouldn't have overridden the bang ;)
Repro:
- On iPhone touch down on a shape, touch down on the chrome, start moving around
- See that the selection is off, but the zoom is not being modified like crazy.
https://user-images.githubusercontent.com/197597/102722206-6c182400-42b4-11eb-9865-6ae1cd0af9be.MP4
2020-12-20 12:07:58 -08:00
325d1bec91
feat: Add onExportToBackend prop so host can handle it ( #2612 )
...
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-20 15:14:04 +01:00
fb582b45db
fix: Fix centering element on init ( #2445 )
...
Co-authored-by: Andrés Rivera <andres@MBP.local >
Co-authored-by: Lipis <lipiridis@gmail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-16 18:17:39 +01:00
João Forja and GitHub
4c7b1a2269
fix: Visibility and zooming when canvas offset is not zero ( #2534 )
2020-12-14 15:14:56 +01:00
802b8c50d5
Insert Library items in the middle of the screen ( #2527 )
...
Co-authored-by: Zen Tang <zen@wayve.ai >
2020-12-13 13:46:42 +02:00
94fe1ff6e6
Show shortcut context menu ( #2501 )
...
Co-authored-by: rene_mbp <harryloveslearning@googlemail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-12 23:03:58 +01:00
Steve Ruiz and GitHub
9cfe7b45e5
Aligns arrowhead schemas ( #2517 )
2020-12-12 17:42:30 +01:00
1a134a88bd
Add Cut to menus ( #2511 )
...
Co-authored-by: Zen Tang <zen@wayve.ai >
2020-12-12 12:54:34 +01:00
b2d442abce
Support CSV graphs and improve the look and feel ( #2495 )
...
Co-authored-by: David Luzar <luzar.david@gmail.com >
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-11 12:13:23 +01:00
David Luzar and GitHub
4672a2a135
fix misaligning on grid paste ( #2494 )
...
* fix misaligning on grid paste
* tweak naming
2020-12-09 15:45:03 +02:00
8f8fd023f8
fix(app.tsx): add safe check for readyPromise ( #2489 )
...
* fix(app.tsx): add safe check for readyPromise
* make type-safe
Co-authored-by: dwelle <luzar.david@gmail.com >
2020-12-09 01:35:08 +05:30