-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trim dynamic grids' collapsed extra rows/cols from the computed templ…
…ate (#6496) **Problem:** In grid templates when using `repeat` functions and `auto-fit`/`auto-fill`, the computed style might contain extra rows/cols, collapsed to a `0px` size. Normally this is not an issue, but since for dynamic templates we display the grid wireframe based on the computed dimensions, those extra dimensions would appear visible on the canvas as zombies. This behavior of appending extra collapsed tracks is explained in https://www.w3.org/TR/css-grid-1/#repeat-notation. <img width="928" alt="Screenshot 2024-10-08 at 13 55 48" src="https://github.com/user-attachments/assets/042ab509-8e82-4f7a-842c-cbb6a8ef7267"> **Fix:** When parsing the templates, first parse the `fromProps` template. Then, after parsing the computed template, if the `fromProps` template it contains dynamic tracks, trim any dangling collapsed elements in the computed template dimensions array. This is not necessarily optimal (if you have an explicit `0px` sized column in your template, it will be hidden from the canvas), but concretely it will do "the right thing" and you can always use the inspector to target any 0-sized cols/rows (which you would have to do anyways). <img width="928" alt="Screenshot 2024-10-08 at 14 00 03" src="https://github.com/user-attachments/assets/9bd5d76c-9eae-406b-956d-f1f300b19ba7"> Fixes #6495
- Loading branch information
Showing
1 changed file
with
52 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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