Evan Almloff
|
c10700c962
|
add touch data to touch events
|
2023-09-12 17:28:55 -05:00 |
|
Evan Almloff
|
b47064165e
|
Merge branch 'events-2' of https://github.com/Demonthos/dioxus into events-2
|
2023-09-12 10:01:55 -05:00 |
|
Evan Almloff
|
a9bb04722f
|
split the point interaction trait into smaller traits for touch compatibility
|
2023-09-12 10:01:53 -05:00 |
|
ealmloff
|
f449823d10
|
Merge branch 'master' into events-2
|
2023-09-12 09:33:54 -05:00 |
|
Evan Almloff
|
d06e64e5ad
|
fix dioxus-tui events
|
2023-09-06 12:51:02 -05:00 |
|
Valentin Golev
|
e8ea228759
|
add initial_value to textarea (#1434)
|
2023-09-06 12:49:29 -05:00 |
|
Evan Almloff
|
0ab7a02777
|
fix clippy
|
2023-09-05 21:30:20 -05:00 |
|
Evan Almloff
|
bd38cddc9f
|
fix dioxus core event tests
|
2023-09-04 19:17:43 -05:00 |
|
Evan Almloff
|
df222c121a
|
port examples to new events
|
2023-09-01 15:38:55 -05:00 |
|
Evan Almloff
|
dee92b83be
|
remove the serde feature flag from enumset
|
2023-09-01 15:06:30 -05:00 |
|
Evan Almloff
|
364654e1fd
|
fix clippy with events
|
2023-08-31 16:43:24 -05:00 |
|
Evan Almloff
|
bf90b7584e
|
add some inline hints
|
2023-08-31 16:42:33 -05:00 |
|
Evan Almloff
|
3c01593703
|
document HtmlEventConverter
|
2023-08-31 16:38:14 -05:00 |
|
Evan Almloff
|
097eb2099c
|
add extension to downcast web events
|
2023-08-28 17:16:56 -05:00 |
|
Evan Almloff
|
8ba1c05a93
|
fix desktop events
|
2023-08-28 16:37:19 -05:00 |
|
Evan Almloff
|
bd387d601c
|
fix formatting
|
2023-08-28 15:49:46 -05:00 |
|
Evan Almloff
|
93cbfd0dbc
|
derive more traits for serialized types
|
2023-08-28 12:35:43 -05:00 |
|
Evan Almloff
|
f7dff22552
|
expose all serialized events as public
|
2023-08-28 11:49:16 -05:00 |
|
Evan Almloff
|
b4ebf34595
|
forward data PointInteraction data in the PointerData debug and partial implementation
|
2023-08-28 11:39:55 -05:00 |
|
Evan Almloff
|
b54f7dd5d2
|
fix no default features on the web renderer
|
2023-08-25 21:28:44 -05:00 |
|
Evan Almloff
|
ca1a502714
|
use an event converter for bundle splitting
|
2023-08-25 21:03:03 -05:00 |
|
Evan Almloff
|
299b123446
|
trait based event system
|
2023-08-25 17:02:48 -05:00 |
|
Evan Simkowitz
|
bad30786e2
|
address comments
|
2023-08-23 22:09:39 -04:00 |
|
Evan Simkowitz
|
56095116e2
|
Fix tests
|
2023-08-23 17:58:43 -04:00 |
|
Evan Simkowitz
|
af9875f9b1
|
revert change to cargo
|
2023-08-23 14:10:18 -04:00 |
|
Evan Simkowitz
|
e0f42f8173
|
Fix rink
|
2023-08-23 13:31:42 -04:00 |
|
Evan Simkowitz
|
0e5600f2f4
|
add impl for pointer
|
2023-08-23 12:47:37 -04:00 |
|
Evan Simkowitz
|
cc3f60dd2f
|
Adding PointInteraction trait, etc.
|
2023-08-22 23:29:24 -04:00 |
|
Bruce Mitchener
|
d8704a0447
|
deps: Update keyboard-types to 0.7. (#1378)
|
2023-08-21 09:28:32 -05:00 |
|
wooden-worm
|
f652474a6e
|
FileEngine: expose native file types on different platforms (#1258)
* Get native file
* Correct visibility
|
2023-08-17 08:03:56 -05:00 |
|
Evan Almloff
|
24c626b306
|
fix clippy
|
2023-08-08 13:43:57 -07:00 |
|
Brian Donovan
|
e98e773186
|
doc: fix typo (#1287)
|
2023-08-03 16:32:14 -05:00 |
|
Christian Albrecht
|
c9790860a5
|
fixed "http_equiv" in meta to generate "http-equiv" instead of "http_equiv" (#1277)
|
2023-08-02 11:25:41 -05:00 |
|
Jonathan Kelley
|
39e89c1fac
|
Bump crate versions, fix any publish errors
|
2023-07-31 18:49:54 -07:00 |
|
Evan Almloff
|
45d386810b
|
create features for large web-sys events/types
|
2023-07-28 15:38:07 -07:00 |
|
Evan Almloff
|
2d51a1c4f2
|
make more of core private
|
2023-07-26 16:17:48 -07:00 |
|
Miles Murgaw
|
6210c6fefe
|
Convert use_eval to use send/recv system (#1080)
* progress: reworked
don't run this, it'll kill your web browser
* feat: use_eval but with comms
* revision: async recv & recv_sync
* revision: use_eval
* revision: standard eval interface
* revision: use serde_json::Value instead of JsValue
* revision: docs
* revision: error message
* create: desktop eval (wip)
* fix: desktop eval
* revision: wrap use_eval in Rc<RefCell<_>>
* fix: fmt, clippy
* fix: desktop tests
* revision: change to channel system
- fixes clippy errors
- fixes playwright tests
* fix: tests
* fix: eval example
* fix: fmt
* fix: tests, desktop stuff
* fix: tests
* feat: drop handler
* fix: tests
* fix: rustfmt
* revision: web promise/callback system
* fix: recv error
* revision: IntoFuture, functionation
* fix: ci
* revision: playwright web
* remove: unescessary code
* remove dioxus-html from public examples
* prototype-patch
* fix web eval
* fix: rustfmt
* fix: CI
* make use_eval more efficient
* implement eval for liveview as well
* fix playwright tests
* fix clippy
* more clippy fixes
* fix clippy
* fix stack overflow
* fix desktop mock
* fix clippy
---------
Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
|
2023-07-21 17:36:25 -05:00 |
|
Jonathan Kelley
|
f0289068a2
|
Merge pull request #1219 from Demonthos/improve-build-times
Halve Build Times
|
2023-07-20 10:50:15 -07:00 |
|
Andrea Frigido
|
dccad58f1d
|
Update license field following SPDX 2.1 license expression standard
|
2023-07-20 18:00:07 +01:00 |
|
Evan Almloff
|
3d8d8a1b6f
|
half-build-times
|
2023-07-19 10:19:23 -07:00 |
|
Jonathan Kelley
|
41c4b57984
|
Merge pull request #1074 from kaid/directory-selection-dialog
Add directory support for file input.
|
2023-07-18 18:23:23 -07:00 |
|
Evan Almloff
|
7453486448
|
fix formatting
|
2023-07-17 15:12:57 -07:00 |
|
Kaid
|
e39d8708fa
|
Changed directory to webkitdirectory in bool_attrs definitions.
|
2023-07-10 17:19:11 +08:00 |
|
Marc Espín
|
32d4472bfd
|
fix: Remove duplicated doc links and improved some descriptions (#1167)
|
2023-07-08 11:04:27 -05:00 |
|
Jonathan Kelley
|
e77a14dbf7
|
Remove RFD from input crate
|
2023-06-30 13:59:59 -07:00 |
|
Jon Kelley
|
abccc7463f
|
Merge pull request #1010 from Demonthos/fix-onload-event
Fix the onload event
|
2023-06-30 12:14:35 -07:00 |
|
Evan Almloff
|
5f873511c5
|
use workspace dependancies
|
2023-06-19 14:29:11 -05:00 |
|
ealmloff
|
cf9ed74303
|
Merge branch 'master' into fix-onload-event
|
2023-06-19 08:16:40 -05:00 |
|
Kaid
|
277436f673
|
Changed underlying directory attribute to webkitdirectory , fixed attribute parsing to properly toggle it.
|
2023-06-06 08:06:27 +08:00 |
|
Kaid
|
37a8fb5391
|
Add directory support for file input.
|
2023-06-05 16:47:04 +08:00 |
|