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
40
41
42
43
//! Common re-exports for widget extension authors.
//!
//! Import the entire prelude to get the types, traits, and helpers
//! needed to implement [`WidgetExtension`]:
//!
//! ```ignore
//! use plushie_core::prelude::*;
//! ```
//!
//! For iced types not covered here (e.g. `canvas::Path`, advanced
//! layout widgets), use `plushie_core::iced::*` instead of adding a
//! direct `iced` dependency. This avoids version conflicts when
//! plushie-core bumps its iced version.
// -- Extension trait and lifecycle types --
pub use crate;
// -- Wire protocol types --
pub use crateMessage;
pub use crate;
// -- Prop extraction helpers --
pub use crate*;
// -- Commonly needed iced types --
//
// Note: `column` and `row` are deliberately excluded. They conflict
// with the `column!` and `row!` macros when glob-imported. Extension
// authors should use the macros directly (available via
// `plushie_core::iced`) or import explicitly:
// use plushie_core::iced::widget::{column, row};
pub use crate;
pub use crate;
// -- JSON (extensions parse props from serde_json::Value) --
pub use Value;