Skip to content

Commit 075d01f

Browse files
committed
feat(button): nav
1 parent 9156eb6 commit 075d01f

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,8 @@ CHANGELOG.md
198198

199199

200200
/AllTestResults/coverage.cobertura.xml
201-
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/Logs/*.txt
201+
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/Logs/*.txt
202+
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.json
203+
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.ci.json
204+
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.Development.json
205+
/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/wwwroot/appsettings.Production.json

PackageSettings.props.local.template

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<PropertyGroup>
44

55
<!--your local system environment variables-->
6-
<TELBlazorPackageSource>$(LocalPackagePath)</TELBlazorPackageSource>
6+
<TELBlazorPackageSource>$(TELBlazorPackageSource)</TELBlazorPackageSource>
7+
<!--<TELBlazorPackageSource>$(LocalPackagePath)</TELBlazorPackageSource>-->
8+
<!--<TELBlazorPackageSource>$(TELPackageSource)</TELBlazorPackageSource>-->
79
<NupkgOutputPath>$(LocalPackagePath)</NupkgOutputPath>
810

911
<!--for faster iteration-->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"profiles": {
3+
"TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client": {
4+
"commandName": "Project",
5+
"launchBrowser": true,
6+
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
7+
"applicationUrl": "https://localhost:7210;http://localhost:5193",
8+
"environmentVariables": {
9+
"ASPNETCORE_ENVIRONMENT": "Development"
10+
}
11+
//},
12+
//"TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client.CI": {
13+
// "commandName": "Project",
14+
// "launchBrowser": true,
15+
// "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
16+
// "applicationUrl": "https://localhost:7210;http://localhost:5193",
17+
// "environmentVariables": {
18+
// "ASPNETCORE_ENVIRONMENT": "ci"
19+
// }
20+
}
21+
}
22+
}
23+
}

TELBlazor.Components.ShowCase.E2ETests.WasmServerHost/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client/TELBlazor.Components.ShowCase.E2ETests.WasmServerHost.Client.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
<Configurations>Debug;Release;ci</Configurations>
1212

1313
</PropertyGroup>
14+
15+
<ItemGroup>
16+
<Content Remove="Properties\launchSettings.template.json" />
17+
</ItemGroup>
1418
<ItemGroup>
1519
<!-- Logging -->
1620
<PackageReference Include="Serilog" />

TELBlazor.Components.ShowCase.Shared/Layouts/ComponentLayouts/ComponentNavMenu.razor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<nav class="app-side-nav">
2-
<h2 class="app-side-nav__heading">TELBlazor Components</h2>
2+
<h2 class="app-side-nav__heading">Site Navigation</h2>
33
<ul class="nhsuk-list app-side-nav__list">
44
<li class="app-side-nav__item"><NavLink class="app-side-nav__link" href="./" Match="NavLinkMatch.All">Home</NavLink></li>
5+
</ul>
6+
<h2 class="app-side-nav__heading">TELBlazor Components</h2>
7+
<ul class="nhsuk-list app-side-nav__list">
58
<li class="app-side-nav__item"><NavLink class="app-side-nav__link" href="TELButton">TELButton</NavLink></li>
69
</ul>
710
<h2 class="app-side-nav__heading">Test Components</h2>

0 commit comments

Comments
 (0)