mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 22:21:40 +03:00
7fa4e5e369
**Note**: This PR also contains content of previous Grid View PR. We decided to discard the previous, because this one did some refactoring of old one, and it's not a big addition. Added a scrollable::GridView component, which just embeds the GridView in ScrollArea. Also, re-worked the idea of text layers. https://user-images.githubusercontent.com/3919101/179020359-512ee127-c333-4f86-bff5-f1cb4154e03c.mp4
23 lines
762 B
TOML
23 lines
762 B
TOML
[package]
|
|
name = "ensogl-component"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ensogl-button = { path = "button" }
|
|
ensogl-drop-down-menu = { path = "drop-down-menu" }
|
|
ensogl-drop-manager = { path = "drop-manager" }
|
|
ensogl-file-browser = { path = "file-browser" }
|
|
ensogl-flame-graph = { path = "flame-graph" }
|
|
ensogl-label = { path = "label" }
|
|
ensogl-list-view = { path = "list-view" }
|
|
ensogl-grid-view = { path = "grid-view" }
|
|
ensogl-scroll-area = { path = "scroll-area" }
|
|
ensogl-scrollbar = { path = "scrollbar" }
|
|
ensogl-selector = { path = "selector" }
|
|
ensogl-shadow = { path = "shadow" }
|
|
ensogl-text = { path = "text" }
|
|
ensogl-tooltip = { path = "tooltip" }
|
|
ensogl-toggle-button = { path = "toggle-button" }
|