Skip to content

Commit

Permalink
Merge pull request #153 from bworline/widget-sample
Browse files Browse the repository at this point in the history
Add a sample Widget
  • Loading branch information
dianagalarza committed Apr 25, 2024
2 parents 6de8a97 + 5eb3645 commit c877493
Show file tree
Hide file tree
Showing 15 changed files with 4,623 additions and 657 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ This sample adds a "Sample WorkItem Form Group" extension to workitem form to sh

This sample also provides a unit testing example with minimal necessary mocks.

## Widget, WidgetConfiguration

This sample adds a widget extension using the `IConfigurableWidget` interface to demonstrate how to customize your dashboards to show status, progress, or trends. It includes an associated widget configuration using the `IWidgetConfiguration` interface so users can customize the experience.

## WorkItemOpen

This sample adds a "Sample WorkItem Open" hub to the Boards hub group to show how to interact with the `IWorkItemFormNavigationService` service. It gives UI for you to open an existing work item (by id) or open the work item form for a new work item (by work item type). Either of these options open a dialog in the host frame.
Expand Down
35 changes: 35 additions & 0 deletions azure-devops-extension-dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"manifestVersion": 1,
"id": "samples-dev",
"publisher": "ms-samples",
"version": "1.0.396",
"name": "Extension Sample [DEV]",
"description": "Azure DevOps extension sample. For development purposes only.",
"categories": [
"Azure Pipelines"
],
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "logo.png"
},
"content": {
"details": {
"path": "overview.md"
}
},
"files": [
{
"path": "static",
"addressable": true
},
{
"path": "dist",
"addressable": true
}
],
"baseUri": "https://localhost:3000"
}
Loading

0 comments on commit c877493

Please sign in to comment.