summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2019-07-24 11:02:29 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2019-07-24 11:04:15 -0400
commit097812db3e9af94767b22ba93bcc3dbe5aea6653 (patch)
tree286a8b51e61309baf5312959f0294277d1bafc70
parent0386fba866e66afbba609ad21fb900b5b2973ffa (diff)
downloadsdl_core-feature/auto_complete_list.tar.gz
Update after proposal revisionfeature/auto_complete_list
-rw-r--r--src/components/interfaces/HMI_API.xml5
-rw-r--r--src/components/interfaces/MOBILE_API.xml7
2 files changed, 9 insertions, 3 deletions
diff --git a/src/components/interfaces/HMI_API.xml b/src/components/interfaces/HMI_API.xml
index d2ebe62575..c4bdd6c08d 100644
--- a/src/components/interfaces/HMI_API.xml
+++ b/src/components/interfaces/HMI_API.xml
@@ -2906,7 +2906,10 @@
<description>If omitted, the entire keyboard will be enabled.</description>
</param>
<param name="autoCompleteList" type="String" maxlength="1000" minsize="0" maxsize="100" array="true" mandatory="false">
- <description>Allows an app to prepopulate the text field with a list of suggested or completed entry as the user types</description>
+ <description>
+ Allows an app to prepopulate the text field with a list of suggested or completed entries as the user types.
+ If empty, the auto-complete list will be removed from the screen.
+ </description>
</param>
</struct>
diff --git a/src/components/interfaces/MOBILE_API.xml b/src/components/interfaces/MOBILE_API.xml
index 8fe5643301..d1e8f2c6db 100644
--- a/src/components/interfaces/MOBILE_API.xml
+++ b/src/components/interfaces/MOBILE_API.xml
@@ -2397,8 +2397,11 @@
<param name="autoCompleteText" type="String" maxlength="1000" mandatory="false" since="3.0" until="6.0" />
</history>
</param>
- <param name="autoCompleteList" type="String" maxlength="1000" minsize="1" maxsize="100" array="true" mandatory="false" since="6.0">
- <description>Allows an app to prepopulate the text field with a list of suggested or completed entry as the user types</description>
+ <param name="autoCompleteList" type="String" maxlength="1000" minsize="0" maxsize="100" array="true" mandatory="false" since="6.0">
+ <description>
+ Allows an app to prepopulate the text field with a list of suggested or completed entries as the user types.
+ If empty, the auto-complete list will be removed from the screen.
+ </description>
</param>
</struct>