forked from webex/AdaptiveCards
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
JS designer component and major site refactor (microsoft#2247)
- Loading branch information
1 parent
cb41da8
commit 56d5ab0
Showing
326 changed files
with
65,448 additions
and
36,546 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json", | ||
"type": "AdaptiveCard", | ||
"version": "1.1", | ||
"body": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "Media supports **audio** and **video** content!", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "Video", | ||
"horizontalAlignment": "center", | ||
"spacing": "medium", | ||
"separator": true, | ||
"size": "large" | ||
}, | ||
{ | ||
"type": "Media", | ||
"poster": "https://adaptivecards.io/content/poster-video.png", | ||
"sources": [{ | ||
"mimeType": "video/mp4", | ||
"url": "https://adaptivecardsblob.blob.core.windows.net/assets/AdaptiveCardsOverviewVideo.mp4" | ||
}] | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "Audio", | ||
"horizontalAlignment": "center", | ||
"separator": true, | ||
"size": "large" | ||
}, | ||
{ | ||
"type": "Media", | ||
"poster": "https://adaptivecards.io/content/poster-audio.jpg", | ||
"sources": [{ | ||
"mimeType": "audio/mpeg", | ||
"url": "https://adaptivecardsblob.blob.core.windows.net/assets/AdaptiveCardsOverviewVideo.mp3" | ||
}] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json", | ||
"type": "AdaptiveCard", | ||
"version": "1.1", | ||
"fallbackText": "This card requires Media to be viewed. Ask your platform to update to Adaptive Cards v1.1 for this an more!", | ||
"body": [ | ||
{ | ||
"type": "Media", | ||
"poster": "https://adaptivecards.io/content/poster-video.png", | ||
"sources": [ | ||
{ | ||
"mimeType": "video/mp4", | ||
"url": "https://adaptivecardsblob.blob.core.windows.net/assets/AdaptiveCardsOverviewVideo.mp4" | ||
} | ||
] | ||
} | ||
], | ||
"actions": [ | ||
{ | ||
"type": "Action.OpenUrl", | ||
"title": "Learn more", | ||
"url": "https://adaptivecards.io" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
**/built/*.js | ||
**/built/*.js.map | ||
**/built/*.d.ts | ||
**/dist/*.js | ||
**/dist/*.js.map | ||
**/dist/*.d.ts | ||
lib/ | ||
dist/ |
Oops, something went wrong.