Make widget submodules public
This will make the generated documentation more readable once I add module docstrings. I'm still reexporting the module contents to keep imports nice and tidy.
This commit is contained in:
parent
397d3a6eac
commit
cb483431cc
1 changed files with 12 additions and 12 deletions
|
|
@ -1,15 +1,15 @@
|
||||||
mod background;
|
pub mod background;
|
||||||
mod border;
|
pub mod border;
|
||||||
mod cursor;
|
pub mod cursor;
|
||||||
mod editor;
|
pub mod editor;
|
||||||
mod either;
|
pub mod either;
|
||||||
mod empty;
|
pub mod empty;
|
||||||
mod float;
|
pub mod float;
|
||||||
mod join;
|
pub mod join;
|
||||||
mod layer;
|
pub mod layer;
|
||||||
mod padding;
|
pub mod padding;
|
||||||
mod resize;
|
pub mod resize;
|
||||||
mod text;
|
pub mod text;
|
||||||
|
|
||||||
pub use background::*;
|
pub use background::*;
|
||||||
pub use border::*;
|
pub use border::*;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue