mirror of
https://github.com/enso-org/enso.git
synced 2024-12-26 11:43:08 +03:00
9e71fea844
Fixes #5088. Adds a ensoGL spinner for visualizations waiting on data. https://user-images.githubusercontent.com/1428930/236801655-67a0ffed-da5d-4e27-8797-cd8126cb86d9.mp4 # Important Notes This spinner will not show up for the duration where visualizations are processing data on the frontend. If this is a concern, visualization need to implement heir own loading spinner, or we need to provide a unified API for them to keep the spinner visible.
27 lines
940 B
TOML
27 lines
940 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-down = { path = "drop-down" }
|
|
ensogl-drop-manager = { path = "drop-manager" }
|
|
ensogl-dynamic-assets = { path = "dynamic-assets" }
|
|
ensogl-file-browser = { path = "file-browser" }
|
|
ensogl-flame-graph = { path = "flame-graph" }
|
|
ensogl-label = { path = "label" }
|
|
ensogl-list-editor = { path = "list-editor" }
|
|
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" }
|
|
ensogl-spinner = { path = "spinner" }
|