feat: Ui Enhancements introduce two Ui changes, Filter section toggle and document section Resizer#440
Merged
Avijit-Microsoft merged 1 commit intodevfrom Aug 11, 2025
Merged
Conversation
Avijit-Microsoft
approved these changes
Aug 11, 2025
|
🎉 This PR is included in version 1.0.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
This pull request introduces a resizable panel feature to the home page, allowing users to adjust the widths of the documents and chat panels interactively. It also adds the ability to collapse and expand the filter panel, improving the flexibility and usability of the layout. The implementation includes a new
PanelResizercomponent, corresponding styles, and modifications to the home page logic and layout.Resizable Panels and Filter Panel Improvements
PanelResizerReact component (panelResizer.tsx) that enables users to resize the documents and chat panels by dragging a handle, with enforced minimum widths for usability. ([App/frontend-app/src/components/resizer/panelResizer.tsxR1-R125](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-4a0a17a1cbf4abdffaa33d1eeae9df1efa81d856d01041f12f3544df885147c6R1-R125))panelResizer.scss, including visual feedback for dragging and hover states, and global cursor overrides for a smoother UX. ([App/frontend-app/src/components/resizer/panelResizer.scssR1-R64](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-d9d940a8b8069e8ace73f4424357cc88763b2f4b8648dd57687b867e2f45998aR1-R64))home.tsxto use percentage-based widths for the documents and chat panels, making them dynamically adjustable via the resizer. ([[1]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4R69-R71),[[2]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4R567-R586),[[3]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4R690-R702))[[1]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4R244-R252),[[2]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4L529-R555),[[3]](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-45f592c539c293cb5c8ab7787435a92d5dba3424e228cf9fd3a4c0e64baa66c4R567-R586))home.module.scssto support the new resizable and collapsible features, ensuring smooth animations and minimum width constraints. ([App/frontend-app/src/pages/home/home.module.scssR40-R97](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator/pull/440/files#diff-a3541d5e5a917d57521b5d7f8378304b83c77085292cb29ed714343c52de270cR40-R97))These changes collectively provide a more flexible and interactive layout, enabling users to customize their workspace according to their needs.
Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information