takumi 1.8.7

Render UI component trees to images.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Node Tree
pub mod node;

pub(crate) mod inline;
pub(crate) mod matching;
pub(crate) mod tree;

/// CSS-like styling system with colors, units, and properties.
///
/// Re-exported from the `takumi-css` crate, which holds the cold CSS
/// parsing/cascade layer so it can be size-optimized independently.
pub mod style {
  pub use takumi_css::style::*;
}
pub use takumi_css::{DEFAULT_DEVICE_PIXEL_RATIO, DEFAULT_FONT_SIZE, Viewport, ViewportSize};