feat: add hover action support (#3994)

Co-authored-by: LawyZheng <lawyzheng1106@gmail.com>
This commit is contained in:
Mohamed Khalil
2025-12-09 17:27:26 +02:00
committed by GitHub
parent 0e8d667959
commit f49b07f30d
22 changed files with 281 additions and 13 deletions

View File

@@ -264,6 +264,7 @@ export interface CustomCredentialServiceConfigResponse {
export const ActionTypes = {
InputText: "input_text",
Click: "click",
Hover: "hover",
SelectOption: "select_option",
UploadFile: "upload_file",
complete: "complete",
@@ -290,6 +291,7 @@ export const ReadableActionTypes: {
} = {
input_text: "Input Text",
click: "Click",
hover: "Hover",
select_option: "Select Option",
upload_file: "Upload File",
complete: "Complete",