Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion schemas/1.5.0/adaptive-card.json
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,18 @@
2293
]
},
"rtl": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "When `true` content in this Adaptive Card should be presented right to left. When 'false' content in this Adaptive Card should be presented left to right. If unset, the default platform behavior will apply.",
"version": "1.5"
},
"speak": {
"type": "string",
"description": "Specifies what should be spoken for this entire card. This is simple text or SSML fragment."
Expand Down Expand Up @@ -447,7 +459,7 @@
"type": "null"
}
],
"description": "When `true` content in this container should be presented right to left. When 'false' content in this container should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply.",
"description": "When `true` content in this column should be presented right to left. When 'false' content in this column should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply.",
"version": "1.5"
},
"separator": {
Expand Down
5 changes: 5 additions & 0 deletions schemas/src/AdaptiveCard.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
2293
]
},
"rtl": {
"type": "boolean?",
"description": "When `true` content in this Adaptive Card should be presented right to left. When 'false' content in this Adaptive Card should be presented left to right. If unset, the default platform behavior will apply.",
"version": "1.5"
},
"speak": {
"type": "string",
"description": "Specifies what should be spoken for this entire card. This is simple text or SSML fragment."
Expand Down
2 changes: 1 addition & 1 deletion schemas/src/elements/Column.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"rtl": {
"type": "boolean?",
"description": "When `true` content in this container should be presented right to left. When 'false' content in this container should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply.",
"description": "When `true` content in this column should be presented right to left. When 'false' content in this column should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply.",
"version": "1.5"
},
"separator": {
Expand Down
7 changes: 6 additions & 1 deletion schemas/src/enums/ChoiceInputStyle.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"description": "Style hint for `Input.ChoiceSet`.",
"values": [
"compact",
"expanded"
"expanded",
{
"value": "filtered",
"description": "Allows users to filter choices in a choice set.",
"version": "1.5"
}
]
}
1 change: 1 addition & 0 deletions source/nodejs/adaptivecards-site/schema-explorer-toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Fact
- ImageSet
- Table
- TableCell
- Actions:
- Action.OpenUrl
- Action.Submit
Expand Down
1 change: 1 addition & 0 deletions specs/elements/AdaptiveCard.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
| **fallbackText** | `string` | No | Text shown when the client doesn't support the version specified (may contain markdown). | 1.0 |
| **backgroundImage** | `BackgroundImage`, `uri` | No | Specifies the background image of the card. | 1.2, 1.0 |
| **minHeight** | `string` | No | Specifies the minimum height of the card. | 1.2 |
| **rtl** | `boolean?` | No | When `true` content in this Adaptive Card should be presented right to left. When 'false' content in this Adaptive Card should be presented left to right. If unset, the default platform behavior will apply. | 1.5 |
| **speak** | `string` | No | Specifies what should be spoken for this entire card. This is simple text or SSML fragment. | 1.0 |
| **lang** | `string` | No | The 2-letter ISO-639-1 language used in the card. Used to localize any date/time functions. | 1.0 |
| **verticalContentAlignment** | `VerticalContentAlignment` | No | Defines how the content should be aligned vertically within the container. Only relevant for fixed-height cards, or cards with a `minHeight` specified. | 1.1 |
Expand Down
2 changes: 1 addition & 1 deletion specs/elements/Column.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| **bleed** | `boolean` | No | Determines whether the column should bleed through its parent's padding. | 1.2 |
| **fallback** | `Column`, `FallbackOption` | No | Describes what to do when an unknown item is encountered or the requires of this or any children can't be met. | 1.2 |
| **minHeight** | `string` | No | Specifies the minimum height of the column in pixels, like `"80px"`. | 1.2 |
| **rtl** | `boolean?` | No | When `true` content in this container should be presented right to left. When 'false' content in this container should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply. | 1.5 |
| **rtl** | `boolean?` | No | When `true` content in this column should be presented right to left. When 'false' content in this column should be presented left to right. When unset layout direction will inherit from parent container or column. If unset in all ancestors, the default platform behavior will apply. | 1.5 |
| **separator** | `boolean` | No | When `true`, draw a separating line between this column and the previous column. | 1.0 |
| **spacing** | `Spacing` | No | Controls the amount of spacing between this column and the preceding column. | 1.0 |
| **selectAction** | `ISelectAction` | No | An Action that will be invoked when the `Column` is tapped or selected. `Action.ShowCard` is not supported. | 1.1 |
Expand Down
2 changes: 1 addition & 1 deletion specs/elements/Input.ChoiceSet.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* **Allowed values**:
* `"compact"`
* `"expanded"`

* `"filtered"`: Added in version 1.5. Allows users to filter choices in a choice set.

## fallback

Expand Down