Constrain grid child element sizes to cell boundaries during resize #83
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.
Grid child elements could previously be resized beyond their grid cell boundaries, causing layout overlap and breaking the visual grid structure. This PR implements proper size constraints that limit child elements to their allocated grid cell dimensions during resize operations.
Changes Made
LayoutDesignerService Enhancements
getGridChildMaxDimensions()method to calculate maximum allowed dimensions for grid child elements based on their cell position, span, and the parent grid's sizing configurationcalculateGridSizes()helper method to compute actual grid column/row sizes supporting Star (*), Absolute (px), and Auto sizing typesDesignerCanvasComponent Resize Logic
onMouseMove()resize handler to detect when an element being resized is a child of a Grid layoutTechnical Details
The implementation works by:
element.parent?.type === ElementType.Grid)Before/After Comparison
Before: Grid child elements could exceed cell boundaries, overlapping adjacent cells

After: Elements are properly constrained within their grid cell boundaries

The grid visualization clearly shows the cell boundaries with dashed lines, and the red label element is now properly contained within its assigned cell.
Fixes #80.
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
fonts.googleapis.comng build(dns block)www.google-analytics.comng build(dns block)ng serve --host 0.0.0.0 --port 4200(dns block)ng test --watch=false --browsers=ChromeHeadless(dns block)If you need me to access, download, or install something from one of these locations, you can either:
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.