1# Universal Events 2 3 4Different from private events, universal events can be bound to most components. 5 6 7| Name| Parameter| Description| 8| -------- | -------- | -------- | 9| click | - | Triggered when the component is clicked. | 10| longpress | - | Triggered when the component is long pressed. | 11| swipe<sup>5+</sup> | SwipeEvent | Triggered when a user quickly swipes on the component. | 12 13 14SwipeEvent (inherited from BaseEvent) 15 16| Attribute| Type| Description | 17| -------- | -------- | -------- | 18| direction | string | Swiping direction. The value can be one of the following:<br>- **left**: Swipe left.<br>- **right**: Swipe right.<br>- **up**: Swipe up.<br>- **down**: Swipe down. | 19 20