1# ArkUI Subsystem Changelog 2 3## cl.arkui.1 Value Change of the PanelHeight Enum WRAP_CONTENT from 0 to 'wrapContent' 4 5**Change Impact** 6 7Before the change, both **customHeight(0)** and **customHeight(PanelHeight.WRAP_CONTENT)** configure the component to adapt to the content height. 8After the change, **customHeight(0)** sets the content height to **0**, and **customHeight(PanelHeight.WRAP_CONTENT)** configures the component to adapt to the content height. 9 10**Key API/Component Changes** 11 12The value of **WRAP_CONTENT** of the **PanelHeight** enum is changed from **0** to **'wrapContent'**. This API behavior change does not affect your use of the API. 13 14## cl.arkui.2 Change of the Default Value for aspectRatio Set to an Invalid Value or undefined 15 16**Change Impact** 17 18Before the change, if **aspectRatio** is set to a negative value or **undefined**, the default value **1.0** is used. 19 20After the change, if **aspectRatio** is set to a negative value or **undefined**, the default value **null** is used. For example, if a **\<Row>** component has only its width set and does not have any child component, then when **aspectRatio** is not set or is set to a negative value, the height of the **\<Row>** component is 0. 21 22## cl.arkui.3 Change of Effect in Setting defaultFocus to true 23 24**Change Impact** 25In versions earlier than 4.0.9.1, setting **defaultFocus** to **true** does not take effect. 26 27In 4.0.9.1 and later versions, setting **defaultFocus** to **true** takes effect. 28 29## cl.arkui.4 Change of Focus Navigation for tabIndex 30 31**Change Impact** 32In versions earlier than 4.0.10.2, the focus navigation for **tabIndex** is not cyclic. 33 34In 4.0.10.2 and later versions, the focus navigation for **tabIndex** is cyclic. 35 36## cl.arkui.5 Change of Constraint Calculation for the \<TextInput> Component 37 38**Change Impact** 39 40In versions earlier than 4.0.11.2, when **margin** is set for the **\<TextInput>** component, the value of **margin** is subtracted from the component's constraint. 41 42In versions earlier than 4.0.11.2, the value of **margin** is not subtracted from the **\<TextInput>** component's constraint. 43