1# ArkUI Changelog
2## cl.ArkUI.1 Behavior Changes of Component Pressed State
3
4**Access Level**
5
6Open API
7
8**Reason for Change**
9
10Optimized the pressed state style in the polymorphic style attribute.
11
12**Change Impact**
13
14This change affects the validation or cancellation of the pressed state in the polymorphic style attribute.
15
16**Change Since**
17
18OpenHarmony SDK 4.1.3.3
19
20**Key API/Component Changes**
21
22In versions earlier than API version 11:
23
24* A component enters the pressed state when touched, and remains in this state, even after the user's finger leaves the component touch target, until the finger is lifted.
25* If the component is touched with multiple fingers, it remains in the pressed state until some of the fingers are lifted.
26* If a component is placed in a scroll container component (such as **\<List>**), it will enter the pressed state when swiped on, and then immediately exit that state.
27
28Since API version 11:
29
30* A component enters the pressed state when touched and remains in this state until the user's finger leaves the component touch target.
31* If the component is touched with multiple fingers, it remains in the pressed state until all of the fingers are lifted.
32* If a component is placed in a scroll container component (such as **\<List>**), it will not enter the pressed state when swiped on.
33
34**Adaptation Guide**
35
36N/A