decal 0.6.0

Declarative DSL for describing scenes and rendering them to SVG or PNG
Documentation
mod aspect_ratio;
mod background;
mod blendable;
mod border;
mod clippable;
mod container_alignment;
mod corner_radius;
mod dimensions;
mod drawable;
mod filter_effects;
mod flex_container;
mod gap;
mod hideable;
mod margin;
mod opacity;
mod padding;
mod positioned;
mod sealed;
mod self_alignment;
mod textual;
mod transformation;
mod visibility;

pub use aspect_ratio::*;
pub use background::*;
pub use blendable::*;
pub use border::*;
pub use clippable::*;
pub use container_alignment::*;
pub use corner_radius::*;
pub use dimensions::*;
pub use drawable::*;
pub use filter_effects::*;
pub use flex_container::*;
pub use gap::*;
pub use hideable::*;
pub use margin::*;
pub use opacity::*;
pub use padding::*;
pub use positioned::*;
pub use self_alignment::*;
pub use textual::*;
pub use transformation::*;
pub use visibility::*;

#[cfg(feature = "grid")]
mod grid_container;
#[cfg(feature = "grid")]
pub use grid_container::*;

// Private
pub(crate) use sealed::private::*;