-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Features * Feature: ABNF validation (#2044) * Feature: Unconsent permissions (#2063) Bug Fixes * Fix: Prevent sample groups from collapsing (#2101) * Fix: Remove float CSS property on snippets (#2106) * Fix: Update wordSeparators in Monaco (#2109) * Fix: Failing tests (#2144) * Fix: failing tests [Attempt 2] (#2145) * Fix: stop recursive deep copy (#2151) * Fix: display suggestions for placeholder segments (#2156) * Fix: Pass empty array to signOutSuccess when signing out (#2162) * Fix: Permission search results (#2167) * Fix: Component name on device characteristics event (#2173) * Fix: Add consent status for successful consent (#2187) Enhancements * Task: Fix auto-collapsing of permissions items (#2099) * Task: Take Modify Permissions out of preview (#2110) * Task: fix accessibility unnecessary empty data scans (#2118) * Task: Update doc.microsoft links to learn.microsoft (#2148) * Task: Remove errors telemetry filter to capture more details (#2124) * Task: Add Adaptive card templates to local repo (#2182) * Task: Update adaptive cards templating (#2183) * Task: more-info telemetry capture (#2188) Dependencies * Task: upgrade redux (#2179) * Chore: Dependabot upgrades September 2022 (#2098)
- Loading branch information
Showing
146 changed files
with
5,363 additions
and
963 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
Large diffs are not rendered by default.
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 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,59 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"version": "1.0", | ||
"@odata.type": "#microsoft.graph.user", | ||
"body": [ | ||
{ | ||
"type": "Container", | ||
"$data": "{value}", | ||
"items": [ | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": "stretch", | ||
"items": [ | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": "auto", | ||
"items": [ | ||
{ | ||
"type": "Image", | ||
"altText": "", | ||
"url": "https://graph.microsoft.com/v1.0/users/{mail}/photo/$value", | ||
"size": "Small", | ||
"style": "Person" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": "stretch", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "{displayName}" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "{jobTitle}", | ||
"isSubtle": true, | ||
"spacing": "None" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json" | ||
} |
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 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"@odata.type": "#microsoft.graph.driveItem", | ||
"body": [ | ||
{ | ||
"$data": "${value}", | ||
"type": "Container", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "${name}", | ||
"weight": "Bolder" | ||
}, | ||
{ | ||
"type": "FactSet", | ||
"facts": [ | ||
{ | ||
"title": "Created", | ||
"value": "{{DATE(${createdDateTime}, SHORT)}} by ${createdBy.user.displayName}" | ||
}, | ||
{ | ||
"title": "Modified", | ||
"value": "{{DATE(${lastModifiedDateTime}, SHORT)}} by ${lastModifiedBy.user.displayName}" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "ActionSet", | ||
"actions": [ | ||
{ | ||
"type": "Action.OpenUrl", | ||
"title": "Open file", | ||
"url": "${webUrl}" | ||
} | ||
] | ||
} | ||
], | ||
"separator": true | ||
} | ||
], | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json", | ||
"version": "1.0" | ||
} |
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,128 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"version": "1.0", | ||
"body": [ | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": 2 | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": 4, | ||
"items": [ | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": "auto", | ||
"items": [ | ||
{ | ||
"type": "Image", | ||
"altText": "", | ||
"size": "Small", | ||
"url": "https://graph.microsoft.com/v1.0/users/{profile.mail}/photo/$value", | ||
"style": "Person" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": "stretch", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "{profile.displayName}" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "{profile.jobTitle}", | ||
"spacing": "None", | ||
"isSubtle": true | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "{profile.officeLocation}", | ||
"spacing": "None", | ||
"isSubtle": true | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"style": "emphasis" | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Container", | ||
"style": "emphasis", | ||
"bleed": true, | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "People reporting to {profile.displayName} ({length(reports.value)})", | ||
"wrap": true | ||
}, | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": "stretch", | ||
"items": [ | ||
{ | ||
"type": "ColumnSet", | ||
"columns": [ | ||
{ | ||
"type": "Column", | ||
"width": "auto", | ||
"items": [ | ||
{ | ||
"type": "Image", | ||
"altText": "", | ||
"url": "https://graph.microsoft.com/v1.0/users/{reports[0].mail}/photo/$value", | ||
"size": "Small", | ||
"style": "Person" | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": "stretch", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "{reports.value[0].displayName}" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "{reports.value[0].jobTitle}", | ||
"isSubtle": true, | ||
"spacing": "None" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "Column", | ||
"width": "stretch" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
], | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json" | ||
} |
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,57 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"version": "1.4", | ||
"@odata.type": "#microsoft.graph.group", | ||
"body": [ | ||
{ | ||
"type": "Container", | ||
"$data": "${value}", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"$when": "${visibility != $null}", | ||
"text": "${displayName} (${visibility})", | ||
"size": "Medium", | ||
"weight": "Bolder" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"$when": "${visibility == $null}", | ||
"text": "${displayName}", | ||
"size": "Medium", | ||
"weight": "Bolder" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"$when": "${description != $null}", | ||
"text": "${description}", | ||
"spacing": "Small", | ||
"wrap": true, | ||
"maxLines": 2 | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"$when": "${description == $null}", | ||
"text": "No description provided", | ||
"spacing": "Small", | ||
"wrap": true, | ||
"maxLines": 2, | ||
"isSubtle": true | ||
}, | ||
{ | ||
"type": "ActionSet", | ||
"actions": [ | ||
{ | ||
"type": "Action.OpenUrl", | ||
"$when": "${mail != $null}", | ||
"title": "Send an email", | ||
"url": "mailto:${mail}" | ||
} | ||
] | ||
} | ||
], | ||
"separator": true | ||
} | ||
], | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json" | ||
} |
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,28 @@ | ||
{ | ||
"type": "AdaptiveCard", | ||
"version": "1.0", | ||
"@odata.type": "#microsoft.graph.trending", | ||
"body": [ | ||
{ | ||
"type": "Container", | ||
"$data": "{value}", | ||
"items": [ | ||
{ | ||
"type": "TextBlock", | ||
"text": "{resourceVisualization.title}" | ||
}, | ||
{ | ||
"type": "TextBlock", | ||
"text": "{resourceVisualization.previewText}" | ||
}, | ||
{ | ||
"type": "Image", | ||
"altText": "", | ||
"url": "{resourceVisualization.previewImageUrl}" | ||
} | ||
], | ||
"separator": true | ||
} | ||
], | ||
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json" | ||
} |
Oops, something went wrong.