enso/app/gui/view/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.7 KiB
TOML
Raw Normal View History

[package]
name = "ide-view"
version = "0.1.0"
authors = ["Enso Team <contact@enso.org>"]
2021-12-01 18:06:57 +03:00
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
ast = { path = "../language/ast/impl" }
parser = { path = "../language/parser" }
enso-config = { path = "../config" }
enso-frp = { path = "../../../lib/rust/frp" }
2022-05-23 05:16:04 +03:00
enso-prelude = { path = "../../../lib/rust/prelude" }
enso-shapely = { path = "../../../lib/rust/shapely" }
engine-protocol = { path = "../controller/engine-protocol" }
ensogl = { path = "../../../lib/rust/ensogl" }
ensogl-component = { path = "../../../lib/rust/ensogl/component" }
ensogl-gui-component = { path = "../../../lib/rust/ensogl/component/gui" }
ensogl-text = { path = "../../../lib/rust/ensogl/component/text" }
2022-08-27 01:25:34 +03:00
ensogl-text-msdf = { path = "../../../lib/rust/ensogl/component/text/src/font/msdf" }
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
ide-view-component-browser = { path = "component-browser" }
ide-view-execution-environment-selector = { path = "execution-environment-selector" }
ide-view-documentation = { path = "documentation" }
ide-view-graph-editor = { path = "graph-editor" }
Redesign IDE top bar (#7249) Closes #7200 Updating the looks of the project's top bar to the new design. - Project name moved from breadcrumbs to the left of the execution environment selector. - All components use auto-layout in most places, except for breadcrumbs (changing them means basically rewriting them from scratch, but we will use CB's breadcrumbs instead) - Components no longer rely on individual positioning but rather work as parts of the "project view top bar" abstraction (with the use of auto-layout) - We have a new debug scene for the project view top bar, replacing the debug scene for execution environment selector. - Most style parameters were moved to the stylesheet, except breadcrumbs. - Top bar is now fully managed by the Project View, not Graph Editor - Project name is no longer editable. There is no way to rename a project inside the IDE (the corresponding code is removed). It can react on mouse hovers, but the color will not change for now. - Current execution environment has extra bold font and is no longer capitalized. - **Breadcrumbs can be considered broken** from the design point of view. I have no intention of making them look as in the design because we want to reuse CB's breadcrumbs component instead. The functionality should be fully preserved, though. - The Play Icon on the execution environment selector is not updated to the newest design, I suggest creating a separate task for that (I think it is the first case of a rounded triangle in the application, and implementation would some time). https://github.com/enso-org/enso/assets/6566674/16747c02-15b2-4806-ace3-6f03c98040f1
2023-07-18 13:35:07 +03:00
ide-view-project-view-top-bar = { path = "project-view-top-bar" }
span-tree = { path = "../language/span-tree" }
gloo-utils = { workspace = true }
2023-01-28 01:39:37 +03:00
js-sys = { workspace = true }
multi-map = { workspace = true }
nalgebra = { workspace = true }
ordered-float = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true }
strum = { workspace = true }
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
wasm-bindgen = { workspace = true }
wasm-bindgen-test = { workspace = true }
welcome-screen = { path = "welcome-screen" }
[dependencies.web-sys]
version = "0.3.4"
features = []