mirror of
https://github.com/danbulant/cushy
synced 2026-06-17 05:21:17 +00:00
Fixing MSRV
I had forgotten why I had `self::image::Image` and it was causing the docs to show up out of order. This now makes them all consisent, fixing the docs issue.
This commit is contained in:
parent
882ec6f4aa
commit
8c3eaf4b6b
1 changed files with 30 additions and 30 deletions
|
|
@ -32,33 +32,33 @@ mod tilemap;
|
|||
pub mod validated;
|
||||
pub mod wrap;
|
||||
|
||||
pub use align::Align;
|
||||
pub use button::Button;
|
||||
pub use canvas::Canvas;
|
||||
pub use checkbox::Checkbox;
|
||||
pub use collapse::Collapse;
|
||||
pub use container::Container;
|
||||
pub use custom::Custom;
|
||||
pub use data::Data;
|
||||
pub use disclose::Disclose;
|
||||
pub use expand::Expand;
|
||||
pub use grid::Grid;
|
||||
pub use image::Image;
|
||||
pub use input::Input;
|
||||
pub use label::Label;
|
||||
pub use layers::Layers;
|
||||
pub use mode_switch::ThemedMode;
|
||||
pub use progress::ProgressBar;
|
||||
pub use radio::Radio;
|
||||
pub use resize::Resize;
|
||||
pub use scroll::Scroll;
|
||||
pub use select::Select;
|
||||
pub use slider::Slider;
|
||||
pub use space::Space;
|
||||
pub use stack::Stack;
|
||||
pub use style::Style;
|
||||
pub use switcher::Switcher;
|
||||
pub use themed::Themed;
|
||||
pub use tilemap::TileMap;
|
||||
pub use validated::Validated;
|
||||
pub use wrap::Wrap;
|
||||
pub use self::align::Align;
|
||||
pub use self::button::Button;
|
||||
pub use self::canvas::Canvas;
|
||||
pub use self::checkbox::Checkbox;
|
||||
pub use self::collapse::Collapse;
|
||||
pub use self::container::Container;
|
||||
pub use self::custom::Custom;
|
||||
pub use self::data::Data;
|
||||
pub use self::disclose::Disclose;
|
||||
pub use self::expand::Expand;
|
||||
pub use self::grid::Grid;
|
||||
pub use self::image::Image;
|
||||
pub use self::input::Input;
|
||||
pub use self::label::Label;
|
||||
pub use self::layers::Layers;
|
||||
pub use self::mode_switch::ThemedMode;
|
||||
pub use self::progress::ProgressBar;
|
||||
pub use self::radio::Radio;
|
||||
pub use self::resize::Resize;
|
||||
pub use self::scroll::Scroll;
|
||||
pub use self::select::Select;
|
||||
pub use self::slider::Slider;
|
||||
pub use self::space::Space;
|
||||
pub use self::stack::Stack;
|
||||
pub use self::style::Style;
|
||||
pub use self::switcher::Switcher;
|
||||
pub use self::themed::Themed;
|
||||
pub use self::tilemap::TileMap;
|
||||
pub use self::validated::Validated;
|
||||
pub use self::wrap::Wrap;
|
||||
|
|
|
|||
Loading…
Reference in a new issue