
This PR refactors the callout component and improves how we display errors and warnings in the agent panel, along with improvements for specific cases (e.g., you have `zed.dev` as your LLM provider and is signed out). Still a work in progress, though, wrapping up some details. Release Notes: - N/A
18 lines
296 B
Rust
18 lines
296 B
Rust
pub mod animation;
|
|
mod appearance;
|
|
mod color;
|
|
mod elevation;
|
|
mod platform;
|
|
mod severity;
|
|
mod spacing;
|
|
mod typography;
|
|
mod units;
|
|
|
|
pub use appearance::*;
|
|
pub use color::*;
|
|
pub use elevation::*;
|
|
pub use platform::*;
|
|
pub use severity::*;
|
|
pub use spacing::*;
|
|
pub use typography::*;
|
|
pub use units::*;
|