1#  ArkUI Subsystem Changelog
2
3## cl.arkui.1 Change in the Effect of Setting constraintSize minWidth Alone in the \<TextInput> or \<TextArea> Component
4
5**Access Level**
6
7Public
8
9**Reason for Change**
10
11The effect of **constraintSize minWidth** on API version 10 does not meet the application expectation and needs to be corrected on API version 11.
12
13**Change Impact**
14
15This change is a non-compatible change.
16
17**Change Since**
18
19OpenHarmony SDK 4.1.3.1
20
21**Key API/Component Changes**
22
23TextInput/TextArea
24
25Before change: If **constraintSize({minWidth:100})** is set and the **width** attribute is not specified for a **\<TextInput>** component, the width of the component is the maximum width passed by the parent component.
26
27After change: If **constraintSize({minWidth:100})** is set and the **width** attribute is not specified for a **\<TextInput>** component, the width of the **\<TextInput>** component is 100 at minimum when the width of the parent component is greater than or equal to 100, and automatically increases to adapt to the content.
28
29**Adaptation Guide**
30
31N/A
32
33## cl.arkui.2 Change of hideNavBar Effectiveness for the \<Navigation> Component
34
35**Access Level**
36
37Public
38
39**Reason for Change**
40
41The effectiveness of the **hideNavBar** API is increased from the dual-column mode only to both single-column and dual-column modes.
42
43**Change Impact**
44
45This change is a non-compatible change. Before change: The **hideNavBar** API has no effect in the single-column mode.<br>After change: The **hideNavBar** API works for both single-column and dual-column modes. If no target page is available, using this API may result in a blank screen.
46
47**API Level**
48
499
50
51**Change Since**
52
53OpenHarmony SDK 4.1.3.1
54
55**Adaptation Guide**
56
57When this API is used, the navigation bar, including the title bar, content area, and toolbar, is hidden. In this case, if there is a navigation destination page in the navigation stack, the page at the top of the stack is displayed. Otherwise, a blank screen is displayed In versions earlier than API version 11, this API takes effect only in dual-column mode. Since API version 11, this API works for the single-column, dual-column, and adaptive modes. If a blank screen occurs due to the use of this API, you can remove this API or provide a navigation destination page in the navigation stack.
58