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
Copy file name to clipboardExpand all lines: packages/docs/docs/flex/props.mdx
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -917,6 +917,23 @@ Controls if the overflowing content should be clipped or visible. Applies only w
917
917
918
918
---
919
919
920
+
### stackingOrder
921
+
922
+
Strategy for setting zIndex of items. This determines which items appear on top when they overlap.
923
+
924
+
| type | default | required |
925
+
| ----------------- | ------- | -------- |
926
+
|`'asc' \| 'desc'`|`'asc'`| NO |
927
+
928
+
-`'asc'` - items with higher index have higher zIndex (default). This means items at the end of the list of items are rendered on top of items at the beginning.
929
+
-`'desc'` - items with higher index have lower zIndex. This means items at the beginning of the list of items are rendered on top of items at the end.
930
+
931
+
:::info
932
+
The currently dragged item is always rendered on top of all other items, regardless of this setting.
933
+
:::
934
+
935
+
---
936
+
920
937
### debug
921
938
922
939
Enables debug mode, which shows additional views helpful for debugging. This property is intended for the library **developers** and is not recommended for the library **users**.
Strategy for setting zIndex of items. This determines which items appear on top when they overlap.
809
+
810
+
| type | default | required |
811
+
| ----------------- | ------- | -------- |
812
+
|`'asc' \| 'desc'`|`'asc'`| NO |
813
+
814
+
-`'asc'` - items with higher index have higher zIndex (default). This means items at the end of the list of items are rendered on top of items at the beginning.
815
+
-`'desc'` - items with higher index have lower zIndex. This means items at the beginning of the list of items are rendered on top of items at the end.
816
+
817
+
:::info
818
+
The currently dragged item is always rendered on top of all other items, regardless of this setting.
0 commit comments