From 74ff2b11506a8385c21735c7e0adf88a472e96bb Mon Sep 17 00:00:00 2001 From: yaoyuchi Date: Wed, 9 Feb 2022 21:35:04 +0800 Subject: [PATCH] list support scrollbarReservedHeight attr Signed-off-by: yaoyuchi --- api/config/hml/container/list.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/api/config/hml/container/list.json b/api/config/hml/container/list.json index 78de6422e9..f39564d0ee 100644 --- a/api/config/hml/container/list.json +++ b/api/config/hml/container/list.json @@ -33,6 +33,26 @@ } ] }, + { + "name": "scrollbarreservedheight", + "supportedDevices": ["phone", "tablet", "tv", "wearable"], + "required": false, + "description": [ + { + "name": "Whether to reserved space at the bottom on the scorllbar", + "supportedDevices": ["phone", "tablet", "tv", "wearable"] + } + ], + "type": "enum", + "options": [ + { + "name": "true" + }, + { + "name": "false" + } + ] + }, { "name": "cachedcount", "supportedDevices": ["phone", "tablet", "tv", "wearable"], -- Gitee