1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Nemo Plugin Development Kit
//!
//! This crate provides convenient builders and utilities for developing Nemo plugins.
//! It builds on top of `nemo-plugin-api` to offer a fluent, type-safe API for creating
//! UI layouts, components, and templates.
//!
//! # Example
//!
//! ```rust
//! use nemo_plugin::prelude::*;
//!
//! // Build a simple UI layout
//! let layout = Panel::new()
//! .padding(16)
//! .border(2)
//! .width(300)
//! .child("title", Label::new("My Plugin").size("xl"))
//! .child("input", Input::new()
//! .value("default")
//! .on_change("on_input_change"))
//! .build();
//! ```
/// Re-export nemo-plugin-api for convenience
pub use *;
/// Prelude module containing commonly used types and traits