Skip to content

Commit 7034d13

Browse files
committed
Added Blazor Block Editor samples
1 parent dac1472 commit 7034d13

File tree

270 files changed

+62394
-63
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+62394
-63
lines changed

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample.slnx

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Syncfusion.Blazor.BlockEditor" Version="32.1.19" />
12+
<PackageReference Include="Syncfusion.Blazor.Themes" Version="32.1.19" />
13+
</ItemGroup>
14+
15+
</Project>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<Solution>
2+
<Project Path="BlockEditor_ServerApp.csproj" />
3+
</Solution>

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/App.razor renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/App.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<ResourcePreloader />
99
<link rel="stylesheet" href="@Assets["lib/bootstrap/dist/css/bootstrap.min.css"]" />
1010
<link rel="stylesheet" href="@Assets["app.css"]" />
11-
<link rel="stylesheet" href="@Assets["BlockEditorWebAppSample.styles.css"]" />
12-
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
11+
<link rel="stylesheet" href="@Assets["BlockEditor_ServerApp.styles.css"]" />
1312
<ImportMap />
1413
<link rel="icon" type="image/png" href="favicon.png" />
14+
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
1515
<HeadOutlet />
1616
</head>
1717

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/Layout/MainLayout.razor renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/Layout/MainLayout.razor

File renamed without changes.

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/Layout/MainLayout.razor.css renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/Layout/MainLayout.razor.css

File renamed without changes.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<div class="top-row ps-3 navbar navbar-dark">
2+
<div class="container-fluid">
3+
<a class="navbar-brand" href="">BlockEditor_ServerApp</a>
4+
</div>
5+
</div>
6+
7+
<input type="checkbox" title="Navigation menu" class="navbar-toggler" />
8+
9+
<div class="nav-scrollable" onclick="document.querySelector('.navbar-toggler').click()">
10+
<nav class="nav flex-column">
11+
<div class="nav-item px-3">
12+
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
13+
<span class="bi bi-house-door-fill-nav-menu" aria-hidden="true"></span> Home
14+
</NavLink>
15+
</div>
16+
17+
<div class="nav-item px-3">
18+
<NavLink class="nav-link" href="counter">
19+
<span class="bi bi-plus-square-fill-nav-menu" aria-hidden="true"></span> Counter
20+
</NavLink>
21+
</div>
22+
23+
<div class="nav-item px-3">
24+
<NavLink class="nav-link" href="weather">
25+
<span class="bi bi-list-nested-nav-menu" aria-hidden="true"></span> Weather
26+
</NavLink>
27+
</div>
28+
</nav>
29+
</div>
30+

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/Layout/NavMenu.razor.css renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/Layout/NavMenu.razor.css

File renamed without changes.

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/Layout/ReconnectModal.razor renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/Layout/ReconnectModal.razor

File renamed without changes.

BlockEditor/.NET10/BlockEditorWebAppSample/BlockEditorWebAppSample/Components/Layout/ReconnectModal.razor.css renamed to BlockEditor/.NET10/BlockEditor_ServerApp/Components/Layout/ReconnectModal.razor.css

File renamed without changes.

0 commit comments

Comments
 (0)