-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathBotBuilderCommunity.MultiSelectChoiceInput.uischema
More file actions
62 lines (62 loc) · 1.43 KB
/
BotBuilderCommunity.MultiSelectChoiceInput.uischema
File metadata and controls
62 lines (62 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"$schema": "https://schemas.botframework.com/schemas/component/v1.0/component.schema",
"form": {
"label": "Prompt for Multi-Select-choice",
"subtitle": "Multi-Select-Choice Input(Bot Builder Community)",
"description": "Pick one or more values from a list of choices",
"helpLink": "https://aka.ms/bf-composer-docs-dialog",
"order": [
"prompt",
"choices",
"Orientation",
"ActionName",
"Result",
"*"
],
"hidden": [
"validations",
"property",
"defaultValueResponse"
]
},
"menu": {
"label": "Multi-Select-choice",
"submenu": [ "Ask a question", "Community" ]
},
"flow": {
"widget": "PromptWidget",
"body": "=action.prompt",
"nowrap": true,
"botAsks": {
"widget": "ActionCard",
"header": {
"widget": "ActionHeader",
"icon": "MessageBot",
"colors": {
"theme": "#BBEAF4",
"icon": "#5C2E91"
}
},
"body": {
"widget": "LgWidget",
"field": "prompt",
"defaultContent": "<prompt>"
}
},
"userInput": {
"widget": "ActionCard",
"defaultContent": "<prompt>",
"header": {
"widget": "ActionHeader",
"disableSDKTitle": false,
"icon": "User",
"menu": "none",
"colors": {
"theme": "#E5F0FF",
"icon": "#0078D4"
}
},
"body": "=action.Result"
}
}
}