mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 16:01:37 +03:00
9e4dd9d708
This PR adds a configurable delay before displaying documentation ([task](https://www.pivotaltracker.com/story/show/183970872)) and a "hovered item preview" caption on top of the panel when you hover some not-selected entry. ([task](https://www.pivotaltracker.com/story/show/183970838)). The caption design will be adjusted in a future PR with a style update. https://user-images.githubusercontent.com/6566674/214233481-10550fcf-a106-4b11-b5a2-15283745cbbf.mp4
32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "ide-view-documentation"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../../lib/rust/frp" }
|
|
enso-logger = { path = "../../../../lib/rust/logger" }
|
|
enso-prelude = { path = "../../../../lib/rust/prelude" }
|
|
ensogl = { path = "../../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../../lib/rust/ensogl/component" }
|
|
ensogl-hardcoded-theme = { path = "../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ensogl-derive-theme = { path = "../../../../lib/rust/ensogl/app/theme/derive" }
|
|
ide-view-graph-editor = { path = "../graph-editor" }
|
|
wasm-bindgen = { workspace = true }
|
|
serde_json = { version = "1.0" }
|
|
horrorshow = "0.8.4"
|
|
enso-suggestion-database = { path = "../../suggestion-database" }
|
|
double-representation = { path = "../../controller/double-representation" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|
|
|
|
[build-dependencies]
|
|
ide-ci = { path = "../../../../build/ci_utils" }
|
|
tokio = { workspace = true }
|