add file browser component and widget

This commit is contained in:
Timur Gordon
2025-08-05 15:02:23 +02:00
parent 4e43c21b72
commit ba43a82db0
95 changed files with 17840 additions and 423 deletions

View File

@@ -0,0 +1,27 @@
[package]
name = "file_browser_demo"
version = "0.1.0"
edition = "2021"
# Make this package independent from the parent workspace
[workspace]
[dependencies]
framework = { path = "../.." }
yew = { version = "0.21", features = ["csr"] }
yew-router = "0.18"
wasm-bindgen = "0.2"
web-sys = "0.3"
js-sys = "0.3"
wasm-bindgen-futures = "0.4"
gloo = "0.11"
console_error_panic_hook = "0.1"
wee_alloc = "0.4"
[dependencies.getrandom]
version = "0.2"
features = ["js"]
[[bin]]
name = "file_browser_demo"
path = "src/main.rs"