1# ArkUI Subsystem Changelog
2
3## cl.arkui.1 Disabling of Online Images for JS Widgets in \<FormComponent>
4
5Disabled online images for JS widgets in the **\<FormComponent>**.
6
7**Change Impact**
8
9After the change, JS widgets in the **\<FormComponent>** cannot load or display online images. You are advised to save online images to the memory to display them in JS widgets.
10## cl.arkui.2 Behavior Change of \<TextInput>, \<TextArea>, and \<Search> Components
11Changed the behavior of **\<TextInput>**, **\<TextArea>**, and **\<Search>** components so that their obtaining focus will enable the input method.
12
13You need to adapt your application based on the following information.
14
15
16**Change Impact**
17
18The **\<TextInput>**, **\<TextArea>**, and **\<Search>** components of API version 10 are affected.
19
20**Key API/Component Changes**
21
22When the **\<TextInput>**, **\<TextArea>**, and **\<Search>** components obtain focus, the input method is displayed.
23
24**Adaptation Guide**
25
26Use **enableKeyboardOnFocus(bool)** to set whether to enable the input method when the component obtains focus. The default value of this parameter is **true**.
27
28## cl.arkui.3 Intercepting of Invalid Component Attribute and Parameter Values
29
30
31Changed invalid values to default values.
32
33You need to adapt your application based on the following information.
34
35
36**Change Impact**
37
38All component attributes and parameters with invalid values are affected.
39
40**Key API/Component Changes**
41
42When an attribute value is changed from a normal value to an invalid value:
43
44- Before change: The invalid value setting is skipped.
45
46- After change: The invalid value is intercepted and the default value is used. For attributes that do not have default values, such as **width** and **height**, the original normal value settings are canceled.
47
48**Adaptation Guide**
49
50
51Check for Invalid values of component attributes and parameters, such as **"100abc"**, and change them to normal values.
52
53