Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
blank_issues_enabled: false
blank_issues_enabled: true
contact_links:
- name: Question
about: Please ask questions on GitHub Discussions
Expand Down
24 changes: 24 additions & 0 deletions samples/ConsolidatedElementSamples/Input.Toggle.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "Input.Toggle",
"id": "acceptTerms",
"title": "I accept the terms and agreements",
"value": "true",
"valueOn": "true",
"valueOff": "false",
"label": "Please check the box below to accept the terms and agreements:",
"isRequired": true,
"errorMessage": "You must accept the terms to continue."
}
],
"actions": [
{
"type": "Action.Submit",
"title": "OK"
}
]
}
8 changes: 4 additions & 4 deletions samples/v1.0/Scenarios/WeatherLarge.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
{
"type": "TextBlock",
"horizontalAlignment": "center",
"wrap": false,
"wrap": true,
"text": "Wednesday"
},
{
Expand Down Expand Up @@ -101,7 +101,7 @@
{
"type": "TextBlock",
"horizontalAlignment": "center",
"wrap": false,
"wrap": true,
"text": "Thursday"
},
{
Expand Down Expand Up @@ -137,7 +137,7 @@
{
"type": "TextBlock",
"horizontalAlignment": "center",
"wrap": false,
"wrap": true,
"text": "Friday"
},
{
Expand Down Expand Up @@ -173,7 +173,7 @@
{
"type": "TextBlock",
"horizontalAlignment": "center",
"wrap": false,
"wrap": true,
"text": "Saturday"
},
{
Expand Down
20 changes: 20 additions & 0 deletions samples/v1.5/Elements/Input.Text.PasswordStyle.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "Input.Text",
"id": "id0",
"placeholder": "password",
"style": "password",
"label": "Input.Text With Password Style"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "OK"
}
]
}
Loading