Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ResizableContainer #752

Draft
wants to merge 30 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
42f2898
feat: `ResizableContainer`
marc2332 Jun 29, 2024
a4d65bd
clean up
marc2332 Jun 29, 2024
7a05fd8
theming + use it in the devtools
marc2332 Jun 30, 2024
b9d572b
my head hurts
marc2332 Jun 30, 2024
f864c7e
clean up
marc2332 Jun 30, 2024
51ffc29
Merge branch 'main' into feat/resizable-container
marc2332 Jul 9, 2024
136defd
fix test
marc2332 Jul 9, 2024
6019a10
Merge branch 'main' into feat/resizable-container
marc2332 Sep 11, 2024
3b0c271
feat: Improvements
marc2332 Sep 11, 2024
36077d4
feat: Improvements
marc2332 Sep 11, 2024
aa86a2e
Merge branch 'main' of https://github.com/marc2332/freya into feat/re…
marc2332 Sep 11, 2024
99f768e
chore: adapt tests
marc2332 Sep 11, 2024
9b4d0cc
feat: flex support
marc2332 Sep 25, 2024
6a83d8e
move flex to content
marc2332 Sep 25, 2024
86be36c
Merge branch 'feat/flex' into feat/resizable-container
marc2332 Sep 26, 2024
ef7cdcd
flex
marc2332 Sep 26, 2024
2abcc12
feat: min_size
marc2332 Sep 27, 2024
3fe2608
update tests and docs
marc2332 Sep 27, 2024
e3278c6
Merge branch 'main' into feat/flex
marc2332 Sep 28, 2024
2b6b818
Merge branch 'main' into feat/flex
marc2332 Sep 30, 2024
5340d3e
fix: Update resizing of panels in the opposite resizing direction
marc2332 Oct 8, 2024
fefaee5
chore: Resolve conflicts
marc2332 Oct 8, 2024
b04de87
Merge branch 'main' into feat/flex
marc2332 Oct 8, 2024
5ee0457
Merge branch 'feat/flex' into feat/resizable-container
marc2332 Oct 8, 2024
531d14b
flex tests
marc2332 Oct 8, 2024
cd3cf1c
min size of 75 for the app root
marc2332 Oct 8, 2024
9ac867e
Merge branch 'main' into feat/flex
marc2332 Oct 13, 2024
b383a58
Merge branch 'feat/flex' into feat/resizable-container
marc2332 Oct 13, 2024
4a43be3
perf improvements
marc2332 Oct 13, 2024
3031f5f
Merge branch 'main' into feat/resizable-container
marc2332 Nov 10, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions crates/components/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ mod network_image;
mod popup;
mod progress_bar;
mod radio;
mod resizable_container;
mod scroll_views;
mod sidebar;
mod slider;
Expand Down Expand Up @@ -64,6 +65,7 @@ pub use network_image::*;
pub use popup::*;
pub use progress_bar::*;
pub use radio::*;
pub use resizable_container::*;
pub use scroll_views::*;
pub use sidebar::*;
pub use slider::*;
Expand Down
Loading
Loading