forked from Blazor-Diagrams/Blazor.Diagrams
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge upstream/master into master (#35)
* Fix link hover stroke opacity * Add Radius example to Path Generators documentation * fix type of diagram * Adding check for target being a portModel * Fixing nodes not updating on change of the link target * fixing NRE of onLinkRemoved in landing showcase diagram * refactoring link target refreshing in landing showcase diagram * Demo-site: changing signature of onChange to reflect actual values * Add Route property to BaseLinkModel * Adding check for "ShouldDelete"-constraint to remove control * Adding unit tests * Fixing Blazor-Diagrams#369 by adding invariant culture conversion * Adding functionality for GroupModel Removal to RemoveControl * Update Versions and CHANGELOG * Add new workflow to push to nuget * Update push.yml * Update push.yml * upgrade to net8.0 * multitargetting and central package management * apply consistent formatting to .csproj and .props files * Update ReflectionUtils.cs Fix a NRE in the DemoSite's Options page. * Add width and height to foreignObject.diagram-link-label for Firefox * Update README.md * Update Versions and CHANGELOG * Change Java version for Sonar * Update main.yml * Update push.yml * Update push.yml * Update push.yml * remove package versions from project files * remove unused action * update strong name signer * try add reference to SvgPathProperties in Blazor.Diagrams.csproj * update bunit * delete push action --------- Co-authored-by: Lars Westermann <[email protected]> Co-authored-by: Haytam Zanid <[email protected]> Co-authored-by: Haytam Zanid <[email protected]> Co-authored-by: Suraj <[email protected]> Co-authored-by: Merlin Zöbl <[email protected]> Co-authored-by: Merlin Zöbl <[email protected]> Co-authored-by: sebastian-wachsmuth <[email protected]> Co-authored-by: Robert McLaws <[email protected]>
- Loading branch information
1 parent
faceea4
commit d15aa50
Showing
27 changed files
with
1,937 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<Project> | ||
<ItemGroup> | ||
<PackageVersion Include="SvgPathProperties" Version="1.1.2" /> | ||
<PackageVersion Include="System.Net.Http.Json" Version="8.0.0" /> | ||
<PackageVersion Include="GraphShape" Version="1.2.1" /> | ||
<PackageVersion Include="MatBlazor" Version="2.10.0" /> | ||
<PackageVersion Include="bunit" Version="1.28.9" /> | ||
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | ||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageVersion Include="xunit" Version="2.6.3" /> | ||
<PackageVersion Include="Moq" Version="[4.18.4]" /> | ||
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.5" /> | ||
<PackageVersion Include="coverlet.collector" Version="6.0.0" /> | ||
<PackageVersion Include="Brutal.Dev.StrongNameSigner" Version="3.5.0" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="6.0.25" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.25" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.25" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="7.0.14" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="7.0.14" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.14" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.14" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="[8, 9.0.0)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="[8, 9.0.0)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="[8,9.0.0)" /> | ||
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="[8,9.0.0)" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.8" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.8" PrivateAssets="all" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" PrivateAssets="all" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<_ContentIncludedByDefault Remove="wwwroot\css\bootstrap\bootstrap.min.css" /> | ||
<_ContentIncludedByDefault Remove="wwwroot\css\bootstrap\bootstrap.min.css.map" /> | ||
<_ContentIncludedByDefault Remove="wwwroot\sample-data\weather.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<_ContentIncludedByDefault Remove="wwwroot\css\bootstrap\bootstrap.min.css" /> | ||
<_ContentIncludedByDefault Remove="wwwroot\css\bootstrap\bootstrap.min.css.map" /> | ||
<_ContentIncludedByDefault Remove="wwwroot\sample-data\weather.json" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams.Algorithms\Blazor.Diagrams.Algorithms.csproj" /> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams.Core\Blazor.Diagrams.Core.csproj" /> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams\Blazor.Diagrams.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams.Algorithms\Blazor.Diagrams.Algorithms.csproj" /> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams.Core\Blazor.Diagrams.Core.csproj" /> | ||
<ProjectReference Include="..\..\src\Blazor.Diagrams\Blazor.Diagrams.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.