Prima implementazione pagina "Attività"
This commit is contained in:
@@ -15,6 +15,7 @@
|
||||
<link href="_content/Blazor.Bootstrap/blazor.bootstrap.css" rel="stylesheet" />
|
||||
|
||||
<link rel="stylesheet" href="_content/Fixiy.Shared/css/remixicon/remixicon.css" />
|
||||
<link rel="stylesheet" href="_content/MudBlazor/MudBlazor.min.css" />
|
||||
<link rel="stylesheet" href="_content/Fixiy.Shared/css/app.css" />
|
||||
<link rel="stylesheet" href="_content/Fixiy.Shared/css/default-theme.css" />
|
||||
<link rel="stylesheet" href="Fixiy.Web.styles.css" />
|
||||
@@ -26,6 +27,8 @@
|
||||
<Routes @rendermode="InteractiveServer" />
|
||||
|
||||
<script src="_framework/blazor.web.js"></script>
|
||||
<script src="_content/Fixiy.Shared/js/signaturePad.js"></script>
|
||||
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
|
||||
<script src="_content/Fixiy.Shared/js/bootstrap/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMnet107bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
||||
<!-- Add chart.js reference if chart components are used in your application. -->
|
||||
<!--<script src="_content/Fixiy.Shared/js/bootstrap/chart.umd.js" integrity="sha512-gQhCDsnnnUfaRzD8k1L5llCCV6O9HN09zClIzzeJ8OJ9MpGmIlCxm+pdCkqTwqJ4JcjbojFr79rl2F1mzcoLMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>-->
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="IntegryApiClient.Blazor" Version="2.2.4" />
|
||||
<PackageReference Include="MudBlazor" Version="9.5.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
using IntegryApiClient.Blazor;
|
||||
using Fixiy.Web.Components;
|
||||
using Fixiy.Shared.Interfaces;
|
||||
using Fixiy.Shared.Services;
|
||||
using Fixiy.Web.Services;
|
||||
using MudBlazor.Services;
|
||||
|
||||
const string appToken = "3e7e7147-1391-48e7-86bd-b70e7418d40d";
|
||||
|
||||
@@ -14,6 +16,8 @@ builder.Services.AddRazorComponents()
|
||||
builder.Services.UseIntegry(appToken: appToken, useLoginAzienda: true);
|
||||
|
||||
builder.Services.AddScoped<IFormFactor, FormFactor>();
|
||||
builder.Services.AddScoped<MockAttivitaService>();
|
||||
builder.Services.AddMudServices();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user