File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ extern crate alloc;
3333
3434mod bounds;
3535mod cursor;
36+ mod editing;
3637mod error;
3738mod font;
3839mod font_atlas;
@@ -44,10 +45,10 @@ mod pipeline;
4445mod text;
4546mod text_access;
4647mod text_edit;
47- mod text_editable;
4848
4949pub use bounds:: * ;
5050pub use cursor:: * ;
51+ pub use editing:: * ;
5152pub use error:: * ;
5253pub use font:: * ;
5354pub use font_atlas:: * ;
@@ -59,7 +60,6 @@ pub use pipeline::*;
5960pub use text:: * ;
6061pub use text_access:: * ;
6162pub use text_edit:: * ;
62- pub use text_editable:: * ;
6363
6464/// The text prelude.
6565///
Original file line number Diff line number Diff line change @@ -4,12 +4,12 @@ mod button;
44mod image;
55mod label;
66mod text;
7- mod text_editable ;
7+ mod text_input_layout ;
88mod viewport;
99
1010pub use button:: * ;
1111pub use image:: * ;
1212pub use label:: * ;
1313pub use text:: * ;
14- pub use text_editable :: * ;
14+ pub use text_input_layout :: * ;
1515pub use viewport:: * ;
File renamed without changes.
Original file line number Diff line number Diff line change 2828
2929mod button;
3030mod checkbox;
31- mod editable_text;
3231mod menu;
3332mod observe;
3433pub mod popover;
3534mod radio;
3635mod scrollbar;
3736mod slider;
37+ mod text_input;
3838
3939pub use button:: * ;
4040pub use checkbox:: * ;
41- pub use editable_text:: * ;
4241pub use menu:: * ;
4342pub use observe:: * ;
4443pub use radio:: * ;
4544pub use scrollbar:: * ;
4645pub use slider:: * ;
46+ pub use text_input:: * ;
4747
4848use bevy_app:: { PluginGroup , PluginGroupBuilder } ;
4949use bevy_ecs:: { entity:: Entity , event:: EntityEvent } ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments