Update version to v0.1.133
All checks were successful
Build and Release / build-and-release (push) Successful in 2m9s

Bump version across all workspace crates for next release
including agent, dashboard, and shared components.
This commit is contained in:
2025-11-23 22:25:19 +01:00
parent b2b301332f
commit c9b2d5e342
11 changed files with 280 additions and 1011 deletions

View File

@@ -1,4 +1,4 @@
use cm_dashboard_shared::Metric;
use cm_dashboard_shared::AgentData;
pub mod backup;
pub mod cpu;
@@ -10,9 +10,8 @@ pub use backup::BackupWidget;
pub use services::ServicesWidget;
pub use system::SystemWidget;
/// Widget trait for UI components that display metrics
/// Widget trait for UI components that display structured data
pub trait Widget {
/// Update widget with new metrics data
fn update_from_metrics(&mut self, metrics: &[&Metric]);
/// Update widget with structured agent data
fn update_from_agent_data(&mut self, agent_data: &AgentData);
}