Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
@@ -0,0 +1,49 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.0</Version>
<Title>CodeBeam.MudBlazor.Extensions</Title>
<Authors>CodeBeam</Authors>
<Company>CodeBeam</Company>
<Description>CsvMapper Component for MudBlazor and CodeBeam.MudBlazor.Extensions</Description>
<Copyright>CodeBeam OpenSource MIT</Copyright>
<PackageIcon>Mud_Secondary.png</PackageIcon>
<PackageProjectUrl>https://mudextensions.codebeam.org/</PackageProjectUrl>
<RepositoryUrl>https://github.com/CodeBeamOrg/CodeBeam.MudBlazor.Extensions</RepositoryUrl>
<PackageTags>Blazor; MudBlazor; Component; Extension; Csv; Mapper;</PackageTags>
<RootNamespace>MudExtensions</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.2.6" />
<PackageReference Include="CsvHelper" Version="33.1.0" />
<PackageReference Include="MudBlazor" Version="8.0.0" />
</ItemGroup>


<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.*" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>

<ItemGroup>
<None Include="Mud_Secondary.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,5 @@ public class CsvMapperLocalizedStrings
public string? DragHere { get; set; } = "Drag Here";
public string? Import { get; set; } = "Import";
public string? DefineHeaders { get; set; } = "Please define your MudFieldHeaders, the expected columns in your code";


}
}
2 changes: 2 additions & 0 deletions CodeBeam.MudBlazor.Extensions.CsvMapper/_Imports.razor
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@using Microsoft.AspNetCore.Components.Web
@using MudBlazor
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions.CsvMapper\CodeBeam.MudBlazor.Extensions.CsvMapper.csproj" />
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions.Qr\CodeBeam.MudBlazor.Extensions.Qr.csproj" />
<ProjectReference Include="..\CodeBeam.MudBlazor.Extensions\CodeBeam.MudBlazor.Extensions.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
@namespace MudExtensions.Docs.Pages

<ExamplePage Component="typeof(MudBarcode)">
<MudAlert Severity="Severity.Info" Elevation="0" Class="mb-4">
<MudText>MudBarcode has external dependencies and is part of <MudLink Href="">CodeBeam.MudBlazor.Extensions.Qr</MudLink> NuGet package.</MudText>
</MudAlert>
<ExampleCard ComponentName="Barcode" ExampleName="BarcodeExampleIntro" Title="Intro & Tips" AliasName="intro" ShowCodeSection="false">
<BarcodeExampleIntro />
</ExampleCard>
Expand Down
Loading
Loading