Skip to content

Commit 98fcc39

Browse files
committed
footer component and v10 working - holiday save
1 parent 6d54e61 commit 98fcc39

31 files changed

+366
-787
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@use "../abstracts/all" as *;
2-
@import "../../node_modules/nhsuk-frontend/packages/nhsuk";
2+
@import "../../node_modules/nhsuk-frontend/dist/nhsuk/core/all";

LearningHub.Nhs.WebUI/Controllers/MyAccountController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
using Microsoft.Extensions.Configuration;
2525
using Microsoft.Extensions.Logging;
2626
using Microsoft.Extensions.Options;
27-
using NHSUKViewComponents.Web.ViewModels;
27+
using NHSUKFrontendRazor.ViewModels;
2828
using ChangePasswordViewModel = LearningHub.Nhs.WebUI.Models.UserProfile.ChangePasswordViewModel;
2929
using IConfiguration = Microsoft.Extensions.Configuration.IConfiguration;
3030

LearningHub.Nhs.WebUI/LearningHub.Nhs.WebUI.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<AssemblyVersion>1.0.0.0</AssemblyVersion>
66
<FileVersion>1.0.0.0</FileVersion>
77
<Version>1.0.0</Version>
@@ -130,7 +130,7 @@
130130
<PackageReference Include="Microsoft.Rest.ClientRuntime.Azure.Authentication" Version="2.4.1" />
131131
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.18" />
132132
<PackageReference Include="MK.IO" Version="1.5.0" />
133-
<PackageReference Include="NHSUKViewComponents.Web" Version="1.0.28" />
133+
<PackageReference Include="NHSUKFrontendRazor" Version="1.0.8" />
134134
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
135135
<PrivateAssets>all</PrivateAssets>
136136
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
@@ -155,6 +155,7 @@
155155

156156
<ItemGroup>
157157
<Folder Include="Views\Shared\Components\RadioList\" />
158+
<Folder Include="wwwroot\assets\images\" />
158159
<Folder Include="wwwroot\documents\" />
159160
<Folder Include="wwwroot\fonts\" />
160161
<Folder Include="wwwroot\content\sourcedBy\" />

LearningHub.Nhs.WebUI/Models/Account/AccountCreationListViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Linq;
66
using elfhHub.Nhs.Models.Common;
77
using LearningHub.Nhs.Models.Paging;
8-
using NHSUKViewComponents.Web.ViewModels;
8+
using NHSUKFrontendRazor.ViewModels;
99

1010
/// <summary>
1111
/// The AccountCreationListViewModel.

LearningHub.Nhs.WebUI/Models/Account/CountrySearchViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace LearningHub.Nhs.WebUI.Models.Account
22
{
33
using System.Collections.Generic;
4-
using NHSUKViewComponents.Web.ViewModels;
4+
using NHSUKFrontendRazor.ViewModels;
55

66
/// <summary>
77
/// The CountrySearchViewModel.

LearningHub.Nhs.WebUI/Models/Bookmark/MoveBookmarkViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.ComponentModel.DataAnnotations;
55
using System.Linq;
66
using LearningHub.Nhs.Models.Bookmark;
7-
using NHSUKViewComponents.Web.ViewModels;
7+
using NHSUKFrontendRazor.ViewModels;
88

99
/// <summary>
1010
/// MoveBookmarkViewModel.

LearningHub.Nhs.WebUI/Models/MyLearningUserActivitiesViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using LearningHub.Nhs.Models.Search;
1212
using LearningHub.Nhs.WebUI.Helpers;
1313
using LearningHub.Nhs.WebUI.Models.Learning;
14-
using NHSUKViewComponents.Web.ViewModels;
14+
using NHSUKFrontendRazor.ViewModels;
1515

1616
/// <summary>
1717
/// Defines the <see cref="MyLearningUserActivitiesViewModel" />.

LearningHub.Nhs.WebUI/Models/MyLearningUserCertificatesViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using LearningHub.Nhs.Models.MyLearning;
66
using LearningHub.Nhs.Models.Paging;
77
using LearningHub.Nhs.WebUI.Models.Learning;
8-
using NHSUKViewComponents.Web.ViewModels;
8+
using NHSUKFrontendRazor.ViewModels;
99

1010
/// <summary>
1111
/// Defines the <see cref="MyLearningUserCertificatesViewModel" />.

LearningHub.Nhs.WebUI/Models/MyLearningViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
using LearningHub.Nhs.Models.Search;
1111
using LearningHub.Nhs.WebUI.Helpers;
1212
using LearningHub.Nhs.WebUI.Models.Learning;
13-
using NHSUKViewComponents.Web.ViewModels;
13+
using NHSUKFrontendRazor.ViewModels;
1414

1515
/// <summary>
1616
/// Defines the <see cref="MyLearningViewModel" />.

LearningHub.Nhs.WebUI/Models/UserProfile/MyAccountLocationViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using System.ComponentModel;
55
using Microsoft.AspNetCore.Mvc.Rendering;
6-
using NHSUKViewComponents.Web.ViewModels;
6+
using NHSUKFrontendRazor.ViewModels;
77

88
/// <summary>
99
/// Defines the <see cref="MyAccountLocationViewModel" />.

0 commit comments

Comments
 (0)