-
![]() in the demo for I'm guessing this is a bug ? using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Are you clicking only on the search icons? If you look in your screenshot, the text above the example states:
The example is demonstrating the |
Beta Was this translation helpful? Give feedback.
Are you clicking only on the search icons? If you look in your screenshot, the text above the example states:
The example is demonstrating the
point-events-*
classes on the search icon wrapper<div>
elements, not the whole<div>
. Thus the left side should do nothing when clicking on the search icon, while the right side should allow you to click-through the search icon to the input element. The example demonstrates that withpointer-events-auto
, the search icon element intercepts the click, whereas withpointer-events-none
, the search icon no longer intercepts the click. This then means the<input>
element underneath gets the click eve…