Skip to content

Commit 93d2803

Browse files
almedina-msRebeccaAnnelicanhua
authored
[Sample] Add sample for Multiline Input.Text with Password style (#6527)
* Add sample file * Fix same id issue Co-authored-by: RebeccaAnne <rebecch@microsoft.com> Co-authored-by: Canhua Li <licanhua@live.com>
1 parent cf1e0a8 commit 93d2803

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"type": "AdaptiveCard",
3+
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
4+
"version": "1.5",
5+
"body": [
6+
{
7+
"type": "TextBlock",
8+
"text": "Both Input.Text elements should look the same as multiline is ignored for password",
9+
"wrap": true
10+
},
11+
{
12+
"type": "Input.Text",
13+
"id": "id0",
14+
"placeholder": "password",
15+
"style": "password",
16+
"label": "Regular Input.Text With Password Style"
17+
},
18+
{
19+
"type": "Input.Text",
20+
"id": "id1",
21+
"placeholder": "password",
22+
"style": "password",
23+
"label": "Multiline Input.Text With Password Style",
24+
"isMultiline": true
25+
}
26+
],
27+
"actions": [
28+
{
29+
"type": "Action.Submit",
30+
"title": "OK"
31+
}
32+
]
33+
}

0 commit comments

Comments
 (0)