Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge upstream/master into master #35

Merged
merged 48 commits into from
May 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
3ae8639
Fix link hover stroke opacity
Dec 6, 2022
eb9f37c
Merge pull request #280 from pixix4/bugfix/link-hover-stroke-opacity
zHaytam Aug 25, 2023
4cfc10f
Add Radius example to Path Generators documentation
zHaytam Sep 30, 2023
1e6fb86
Merge branch 'develop' of https://github.com/Blazor-Diagrams/Blazor.D…
zHaytam Sep 30, 2023
832a030
fix type of diagram
suraj-desai-wtg Oct 16, 2023
2403206
Adding check for target being a portModel
K0369 Oct 16, 2023
93b154b
Fixing nodes not updating on change of the link target
K0369 Oct 16, 2023
ff0fd5a
fixing NRE of onLinkRemoved in landing showcase diagram
K0369 Oct 22, 2023
95a9734
refactoring link target refreshing in landing showcase diagram
K0369 Oct 22, 2023
f1032af
Demo-site: changing signature of onChange to reflect actual values
K0369 Oct 22, 2023
9836fa3
Add Route property to BaseLinkModel
zHaytam Oct 22, 2023
12ea521
Merge pull request #364 from K0369/bugfix/nre-on-demo-site
zHaytam Oct 23, 2023
c15bec5
Merge branch 'develop' of https://github.com/Blazor-Diagrams/Blazor.D…
zHaytam Oct 23, 2023
900d352
Merge branch 'develop' into pr/363
zHaytam Oct 23, 2023
4b6fe1d
Merge pull request #363 from Suraj0500/suraj/fix-null-reference-excep…
zHaytam Oct 23, 2023
6321a29
Adding check for "ShouldDelete"-constraint to remove control
K0369 Oct 23, 2023
58bcdb3
Adding unit tests
K0369 Oct 23, 2023
27422d0
Fixing #369 by adding invariant culture conversion
K0369 Oct 23, 2023
2209b52
Merge pull request #370 from K0369/#369-unit-test-failing-on-non-engl…
zHaytam Oct 26, 2023
e586245
Adding functionality for GroupModel Removal to RemoveControl
K0369 Oct 26, 2023
605028d
Merge pull request #371 from K0369/bugfix/#359-should-delete-constrai…
zHaytam Oct 27, 2023
434de93
Update Versions and CHANGELOG
zHaytam Oct 27, 2023
11798a1
Add new workflow to push to nuget
zHaytam Oct 27, 2023
9cb0e13
Merge pull request #372 from Blazor-Diagrams/develop
zHaytam Oct 27, 2023
0d35925
Update push.yml
zHaytam Oct 27, 2023
46d9800
Update push.yml
zHaytam Oct 27, 2023
3a4a953
upgrade to net8.0
sebastian-wachsmuth Dec 19, 2023
339896f
multitargetting and central package management
sebastian-wachsmuth Jan 2, 2024
dc25b01
apply consistent formatting to .csproj and .props files
sebastian-wachsmuth Jan 3, 2024
79aa9de
Update ReflectionUtils.cs
robertmclaws Jan 5, 2024
1d62ed9
Merge pull request #401 from robertmclaws/patch-1
zHaytam Feb 24, 2024
ccc79f9
Merge pull request #395 from SebastianWachsmuth/master
zHaytam Feb 24, 2024
4ab8733
Add width and height to foreignObject.diagram-link-label for Firefox
zHaytam Feb 24, 2024
b0a4a4f
Update README.md
zHaytam Feb 24, 2024
d79b01e
Update Versions and CHANGELOG
zHaytam Feb 24, 2024
88b0225
Change Java version for Sonar
zHaytam Feb 24, 2024
9ff34b4
Merge pull request #418 from Blazor-Diagrams/develop
zHaytam Feb 24, 2024
3ae367c
Update main.yml
zHaytam Feb 24, 2024
c9262ff
Update push.yml
zHaytam Feb 24, 2024
60ce15c
Update push.yml
zHaytam Feb 24, 2024
ac4eef3
Update push.yml
zHaytam Feb 24, 2024
6225745
Merge remote-tracking branch 'upstream/master' into heather/syncFork/…
Heathermcx May 21, 2024
c7b72a4
remove package versions from project files
Heathermcx May 21, 2024
2d9a693
remove unused action
Heathermcx May 21, 2024
fbcab42
update strong name signer
Heathermcx May 21, 2024
77010c9
try add reference to SvgPathProperties in Blazor.Diagrams.csproj
Heathermcx May 21, 2024
2ddd48f
update bunit
Heathermcx May 22, 2024
dbd008e
delete push action
Heathermcx May 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ private void OnLinkAdded(BaseLinkModel link)

private void OnLinKTargetChanged(BaseLinkModel link, Anchor? oldTarget, Anchor? newTarget)
{
if (oldTarget == null && newTarget != null) // First attach
if (link.IsAttached && newTarget is not null)
{
(newTarget.Model as PortModel)!.Parent.Refresh();
}