From 44b74b683a7d5b059ed2bbd972768432be94b0f0 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Mon, 8 May 2023 07:12:42 +0000 Subject: [PATCH] Update API doc --- doc/common/apidoc/index.json | 82 +++++++++++++++++++++++++++++++++++- 1 file changed, 80 insertions(+), 2 deletions(-) diff --git a/doc/common/apidoc/index.json b/doc/common/apidoc/index.json index af93f9aa3..761ae066f 100644 --- a/doc/common/apidoc/index.json +++ b/doc/common/apidoc/index.json @@ -2595,6 +2595,13 @@ "readonly": false, "type": "AutoCompleteState", "default": "" + }, + { + "name": "context", + "optional": false, + "readonly": false, + "type": "AutoCompleteContext", + "default": "" } ], "methods": [] @@ -2869,12 +2876,83 @@ "relatedProp": "", "props": [ { - "name": "d_collapsed", + "name": "id", + "optional": false, + "readonly": false, + "type": "string", + "default": "", + "description": "Current id state as a string." + }, + { + "name": "focused", "optional": false, "readonly": false, "type": "boolean", "default": "false", - "description": "Current collapsed state as a boolean." + "description": "Current focused state as a boolean." + }, + { + "name": "focusedOptionIndex", + "optional": false, + "readonly": false, + "type": "number", + "default": "", + "description": "Current focused item index as a number." + }, + { + "name": "focusedMultipleOptionIndex", + "optional": false, + "readonly": false, + "type": "number", + "default": "", + "description": "Current focused item index as a number." + }, + { + "name": "overlayVisible", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current overlay visible state as a boolean." + }, + { + "name": "searching", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current search state as a boolean." + } + ], + "methods": [] + }, + "AutoCompleteContext": { + "description": "Defines current options in AutoComplete component.", + "relatedProp": "", + "props": [ + { + "name": "selected", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current selection state of the item as a boolean." + }, + { + "name": "focused", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current focus state of the item as a boolean." + }, + { + "name": "disabled", + "optional": false, + "readonly": false, + "type": "boolean", + "default": "false", + "description": "Current disabled state of the item as a boolean." } ], "methods": []