Closed ghiscoding closed 3 months ago
Run & review this pull request in StackBlitz Codeflow.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 99.8%. Comparing base (
7b01cc2
) to head (0cc1070
). Report is 4 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
transform
instead oftop
to fix some UI rendering issue on large dataset.slick-row
have a top offset to represent which which row it is, let say ourrowHeight
is 25px, then the 2nd row typically has a CSS style oftop: 50px
, the 3rd row hastop: 75px
, and so on... this new grid option would usetransform: translateY(25px)
instead, there's benefit in doing this as shown in the article belowmajor
release (if it ever happen) but for now we can at least provide it as a new grid option. I also tested this with the Example Grouping (ESM) demo