You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Applicable only on FIXED grid tracks. The size of the track in pixels.
6843
+
* Applicable only on FIXED or FLEX grid tracks. In FIXED tracks, the size of the track in pixels. In FlEX tracks, the fractional unit value (equivalent to the [`fr` unit](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Basic_concepts_of_grid_layout#the_fr_unit) in CSS)
6844
6844
* Optional for `FLEX` tracks.
6845
-
* If the setter for this value is called on a `FLEX` track, the track will be converted to a `FIXED` track.
6846
6845
*/
6847
6846
value?: number
6848
6847
/**
6849
-
* The type of the grid track. `FLEX` indicates that the track will grow to fill the available space in the container (evenly divided among all flex tracks in the grid), while `FIXED` indicates that the track will have a fixed size.
6848
+
* The type of the grid track. `FLEX` indicates that the track behaves like the CSS grid [`fr` unit](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Basic_concepts_of_grid_layout#the_fr_unit).
6849
+
* `FIXED` indicates that the track will have a fixed pixel size.
6850
+
* `HUG` indicates that the track will size to fit its content, equivalent to a CSS setting of `fit-content(100%)`.
6851
+
* It is not a valid state for 'FLEX' tracks to be set on a grid when the container is set to layoutSizingHorizonal/layoutSizingVertical 'HUG'
* Applicable only on FIXED grid tracks. The size of the track in pixels.
6839
+
* Applicable only on FIXED or FLEX grid tracks. In FIXED tracks, the size of the track in pixels. In FlEX tracks, the fractional unit value (equivalent to the [`fr` unit](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Basic_concepts_of_grid_layout#the_fr_unit) in CSS)
6840
6840
* Optional for `FLEX` tracks.
6841
-
* If the setter for this value is called on a `FLEX` track, the track will be converted to a `FIXED` track.
6842
6841
*/
6843
6842
value?: number
6844
6843
/**
6845
-
* The type of the grid track. `FLEX` indicates that the track will grow to fill the available space in the container (evenly divided among all flex tracks in the grid), while `FIXED` indicates that the track will have a fixed size.
6844
+
* The type of the grid track. `FLEX` indicates that the track behaves like the CSS grid [`fr` unit](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Basic_concepts_of_grid_layout#the_fr_unit).
6845
+
* `FIXED` indicates that the track will have a fixed pixel size.
6846
+
* `HUG` indicates that the track will size to fit its content, equivalent to a CSS setting of `fit-content(100%)`.
6847
+
* It is not a valid state for 'FLEX' tracks to be set on a grid when the container is set to layoutSizingHorizonal/layoutSizingVertical 'HUG'
0 commit comments