From c70e285026a5adc32ffc611bf35ccbda758bb6d5 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 30 Jul 2026 18:19:11 +0200 Subject: [PATCH 1/7] feat(icons): add sidebar expanding icon --- src/assets/icons/sidebar-expand.svg | 38 +++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/assets/icons/sidebar-expand.svg diff --git a/src/assets/icons/sidebar-expand.svg b/src/assets/icons/sidebar-expand.svg new file mode 100644 index 0000000..9c7a361 --- /dev/null +++ b/src/assets/icons/sidebar-expand.svg @@ -0,0 +1,38 @@ + + + + + \ No newline at end of file From 5b1f2b57a7271cb405e74d3e801cefaae0f2740d Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 30 Jul 2026 18:21:29 +0200 Subject: [PATCH 2/7] feat(sidebar): add sidebar expand button Added a button to expand the sidebar to the sidebar and reorganized sidebar elements accordingly. --- src/features/sidebar/components/Sidebar.vue | 24 ++++++++++- .../components/SidebarExpandButton.vue | 41 +++++++++++++++++++ 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 src/features/sidebar/components/SidebarExpandButton.vue diff --git a/src/features/sidebar/components/Sidebar.vue b/src/features/sidebar/components/Sidebar.vue index aba07ba..15b2e1c 100644 --- a/src/features/sidebar/components/Sidebar.vue +++ b/src/features/sidebar/components/Sidebar.vue @@ -14,15 +14,37 @@ See the License for the specific language governing permissions and limitations under the License. --> + + \ No newline at end of file diff --git a/src/features/sidebar/components/SidebarExpandButton.vue b/src/features/sidebar/components/SidebarExpandButton.vue new file mode 100644 index 0000000..1802de9 --- /dev/null +++ b/src/features/sidebar/components/SidebarExpandButton.vue @@ -0,0 +1,41 @@ + + + + + + + \ No newline at end of file From e43784bff0efbd0345a18e1f87a85a1953aa158e Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 30 Jul 2026 19:48:12 +0200 Subject: [PATCH 3/7] feat(sidebar): implement sidebar visibility toggling --- src/features/sidebar/components/Sidebar.vue | 17 ++++++++-- src/layouts/LeftSidebarLayout.vue | 35 +++++++++++++++++++-- 2 files changed, 47 insertions(+), 5 deletions(-) diff --git a/src/features/sidebar/components/Sidebar.vue b/src/features/sidebar/components/Sidebar.vue index 15b2e1c..3cfcef7 100644 --- a/src/features/sidebar/components/Sidebar.vue +++ b/src/features/sidebar/components/Sidebar.vue @@ -16,14 +16,27 @@ limitations under the License.