Compare commits
No commits in common. "6725edb1aef6500346ac24e2af2f3ab4e540f4a5" and "b097dd54e6819875daeef8baad0a657401c4c407" have entirely different histories.
6725edb1ae
...
b097dd54e6
@ -17,10 +17,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{D1988217
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Common.Types.Tests", "tests\Connected.Common.Types.Tests\Connected.Common.Types.Tests.csproj", "{B1C41076-5120-47DA-AEE7-D90E0EB7C038}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependencies", "Dependencies", "{D27CBC04-496C-4112-A2AF-786715AFEDE5}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Connected.Components", "dependencies\Connected.Components\src\Connected.Components\Connected.Components.csproj", "{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -51,17 +47,12 @@ Global
|
||||
{B1C41076-5120-47DA-AEE7-D90E0EB7C038}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{B1C41076-5120-47DA-AEE7-D90E0EB7C038}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{B1C41076-5120-47DA-AEE7-D90E0EB7C038}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{B1C41076-5120-47DA-AEE7-D90E0EB7C038} = {D1988217-0AF1-4A13-94AA-FF55337383D0}
|
||||
{17EBBBC2-B4AF-4CE4-8F76-73C6E088B3E1} = {D27CBC04-496C-4112-A2AF-786715AFEDE5}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {4C661325-1729-4560-89F9-E2B51B111B72}
|
||||
|
2
dependencies/Connected.Components
vendored
2
dependencies/Connected.Components
vendored
@ -1 +1 @@
|
||||
Subproject commit 38d5bd01499f182bf5612a032d61c6de16619eb6
|
||||
Subproject commit 323c66fecd302e569171172b82ab52f8530bf472
|
@ -26,6 +26,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Remove="C:\Users\koma.TOMPIT\.nuget\packages\connected.components\1.0.2-prerelease.gd7fe9a8908\contentFiles\any\net7.0\version.json" />
|
||||
<Content Remove="version.json" />
|
||||
</ItemGroup>
|
||||
|
||||
@ -36,6 +37,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.*-*" />
|
||||
<PackageReference Include="Connected.Components" Version="1.0.*-*" />
|
||||
<PackageReference Include="Connected.Client" Version="1.0.*-*" />
|
||||
<PackageReference Include="Connected.UI" Version="1.0.*-*" />
|
||||
<PackageReference Include="Connected" Version="1.0.*-*" />
|
||||
@ -55,10 +57,6 @@
|
||||
<None Include="version.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\dependencies\Connected.Components\src\Connected.Components\Connected.Components.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CopyPackages" AfterTargets="Pack">
|
||||
<Copy SourceFiles="$(OutputPath)..\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET'))" />
|
||||
<Copy SourceFiles="$(OutputPath)..\$(PackageId).$(PackageVersion).snupkg" DestinationFolder="$([System.Environment]::GetEnvironmentVariable('LOCAL_NUGET'))" />
|
||||
|
@ -2,16 +2,23 @@
|
||||
|
||||
@inherits UIComposition
|
||||
|
||||
<div>
|
||||
<h3 class="important">TaxRateAdd</h3>
|
||||
|
||||
<EditForm Model="@DataSource" OnValidSubmit="@OnInsert">
|
||||
<DataAnnotationsValidator />
|
||||
<ValidationSummary />
|
||||
|
||||
<div>
|
||||
<label for="name">Name</label>
|
||||
<InputText id="name" @bind-Value="DataSource.Name" />
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label for="rate">Rate</label>
|
||||
<InputNumber id="rate" @bind-Value="DataSource.Rate" />
|
||||
</div>
|
||||
|
||||
<Button @onclick="OnInsert">Submit</Button>
|
||||
<Button @onclick="OnCancel">Cancel</Button>
|
||||
<button type="submit">Submit</button>
|
||||
<button @onclick="OnCancel">Cancel</button>
|
||||
|
||||
</div>
|
||||
</EditForm>
|
@ -1,5 +1,6 @@
|
||||
@using System.Net.Http
|
||||
@using Microsoft.AspNetCore.Authorization
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.JSInterop
|
Loading…
x
Reference in New Issue
Block a user