//! Common imports for building a node graph view.
//!
//! `use iced_nodegraph::prelude::*;` pulls in the vocabulary reached for in
//! almost every `view()`: the builders, [`PinRef`], the pin and
//! status types used by `style`/`can_connect` closures, the concrete style
//! structs with their theme-derived `default_*` bases, and the node-content
//! helpers. Graph-level configuration set once (`Camera2D`, `GraphStyle`,
//! `SelectionStyle`) is imported explicitly when opted into.
// Builders: the entry point, the node/edge/pin constructors and the types they
// return (named when writing helpers per node type), and the `pin!` macro.
pub use crate::;
// Core types named when wiring callbacks and edges.
pub use crate::;
// Pin and status vocabulary passed to `style` / `pin_style` / `can_connect` closures.
pub use crate::;
// Input rebinding: the keymap and its combo vocabulary.
pub use crate::;
// Composable `can_connect` predicates (compose `default_can_connect` to keep the
// built-in rules when overriding validation).
pub use crate;
// Concrete style structs and their theme-derived defaults to layer overrides over.
pub use crate::;
// Rounded header/footer helpers for node interiors.
pub use crate::;