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
"`box-only` causes touch events on the container's child components to pass through and will only detect touch events on the container itself.",
193
256
},
257
+
{
258
+
Component: OverflowVisibleExample,
259
+
title: '`overflow: visible`',
260
+
description:
261
+
'`overflow: visible` style should allow subelements that are outside of the parent box to be touchable. Tapping the parts of Box B outside Box A should print "B touched" and "A touched", and tapping Box C should also print "C touched" and "A touched".',
262
+
},
263
+
{
264
+
Component: OverflowHiddenExample,
265
+
title: '`overflow: hidden`',
266
+
description:
267
+
'`overflow: hidden` style should only allow subelements within the parent box to be touchable. Tapping just below Box A (where Box B would otherwise extend if it weren\'t cut off) should not trigger any touches or messages. Touching Box D (inside the bounds) should print "D touched" and "A touched".',
0 commit comments