mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 14:11:29 +03:00
81e5e77ae8
When hovering the mouse pointer over the Marketplace button on the left bar of the Component Browser, show a caption informing that the Marketplace will be available soon. https://www.pivotaltracker.com/story/show/182613789 #### Visuals The video below demonstrates the caption shown when hovering the Marketplace button on the left bar of the Component Browser. It shows the caption disappearing after a hardcoded time, or when the mouse pointer is moved away from the button. https://user-images.githubusercontent.com/273837/196195809-45a712e1-ad86-47d8-99ff-1475a0b74c6e.mov # Important Notes - The "Label" visual component was fixed. Previously, the width calculation of the background was not synchronized correctly with the text width. As a result, a zero-width background was displayed when a Label was shown for the first time.
29 lines
1.3 KiB
TOML
29 lines
1.3 KiB
TOML
[package]
|
|
name = "ide-view-component-list-panel"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
enso-frp = { path = "../../../../../lib/rust/frp" }
|
|
ensogl-core = { path = "../../../../../lib/rust/ensogl/core" }
|
|
ensogl-gui-component = { path = "../../../../../lib/rust/ensogl/component/gui/" }
|
|
ensogl-grid-view = { path = "../../../../../lib/rust/ensogl/component/grid-view/" }
|
|
ensogl-list-view = { path = "../../../../../lib/rust/ensogl/component/list-view/" }
|
|
ensogl-hardcoded-theme = { path = "../../../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ensogl-derive-theme = { path = "../../../../../lib/rust/ensogl/app/theme/derive" }
|
|
ensogl-scroll-area = { path = "../../../../../lib/rust/ensogl/component/scroll-area" }
|
|
ensogl-selector = { path = "../../../../../lib/rust/ensogl/component/selector" }
|
|
ensogl-shadow = { path = "../../../../../lib/rust/ensogl/component/shadow" }
|
|
ensogl-text = { path = "../../../../../lib/rust/ensogl/component/text" }
|
|
ensogl-tooltip = { path = "../../../../../lib/rust/ensogl/component/tooltip/" }
|
|
ide-view-component-list-panel-breadcrumbs = { path = "breadcrumbs" }
|
|
ide-view-component-list-panel-grid = { path = "grid" }
|
|
ordered-float = "3.0.0"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5.1"
|